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
* Pin keras to latest version 2.2.0
* Keras unpinned and set to range
* Conv Layers File Cleaning
* Bug Fix not saving activation fx in layers: BatchNorm and ElementWiseLambdaLayer
* 1.8.6rc4 released
* String Formating Fixed
@@ -178,6 +179,7 @@ To release a new version, please update the changelog as followed:
178
179
- CircleCI added to build and upload Docker Containers for each PR merged and tag release (by @DEKHTIARJonathan in #648)
179
180
- Decorator:
180
181
-`tl.decorators` API created including `deprecated_alias` and `private_method` (by @DEKHTIARJonathan in #660)
182
+
-`tl.decorators` API enriched with `protected_method` (by @DEKHTIARJonathan in #675)
181
183
- Docker:
182
184
- Containers for each release and for each PR merged on master built (by @DEKHTIARJonathan in #648)
183
185
- Containers built in the following configurations (by @DEKHTIARJonathan in #648):
@@ -186,11 +188,13 @@ To release a new version, please update the changelog as followed:
186
188
- py3 + cpu
187
189
- py3 + gpu
188
190
- Documentation:
191
+
- Clean README (by @luomai in #677)
189
192
- Release semantic version added on index page (by @DEKHTIARJonathan in #633)
190
193
- Optimizers page added (by @DEKHTIARJonathan in #636)
191
194
-`AMSGrad` added on Optimizers page added (by @DEKHTIARJonathan in #636)
192
195
- Layer:
193
196
- ElementwiseLambdaLayer added to use custom function to connect multiple layer inputs (by @One-sixth in #579)
197
+
- AtrousDeConv2dLayer added (by @2wins in #662)
194
198
- Optimizer:
195
199
- AMSGrad Optimizer added based on `On the Convergence of Adam and Beyond (ICLR 2018)` (by @DEKHTIARJonathan in #636)
196
200
- Setup:
@@ -223,33 +227,41 @@ To release a new version, please update the changelog as followed:
223
227
- All the tests are now using a DEBUG level verbosity when run individualy (by @DEKHTIARJonathan in #660)
224
228
-`tf.identity` as activation is **ignored**, thus reducing the size of the graph by removing useless operation (by @DEKHTIARJonathan in #667)
225
229
- argument dictionaries are now checked and saved within the `Layer` Base Class (by @DEKHTIARJonathan in #667)
226
-
-`unstack_layer` function transformed into Class `UnStackLayer` (by @DEKHTIARJonathan in #683)
230
+
-`Layer` Base Class now presenting methods to update faultlessly `all_layers`, `all_params`, and `all_drop` (by @DEKHTIARJonathan in #675)
231
+
- Input Layers have been removed from `tl.layers.core` and added to `tl.layers.inputs` (by @DEKHTIARJonathan in #675)
232
+
- Input Layers are now considered as true layers in the graph (they represent a placeholder), unittests have been updated (by @DEKHTIARJonathan in #675)
233
+
- Layer API is simplified, with automatic feeding `prev_layer` into `self.inputs` (by @DEKHTIARJonathan in #675)
227
234
228
235
### Deprecated
229
236
-`tl.layers.TimeDistributedLayer` argurment `args` is deprecated in favor of `layer_args` (by @DEKHTIARJonathan in #667)
230
237
231
238
### Removed
232
239
-`assert()` calls remove and replaced by `raise AssertionError()` (by @DEKHTIARJonathan in #667)
233
240
-`tl.identity` is removed, not used anymore and deprecated for a long time (by @DEKHTIARJonathan in #667)
241
+
- All Code specific to `TF.__version__ < "1.6"` have been removed (by @DEKHTIARJonathan in #675)
234
242
235
243
### Fixed
236
244
- Issue #498 - Deprecation Warning Fix in `tl.layers.RNNLayer` with `inspect` (by @DEKHTIARJonathan in #574)
237
245
- Issue #498 - Deprecation Warning Fix in `tl.files` with truth value of an empty array is ambiguous (by @DEKHTIARJonathan in #575)
238
246
- Issue #565 related to `tl.utils.predict` fixed - `np.hstack` problem in which the results for multiple batches are stacked along `axis=1` (by @2wins in #566)
239
247
- Issue #572 with `tl.layers.DeformableConv2d` fixed (by @DEKHTIARJonathan in #573)
248
+
- Issue #664 with `tl.layers.ConvLSTMLayer` fixed (by @dengyueyun666 in #676)
240
249
- Typo of the document of ElementwiseLambdaLayer (by @zsdonghao in #588)
241
250
- Error in `tl.layers.TernaryConv2d` fixed - self.inputs not defined (by @DEKHTIARJonathan in #658)
242
251
- Deprecation warning fixed in `tl.layers.binary._compute_threshold()` (by @DEKHTIARJonathan in #658)
243
252
- All references to `tf.logging` replaced by `tl.logging` (by @DEKHTIARJonathan in #661)
244
253
- Duplicated code removed when bias was used (by @DEKHTIARJonathan in #667)
254
+
-`tensorlayer.third_party.roi_pooling.roi_pooling.roi_pooling_ops` is now lazy loaded to prevent systematic error raised (by @DEKHTIARJonathan in #675)
245
255
- Tutorial:
246
256
-`tutorial_word2vec_basic.py` saving issue #476 fixed (by @DEKHTIARJonathan in #635)
247
257
- All tutorials tested and errors have been fixed (by @DEKHTIARJonathan in #635)
258
+
### Security
248
259
249
260
### Dependencies Update
250
261
- Update pytest from 3.5.1 to 3.6.0 (by @DEKHTIARJonathan and @pyup-bot in #647)
251
262
- Update progressbar2 from 3.37.1 to 3.38.0 (by @DEKHTIARJonathan and @pyup-bot in #651)
252
263
- Update scikit-image from 0.13.1 to 0.14.0 (by @DEKHTIARJonathan and @pyup-bot in #656)
264
+
- Update keras from 2.1.6 to 2.2.0 (by @DEKHTIARJonathan and @pyup-bot in #684)
0 commit comments