You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -239,10 +239,14 @@ To release a new version, please update the changelog as followed:
239
239
- Input Layers have been removed from `tl.layers.core` and added to `tl.layers.inputs` (by @DEKHTIARJonathan in #675)
240
240
- Input Layers are now considered as true layers in the graph (they represent a placeholder), unittests have been updated (by @DEKHTIARJonathan in #675)
241
241
- Layer API is simplified, with automatic feeding `prev_layer` into `self.inputs` (by @DEKHTIARJonathan in #675)
242
+
- Convolution Layers have been refactored under the folder `tensorlayer/layers/convolution` (by @DEKHTIARJonathan in #692)
243
+
- Dense Layers have been refactored under the folder `tensorlayer/layers/dense` (by @DEKHTIARJonathan in #692)
244
+
- Numerous Layer utility functions have been refactored in the file `tensorlayer/layers/utils.py` (by @DEKHTIARJonathan in #692)
242
245
243
246
### Deprecated
244
247
-`tl.layers.TimeDistributedLayer` argurment `args` is deprecated in favor of `layer_args` (by @DEKHTIARJonathan in #667)
245
-
-`tl.act.leaky_relu` have been deprecated in favor of `tf.nn.leaky_relu` (by @DEKHTIARJonathan in #686)
248
+
-`tl.act.leaky_relu` has been deprecated in favor of `tf.nn.leaky_relu` (by @DEKHTIARJonathan in #686)
249
+
-`tl.layers.initialize_global_variables` has been deprecated in favor of `tf.global_variables_initializer` (by @DEKHTIARJonathan in #692)
246
250
247
251
### Removed
248
252
-`assert()` calls remove and replaced by `raise AssertionError()` (by @DEKHTIARJonathan in #667)
logging.error('We couldn\'t find the directory "{}"'.format(ILSVRC_DIR))
412
-
logging.error('You need to modify the variable BASE_DIR with the path where the dataset is.')
413
-
logging.error(
414
-
'The dataset can be downloaded from http://www.image-net.org/ or from the Kaggle competition: https://www.kaggle.com/c/imagenet-object-localization-challenge/data'
411
+
raiseFileNotFoundError(
412
+
'We cannot find the directory "{}"\n'
413
+
'You need to modify the variable BASE_DIR with the path where the dataset is.\n'
414
+
'The dataset can be downloaded from http://www.image-net.org/ or from the Kaggle competition:\n'
0 commit comments