This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sonnet as snt | |
| import tensorflow as tf | |
| class SubmoduleA(snt.AbstractModule): | |
| def __init__(self, name='submodule_a'): | |
| super().__init__(name=name) | |
| def _build(self): | |
| return tf.Variable(tf.constant(1.0)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import sonnet as snt | |
| import tensorflow as tf | |
| LOG_DIR = '/tmp/' | |
| class MainModule(snt.AbstractModule): | |
| def __init__(self, in_build): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {0: 'tench, Tinca tinca', | |
| 1: 'goldfish, Carassius auratus', | |
| 2: 'great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias', | |
| 3: 'tiger shark, Galeocerdo cuvieri', | |
| 4: 'hammerhead, hammerhead shark', | |
| 5: 'electric ray, crampfish, numbfish, torpedo', | |
| 6: 'stingray', | |
| 7: 'cock', | |
| 8: 'hen', | |
| 9: 'ostrich, Struthio camelus', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ["tench, Tinca tinca", | |
| "goldfish, Carassius auratus", | |
| "great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias", | |
| "tiger shark, Galeocerdo cuvieri", | |
| "hammerhead, hammerhead shark", | |
| "electric ray, crampfish, numbfish, torpedo", | |
| "stingray", | |
| "cock", | |
| "hen", | |
| "ostrich, Struthio camelus", |
OlderNewer