@@ -71,20 +71,21 @@ To release a new version, please update the changelog as followed:
7171### Added
7272- API:
7373 - ` tl.alphas ` and ` tl.alphas_like ` added following the tf.ones/zeros and tf.zeros_like/ones_like (by @DEKHTIARJonathan in #580 )
74+ - ` tl.lazy_imports.LazyImport ` to import heavy libraries only when necessary (by @DEKHTIARJonathan in #667 )
7475- CI Tool:
7576 - [ Stale Probot] ( https://github.com/probot/stale ) added to clean stale issues (by @DEKHTIARJonathan in #573 )
7677 - [ Changelog Probot] ( https://github.com/mikz/probot-changelog ) Configuration added (by @DEKHTIARJonathan in #637 )
7778 - Travis Builds now handling a matrix of TF Version from TF==1.6.0 to TF==1.8.0 (by @DEKHTIARJonathan in #644 )
7879 - CircleCI added to build and upload Docker Containers for each PR merged and tag release (by @DEKHTIARJonathan in #648 )
7980- Decorator:
8081 - ` tl.decorators ` API created including ` deprecated_alias ` and ` private_method ` (by @DEKHTIARJonathan in #660 )
81- - Docker:
82+ - Docker:
8283 - Containers for each release and for each PR merged on master built (by @DEKHTIARJonathan in #648 )
83- - Containers built in the following configurations (by @DEKHTIARJonathan in #648 ):
84+ - Containers built in the following configurations (by @DEKHTIARJonathan in #648 ):
8485 - py2 + cpu
8586 - py2 + gpu
8687 - py3 + cpu
87- - py3 + gpu
88+ - py3 + gpu
8889- Documentation:
8990 - Release semantic version added on index page (by @DEKHTIARJonathan in #633 )
9091 - Optimizers page added (by @DEKHTIARJonathan in #636 )
@@ -121,10 +122,15 @@ To release a new version, please update the changelog as followed:
121122- Ternary Convolution Layer added in unittest (by @DEKHTIARJonathan in #658 )
122123- Convolution Layers unittests have been cleaned & refactored (by @DEKHTIARJonathan in #658 )
123124- All the tests are now using a DEBUG level verbosity when run individualy (by @DEKHTIARJonathan in #660 )
125+ - ` tf.identity ` as activation is ** ignored** , thus reducing the size of the graph by removing useless operation (by @DEKHTIARJonathan in #667 )
126+ - argument dictionaries are now checked and saved within the ` Layer ` Base Class (by @DEKHTIARJonathan in #667 )
124127
125128### Deprecated
129+ - ` tl.layers.TimeDistributedLayer ` argurment ` args ` is deprecated in favor of ` layer_args ` (by @DEKHTIARJonathan in #667 )
126130
127131### Removed
132+ - ` assert() ` calls remove and replaced by ` raise AssertionError() ` (by @DEKHTIARJonathan in #667 )
133+ - ` tl.identity ` is removed, not used anymore and deprecated for a long time (by @DEKHTIARJonathan in #667 )
128134
129135### Fixed
130136- Issue #498 - Deprecation Warning Fix in ` tl.layers.RNNLayer ` with ` inspect ` (by @DEKHTIARJonathan in #574 )
@@ -135,10 +141,11 @@ To release a new version, please update the changelog as followed:
135141- Error in ` tl.layers.TernaryConv2d ` fixed - self.inputs not defined (by @DEKHTIARJonathan in #658 )
136142- Deprecation warning fixed in ` tl.layers.binary._compute_threshold() ` (by @DEKHTIARJonathan in #658 )
137143- All references to ` tf.logging ` replaced by ` tl.logging ` (by @DEKHTIARJonathan in #661 )
144+ - Duplicated code removed when bias was used (by @DEKHTIARJonathan in #667 )
138145- Tutorial:
139146 - ` tutorial_word2vec_basic.py ` saving issue #476 fixed (by @DEKHTIARJonathan in #635 )
140147 - All tutorials tested and errors have been fixed (by @DEKHTIARJonathan in #635 )
141-
148+
142149### Security
143150
144151### Dependencies Update
@@ -149,25 +156,26 @@ To release a new version, please update the changelog as followed:
149156### Contributors
150157@lgarithm @DEKHTIARJonathan @2wins @One-sixth @zsdonghao @luomai
151158
152- ## [ 1.8.6] - 2018-05-30
159+ ## [ 1.8.6] - 2018-06-02
153160
154161### Added
155162- API:
156163 - ` tl.alphas ` and ` tl.alphas_like ` added following the tf.ones/zeros and tf.zeros_like/ones_like (by @DEKHTIARJonathan in #580 )
164+ - ` tl.lazy_imports.LazyImport ` to import heavy libraries only when necessary (by @DEKHTIARJonathan in #667 )
157165- CI Tool:
158166 - [ Stale Probot] ( https://github.com/probot/stale ) added to clean stale issues (by @DEKHTIARJonathan in #573 )
159167 - [ Changelog Probot] ( https://github.com/mikz/probot-changelog ) Configuration added (by @DEKHTIARJonathan in #637 )
160168 - Travis Builds now handling a matrix of TF Version from TF==1.6.0 to TF==1.8.0 (by @DEKHTIARJonathan in #644 )
161169 - CircleCI added to build and upload Docker Containers for each PR merged and tag release (by @DEKHTIARJonathan in #648 )
162170- Decorator:
163171 - ` tl.decorators ` API created including ` deprecated_alias ` and ` private_method ` (by @DEKHTIARJonathan in #660 )
164- - Docker:
172+ - Docker:
165173 - Containers for each release and for each PR merged on master built (by @DEKHTIARJonathan in #648 )
166- - Containers built in the following configurations (by @DEKHTIARJonathan in #648 ):
174+ - Containers built in the following configurations (by @DEKHTIARJonathan in #648 ):
167175 - py2 + cpu
168176 - py2 + gpu
169177 - py3 + cpu
170- - py3 + gpu
178+ - py3 + gpu
171179- Documentation:
172180 - Release semantic version added on index page (by @DEKHTIARJonathan in #633 )
173181 - Optimizers page added (by @DEKHTIARJonathan in #636 )
@@ -204,6 +212,15 @@ To release a new version, please update the changelog as followed:
204212- Ternary Convolution Layer added in unittest (by @DEKHTIARJonathan in #658 )
205213- Convolution Layers unittests have been cleaned & refactored (by @DEKHTIARJonathan in #658 )
206214- All the tests are now using a DEBUG level verbosity when run individualy (by @DEKHTIARJonathan in #660 )
215+ - ` tf.identity ` as activation is ** ignored** , thus reducing the size of the graph by removing useless operation (by @DEKHTIARJonathan in #667 )
216+ - argument dictionaries are now checked and saved within the ` Layer ` Base Class (by @DEKHTIARJonathan in #667 )
217+
218+ ### Deprecated
219+ - ` tl.layers.TimeDistributedLayer ` argurment ` args ` is deprecated in favor of ` layer_args ` (by @DEKHTIARJonathan in #667 )
220+
221+ ### Removed
222+ - ` assert() ` calls remove and replaced by ` raise AssertionError() ` (by @DEKHTIARJonathan in #667 )
223+ - ` tl.identity ` is removed, not used anymore and deprecated for a long time (by @DEKHTIARJonathan in #667 )
207224
208225### Fixed
209226- Issue #498 - Deprecation Warning Fix in ` tl.layers.RNNLayer ` with ` inspect ` (by @DEKHTIARJonathan in #574 )
@@ -214,6 +231,7 @@ To release a new version, please update the changelog as followed:
214231- Error in ` tl.layers.TernaryConv2d ` fixed - self.inputs not defined (by @DEKHTIARJonathan in #658 )
215232- Deprecation warning fixed in ` tl.layers.binary._compute_threshold() ` (by @DEKHTIARJonathan in #658 )
216233- All references to ` tf.logging ` replaced by ` tl.logging ` (by @DEKHTIARJonathan in #661 )
234+ - Duplicated code removed when bias was used (by @DEKHTIARJonathan in #667 )
217235- Tutorial:
218236 - ` tutorial_word2vec_basic.py ` saving issue #476 fixed (by @DEKHTIARJonathan in #635 )
219237 - All tutorials tested and errors have been fixed (by @DEKHTIARJonathan in #635 )
@@ -265,6 +283,6 @@ To release a new version, please update the changelog as followed:
265283### Contributors
266284@zsdonghao @luomai @DEKHTIARJonathan
267285
268- [ Unreleased ] : https://github.com/tensorlayer/tensorlayer/compare/1.8.6rc0 ...master
269- [ 1.8.6 ] : https://github.com/tensorlayer/tensorlayer/compare/1.8.6rc0 ...1.8.5
286+ [ Unreleased ] : https://github.com/tensorlayer/tensorlayer/compare/1.8.6rc1 ...master
287+ [ 1.8.6 ] : https://github.com/tensorlayer/tensorlayer/compare/1.8.6rc1 ...1.8.5
270288[ 1.8.5 ] : https://github.com/tensorlayer/tensorlayer/compare/1.8.4...1.8.5
0 commit comments