@@ -71,20 +71,21 @@ To release a new version, please update the changelog as followed:
71
71
### Added
72
72
- API:
73
73
- ` 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 )
74
75
- CI Tool:
75
76
- [ Stale Probot] ( https://github.com/probot/stale ) added to clean stale issues (by @DEKHTIARJonathan in #573 )
76
77
- [ Changelog Probot] ( https://github.com/mikz/probot-changelog ) Configuration added (by @DEKHTIARJonathan in #637 )
77
78
- Travis Builds now handling a matrix of TF Version from TF==1.6.0 to TF==1.8.0 (by @DEKHTIARJonathan in #644 )
78
79
- CircleCI added to build and upload Docker Containers for each PR merged and tag release (by @DEKHTIARJonathan in #648 )
79
80
- Decorator:
80
81
- ` tl.decorators ` API created including ` deprecated_alias ` and ` private_method ` (by @DEKHTIARJonathan in #660 )
81
- - Docker:
82
+ - Docker:
82
83
- 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 ):
84
85
- py2 + cpu
85
86
- py2 + gpu
86
87
- py3 + cpu
87
- - py3 + gpu
88
+ - py3 + gpu
88
89
- Documentation:
89
90
- Release semantic version added on index page (by @DEKHTIARJonathan in #633 )
90
91
- Optimizers page added (by @DEKHTIARJonathan in #636 )
@@ -121,10 +122,15 @@ To release a new version, please update the changelog as followed:
121
122
- Ternary Convolution Layer added in unittest (by @DEKHTIARJonathan in #658 )
122
123
- Convolution Layers unittests have been cleaned & refactored (by @DEKHTIARJonathan in #658 )
123
124
- 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 )
124
127
125
128
### Deprecated
129
+ - ` tl.layers.TimeDistributedLayer ` argurment ` args ` is deprecated in favor of ` layer_args ` (by @DEKHTIARJonathan in #667 )
126
130
127
131
### 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 )
128
134
129
135
### Fixed
130
136
- 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:
135
141
- Error in ` tl.layers.TernaryConv2d ` fixed - self.inputs not defined (by @DEKHTIARJonathan in #658 )
136
142
- Deprecation warning fixed in ` tl.layers.binary._compute_threshold() ` (by @DEKHTIARJonathan in #658 )
137
143
- 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 )
138
145
- Tutorial:
139
146
- ` tutorial_word2vec_basic.py ` saving issue #476 fixed (by @DEKHTIARJonathan in #635 )
140
147
- All tutorials tested and errors have been fixed (by @DEKHTIARJonathan in #635 )
141
-
148
+
142
149
### Security
143
150
144
151
### Dependencies Update
@@ -149,25 +156,26 @@ To release a new version, please update the changelog as followed:
149
156
### Contributors
150
157
@lgarithm @DEKHTIARJonathan @2wins @One-sixth @zsdonghao @luomai
151
158
152
- ## [ 1.8.6] - 2018-05-30
159
+ ## [ 1.8.6] - 2018-06-02
153
160
154
161
### Added
155
162
- API:
156
163
- ` 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 )
157
165
- CI Tool:
158
166
- [ Stale Probot] ( https://github.com/probot/stale ) added to clean stale issues (by @DEKHTIARJonathan in #573 )
159
167
- [ Changelog Probot] ( https://github.com/mikz/probot-changelog ) Configuration added (by @DEKHTIARJonathan in #637 )
160
168
- Travis Builds now handling a matrix of TF Version from TF==1.6.0 to TF==1.8.0 (by @DEKHTIARJonathan in #644 )
161
169
- CircleCI added to build and upload Docker Containers for each PR merged and tag release (by @DEKHTIARJonathan in #648 )
162
170
- Decorator:
163
171
- ` tl.decorators ` API created including ` deprecated_alias ` and ` private_method ` (by @DEKHTIARJonathan in #660 )
164
- - Docker:
172
+ - Docker:
165
173
- 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 ):
167
175
- py2 + cpu
168
176
- py2 + gpu
169
177
- py3 + cpu
170
- - py3 + gpu
178
+ - py3 + gpu
171
179
- Documentation:
172
180
- Release semantic version added on index page (by @DEKHTIARJonathan in #633 )
173
181
- Optimizers page added (by @DEKHTIARJonathan in #636 )
@@ -204,6 +212,15 @@ To release a new version, please update the changelog as followed:
204
212
- Ternary Convolution Layer added in unittest (by @DEKHTIARJonathan in #658 )
205
213
- Convolution Layers unittests have been cleaned & refactored (by @DEKHTIARJonathan in #658 )
206
214
- 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 )
207
224
208
225
### Fixed
209
226
- 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:
214
231
- Error in ` tl.layers.TernaryConv2d ` fixed - self.inputs not defined (by @DEKHTIARJonathan in #658 )
215
232
- Deprecation warning fixed in ` tl.layers.binary._compute_threshold() ` (by @DEKHTIARJonathan in #658 )
216
233
- 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 )
217
235
- Tutorial:
218
236
- ` tutorial_word2vec_basic.py ` saving issue #476 fixed (by @DEKHTIARJonathan in #635 )
219
237
- 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:
265
283
### Contributors
266
284
@zsdonghao @luomai @DEKHTIARJonathan
267
285
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
270
288
[ 1.8.5 ] : https://github.com/tensorlayer/tensorlayer/compare/1.8.4...1.8.5
0 commit comments