blob: c0ca06e675f915d78a75905a2a8681518f2b2938 [file] [log] [blame] [view]
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -08001# Changes since last release
2
3## Breaking Changes to the API
4
Eugene Brevdo21e1cc72016-08-11 21:45:39 -08005* LSTMCell, BasicLSTMCell, and MultiRNNCell constructors now default to
6 `state_is_tuple=True`. For a quick fix while transitioning to the new
7 default, simply pass the argument `state_is_tuple=False`.
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -08008* DeviceFactory's AddDevices and CreateDevices functions now return
9 a Status instead of void.
A. Unique TensorFlower84cefad2016-08-12 07:06:13 -080010* Int32 elements of list(type) arguments are no longer placed in host memory by
11 default. If necessary, a list(type) argument to a kernel can be placed in host
12 memory using a HostMemory annotation.
Wei Ho829a2362016-08-24 15:26:40 -080013* uniform_unit_scaling_initializer() no longer takes a full_shape arg, instead
14 relying on the partition info passed to the initializer function when it's
15 called.
A. Unique TensorFlower672eebd2016-08-25 07:19:38 -080016* The NodeDef protocol message is now defined in its own file node_def.proto
17 instead of graph.proto.
Vijay Vasudevan612bae72016-09-09 11:03:09 -080018* ops.NoGradient was renamed ops.NotDifferentiable. ops.NoGradient will
19 be removed soon.
Vijay Vasudevan269bfee2016-09-21 21:41:19 -080020* dot.h / DotGraph was removed (it was an early analysis tool prior
21 to TensorBoard, no longer that useful). It remains in history
22 should someone find the code useful.
Dan Manée5bcf542016-05-16 13:39:34 -080023
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -080024# Release 0.10.0
A. Unique TensorFlower533d8912016-06-30 12:10:50 -080025
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -080026## Major Features and Improvements
27
28* Added support for C++ shape inference
29* Added graph-construction C API
30* Major revision to the graph-construction C++ API
31* Support makefile build for iOS
32* Added Mac GPU support
33* Full version of TF-Slim available as `tf.contrib.slim`
34* Added k-Means clustering and WALS matrix factorization
35
36## Big Fixes and Other Changes
37
38* Allow gradient computation for scalar values.
39* Performance improvements for gRPC
40* Improved support for fp16
41* New high-level ops in tf.contrib.{layers,metrics}
42* New features for TensorBoard, such as shape display, exponential smoothing
43* Faster and more stable Google Cloud Storage (GCS) filesystem support
44* Support for zlib compression and decompression for TFRecordReader and TFRecordWriter
45* Support for reading (animated) GIFs
46* Improved support for SparseTensor
47* Added support for more probability distributions (Dirichlet, Beta, Bernoulli, etc.)
48* Added Python interfaces to reset resource containers.
49* Many bugfixes and performance improvements
50* Many documentation fixes
51
52## Thanks to our Contributors
53
54This release contains contributions from many people at Google, as well as:
55
56Alex Rothberg, Andrew Royer, Austin Marshall, @BlackCoal, Bob Adolf, Brian Diesel, Charles-Emmanuel Dias, @chemelnucfin, Chris Lesniewski, Daeyun Shin, Daniel Rodriguez, Danijar Hafner, Darcy Liu, Kristinn R. Thórisson, Daniel Castro, Dmitry Savintsev, Kashif Rasul, Dylan Paiton, Emmanuel T. Odeke, Ernest Grzybowski, Gavin Sherry, Gideon Dresdner, Gregory King, Harold Cooper, @heinzbeinz, Henry Saputra, Huarong Huo, Huazuo Gao, Igor Babuschkin, Igor Macedo Quintanilha, Ivan Ukhov, James Fysh, Jan Wilken Dörrie, Jihun Choi, Johnny Lim, Jonathan Raiman, Justin Francis, @lilac, Li Yi, Marc Khoury, Marco Marchesi, Max Melnick, Micael Carvalho, @mikowals, Mostafa Gazar, Nico Galoppo, Nishant Agrawal, Petr Janda, Yuncheng Li, @raix852, Robert Rose, @Robin-des-Bois, Rohit Girdhar, Sam Abrahams, satok16, Sergey Kishchenko, Sharkd Tu, @shotat, Siddharth Agrawal, Simon Denel, @sono-bfio, SunYeop Lee, Thijs Vogels, @tobegit3hub, @Undo1, Wang Yang, Wenjian Huang, Yaroslav Bulatov, Yuan Tang, Yunfeng Wang, Ziming Dong
57
58We are also grateful to all who filed issues or helped resolve them, asked and
59answered questions, and were part of inspiring discussions.
Vijay Vasudevan490afa92016-06-21 09:18:06 -080060
61# Release 0.9.0
62
63## Major Features and Improvements
64
65* Python 3.5 support and binaries
66* Added iOS support
67* Added support for processing on GPUs on MacOS
68* Added makefile for better cross-platform build support (C API only)
69* fp16 support and improved complex128 support for many ops
70* Higher level functionality in contrib.{layers,losses,metrics,learn}
71* More features to Tensorboard
72* Improved support for string embedding and sparse features
73* The RNN api is finally "official" (see, e.g., `tf.nn.dynamic_rnn`,
74 `tf.nn.rnn`, and the classes in `tf.nn.rnn_cell`).
75* TensorBoard now has an Audio Dashboard, with associated audio summaries.
76
77## Big Fixes and Other Changes
78
79* Turned on CuDNN Autotune.
80* Added support for using third-party Python optimization algorithms (contrib.opt).
81* Google Cloud Storage filesystem support.
82* HDF5 support
83* Add support for 3d convolutions and pooling.
84* Update gRPC release to 0.14.
85* Eigen version upgrade.
86* Switch to eigen thread pool
87* `tf.nn.moments()` now accepts a `shift` argument. Shifting by a good estimate
88 of the mean improves numerical stability. Also changes the behavior of the
89 `shift` argument to `tf.nn.sufficient_statistics()`.
90* Performance improvements
91* Many bugfixes
92* Many documentation fixes
93* TensorBoard fixes: graphs with only one data point, Nan values,
94 reload button and auto-reload, tooltips in scalar charts, run
95 filtering, stable colors
96* Tensorboard graph visualizer now supports run metadata. Clicking on nodes
97 while viewing a stats for a particular run will show runtime statistics, such
98 as memory or compute usage. Unused nodes will be faded out.
99
100## Thanks to our Contributors
101
102This release contains contributions from many people at Google, as well as:
103
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800104Aaron Schumacher, Aidan Dang, Akihiko ITOH, Aki Sukegawa, Arbit Chen, Aziz Alto, Danijar Hafner, Erik Erwitt, Fabrizio Milo, Felix Maximilian Möller, Henry Saputra, Sung Kim, Igor Babuschkin, Jan Zikes, Jeremy Barnes, Jesper Steen Møller, Johannes Mayer, Justin Harris, Kashif Rasul, Kevin Robinson, Loo Rong Jie, Lucas Moura, Łukasz Bieniasz-Krzywiec, Mario Cho, Maxim Grechkin, Michael Heilman, Mostafa Rahmani, Mourad Mourafiq, @ninotoshi, Orion Reblitz-Richardson, Yuncheng Li, @raoqiyu, Robert DiPietro, Sam Abrahams, Sebastian Raschka, Siddharth Agrawal, @snakecharmer1024, Stephen Roller, Sung Kim, SunYeop Lee, Thijs Vogels, Till Hoffmann, Victor Melo, Ville Kallioniemi, Waleed Abdulla, Wenjian Huang, Yaroslav Bulatov, Yeison Rodriguez, Yuan Tang, Yuxin Wu, @zhongzyd, Ziming Dong, Zohar Jackson
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800105
106We are also grateful to all who filed issues or helped resolve them, asked and
107answered questions, and were part of inspiring discussions.
108
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800109# Release 0.8.0
110
111## Major Features and Improvements
112
113* Added a distributed runtime using GRPC
114* Move skflow to `contrib/learn`
115* Better linear optimizer in `contrib/linear_optimizer`
116* Random forest implementation in `contrib/tensor_forest`
117* CTC loss and decoders in `contrib/ctc`
118* Basic support for `half` data type
119* Better support for loading user ops (see examples in `contrib/`)
120* Allow use of (non-blocking) Eigen threadpool with `TENSORFLOW_USE_EIGEN_THREADPOOL` define
121* Add an extension mechanism for adding network file system support
122* TensorBoard displays metadata stats (running time, memory usage and device used) and tensor shapes
123
124## Big Fixes and Other Changes
125
126* Utility for inspecting checkpoints
127* Basic tracing and timeline support
128* Allow building against cuDNN 5 (not incl. RNN/LSTM support)
129* Added instructions and binaries for ProtoBuf library with fast serialization and without 64MB limit
130* Added special functions
Dan Mané54a71782016-09-09 16:07:46 -0800131* `bool`-strictness: Tensors have to be explicitly compared to `None`
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800132* Shape strictness: all fed values must have a shape that is compatible with the tensor they are replacing
133* Exposed `tf.while_loop` (deprecated `control_flow_ops.While`)
134* run() now takes RunOptions and RunMetadata, which enable timing stats
135* Fixed lots of potential overflow problems in op kernels
136* Various performance improvements, especially for RNNs and convolutions
137* Many bugfixes
138* Nightly builds, tutorial tests, many test improvements
139* New examples: transfer learning and deepdream ipython notebook
140* Added tutorials, many documentation fixes.
141
142## Thanks to our Contributors
143
144This release contains contributions from many people at Google, as well as:
145
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800146Abhinav Upadhyay, Aggelos Avgerinos, Alan Wu, Alexander G. de G. Matthews, Aleksandr Yahnev, @amchercashin, Andy Kitchen, Aurelien Geron, Awni Hannun, @BanditCat, Bas Veeling, Cameron Chen, @cg31, Cheng-Lung Sung, Christopher Bonnett, Dan Becker, Dan Van Boxel, Daniel Golden, Danijar Hafner, Danny Goodman, Dave Decker, David Dao, David Kretch, Dongjoon Hyun, Dustin Dorroh, @e-lin, Eurico Doirado, Erik Erwitt, Fabrizio Milo, @gaohuazuo, Iblis Lin, Igor Babuschkin, Isaac Hodes, Isaac Turner, Iván Vallés, J Yegerlehner, Jack Zhang, James Wexler, Jan Zikes, Jay Young, Jeff Hodges, @jmtatsch, Johnny Lim, Jonas Meinertz Hansen, Kanit Wongsuphasawat, Kashif Rasul, Ken Shirriff, Kenneth Mitchner, Kenta Yonekura, Konrad Magnusson, Konstantin Lopuhin, @lahwran, @lekaha, @liyongsea, Lucas Adams, @makseq, Mandeep Singh, @manipopopo, Mark Amery, Memo Akten, Michael Heilman, Michael Peteuil, Nathan Daly, Nicolas Fauchereau, @ninotoshi, Olav Nymoen, @panmari, @papelita1234, Pedro Lopes, Pranav Sailesh Mani, RJ Ryan, Rob Culliton, Robert DiPietro, @ronrest, Sam Abrahams, Sarath Shekkizhar, Scott Graham, Sebastian Raschka, Sung Kim, Surya Bhupatiraju, Syed Ahmed, Till Hoffmann, @timsl, @urimend, @vesnica, Vlad Frolov, Vlad Zagorodniy, Wei-Ting Kuo, Wenjian Huang, William Dmitri Breaden Madden, Wladimir Schmidt, Yuan Tang, Yuwen Yan, Yuxin Wu, Yuya Kusakabe, @zhongzyd, @znah.
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800147
148We are also grateful to all who filed issues or helped resolve them, asked and
149answered questions, and were part of inspiring discussions.
150
151
Eugene Brevdo56f1d642016-03-10 17:18:30 -0800152# Release 0.7.1
153
154## Bug Fixes and Other Changes
155
156* Added gfile.Open and gfile.Copy, used by input_data.py.
157* Fixed Saver bug when MakeDirs tried to create empty directory.
158* GPU Pip wheels are built with cuda 7.5 and cudnn-v4, making them
159 required for the binary releases. Lower versions of cuda/cudnn can
160 be supported by installing from sources and setting the options
161 during ./configure
162* Fix dataset encoding example for Python3 (@danijar)
163* Fix PIP installation by not packaging protobuf as part of wheel,
164 require protobuf 3.0.0b2.
165* Fix Mac pip installation of numpy by requiring pip >= 1.10.1.
166* Improvements and fixes to Docker image.
167
168
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800169# Release 0.7.0
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -0800170
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800171## Major Features and Improvements
172
173* Allow using any installed Cuda >= 7.0 and cuDNN >= R2, and add support
174 for cuDNN R4
175* Added a `contrib/` directory for unsupported or experimental features,
176 including higher level `layers` module
177* Added an easy way to add and dynamically load user-defined ops
178* Built out a good suite of tests, things should break less!
179* Added `MetaGraphDef` which makes it easier to save graphs with metadata
180* Added assignments for "Deep Learning with TensorFlow" udacity course
181
182
183## Bug Fixes and Other Changes
184
185* Added a versioning framework for `GraphDef`s to ensure compatibility
186* Enforced Python 3 compatibility
187* Internal changes now show up as sensibly separated commits
188* Open-sourced the doc generator
189* Un-fork Eigen
190* Simplified the `BUILD` files and cleaned up C++ headers
191* TensorFlow can now be used as a submodule in another bazel build
192* New ops (e.g., `*fft`, `*_matrix_solve`)
193* Support for more data types in many ops
194* Performance improvements
195* Various bugfixes
196* Documentation fixes and improvements
197
198
199## Breaking Changes to the API
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -0800200
201* `AdjustContrast` kernel deprecated, new kernel `AdjustContrastv2` takes and
202 outputs float only. `adjust_contrast` now takes all data types.
203* `adjust_brightness`'s `delta` argument is now always assumed to be in `[0,1]`
204 (as is the norm for images in floating point formats), independent of the
205 data type of the input image.
206* The image processing ops do not take `min` and `max` inputs any more, casting
207 safety is handled by `saturate_cast`, which makes sure over- and underflows
208 are handled before casting to data types with smaller ranges.
Geoffrey Irvingcbff45c2016-01-12 08:06:56 -0800209* For C++ API users: `IsLegacyScalar` and `IsLegacyVector` are now gone from
210 `TensorShapeUtils` since TensorFlow is scalar strict within Google (for
211 example, the shape argument to `tf.reshape` can't be a scalar anymore). The
212 open source release was already scalar strict, so outside Google `IsScalar`
213 and `IsVector` are exact replacements.
Josh Levenbergdb7478e2016-01-20 14:54:50 -0800214* The following files are being removed from `tensorflow/core/public/`:
215 * `env.h` -> `../platform/env.h`
216 * `status.h` -> `../lib/core/status.h`
217 * `tensor.h` -> `../framework/tensor.h`
218 * `tensor_shape.h` -> `../framework/tensor_shape.h`
219 * `partial_tensor_shape.h` -> `../framework/partial_tensor_shape.h`
220 * `tensorflow_server.h` deleted
Geoffrey Irving56437752016-01-25 09:43:13 -0800221* For C++ API users: `TensorShape::ShortDebugString` has been renamed to
222 `DebugString`, and the previous `DebugString` behavior is gone (it was
223 needlessly verbose and produced a confusing empty string for scalars).
Manjunath Kudlurc2722a12016-01-27 13:24:50 -0800224* `GraphOptions.skip_common_subexpression_elimination` has been removed. All
225 graph optimizer options are now specified via
226 `GraphOptions.OptimizerOptions`.
Geoffrey Irving18297122016-02-10 11:48:34 -0800227* `ASSERT_OK` / `EXPECT_OK` macros conflicted with external projects, so they
228 were renamed `TF_ASSERT_OK`, `TF_EXPECT_OK`. The existing macros are
229 currently maintained for short-term compatibility but will be removed.
Eugene Brevdofea55e12016-01-27 14:54:54 -0800230* The non-public `nn.rnn` and the various `nn.seq2seq` methods now return
231 just the final state instead of the list of all states.
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800232* `tf.scatter_update` now no longer guarantees that lexicographically largest
233 index be used for update when duplicate entries exist.
Geoffrey Irving3e33d442016-02-08 12:02:44 -0800234* `tf.image.random_crop(image, [height, width])` is now
235 `tf.random_crop(image, [height, width, depth])`, and `tf.random_crop` works
236 for any rank (not just 3-D images). The C++ `RandomCrop` op has been replaced
237 with pure Python.
Geoffrey Irving18297122016-02-10 11:48:34 -0800238* Renamed `tf.test.GetTempDir` and `tf.test.IsBuiltWithCuda` to
239 `tf.test.get_temp_dir` and `tf.test.is_built_with_cuda` for PEP-8
240 compatibility.
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800241* `parse_example`'s interface has changed, the old interface is accessible in
242 `legacy_parse_example` (same for related functions).
243* New `Variable`s are not added to the same collection several times even if
244 a list with duplicates is passed to the constructor.
Josh Levenberg02dff6d2016-01-07 18:37:54 -0800245* The Python API will now properly set the `list` member of `AttrValue` in
246 constructed `GraphDef` messages for empty lists. The serialization of some
247 graphs will change, but the change is both forwards and backwards compatible.
248 It will break tests that compare a generated `GraphDef` to a golden serialized
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800249 `GraphDef` (which is discouraged).
250
251
252## Thanks to our Contributors
253
254This release contains contributions from many people at Google, as well as:
255
256Akiomi Kamakura, Alex Vig, Alexander Rosenberg Johansen, Andre Cruz, Arun Ahuja,
257Bart Coppens, Bernardo Pires, Carl Vondrick, Cesar Salgado, Chen Yu,
258Christian Jauvin, Damien Aymeric, Dan Vanderkam, Denny Britz, Dongjoon Hyun,
259Eren Güven, Erik Erwitt, Fabrizio Milo, G. Hussain Chinoy, Jim Fleming,
260Joao Felipe Santos, Jonas Meinertz Hansen, Joshi Rekha, Julian Viereck,
261Keiji Ariyama, Kenton Lee, Krishna Sankar, Kristina Chodorow, Linchao Zhu,
262Lukas Krecan, Mark Borgerding, Mark Daoust, Moussa Taifi,
263Nathan Howell, Naveen Sundar Govindarajulu, Nick Sweeting, Niklas Riekenbrauck,
264Olivier Grisel, Patrick Christ, Povilas Liubauskas, Rainer Wasserfuhr,
265Romain Thouvenin, Sagan Bolliger, Sam Abrahams, Taehoon Kim, Timothy J Laurent,
266Vlad Zavidovych, Yangqing Jia, Yi-Lin Juang, Yuxin Wu, Zachary Lipton,
267Zero Chen, Alan Wu, @brchiu, @emmjaykay, @jalammar, @Mandar-Shinde,
268@nsipplswezey, @ninotoshi, @panmari, @prolearner and @rizzomichaelg.
269
270We are also grateful to all who filed issues or helped resolve them, asked and
271answered questions, and were part of inspiring discussions.
Josh Levenberg02dff6d2016-01-07 18:37:54 -0800272
Geoffrey Irvingcbff45c2016-01-12 08:06:56 -0800273
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800274# Release 0.6.0
275
276## Major Features and Improvements
277
278* Python 3.3+ support via changes to python codebase and ability
279 to specify python version via ./configure.
280
281* Some improvements to GPU performance and memory usage:
282 [convnet benchmarks](https://github.com/soumith/convnet-benchmarks/issues/66)
283 roughly equivalent with native cudnn v2 performance. Improvements mostly due
284 to moving to 32-bit indices, faster shuffling kernels. More improvements to
285 come in later releases.
286
287
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800288## Bug Fixes
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800289
290* Lots of fixes to documentation and tutorials, many contributed
291 by the public.
292
293* 271 closed issues on github issues.
294
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800295## Backwards-Incompatible Changes
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800296
Geoffrey Irving18297122016-02-10 11:48:34 -0800297* `tf.nn.fixed_unigram_candidate_sampler` changed its default 'distortion'
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800298 attribute from 0.0 to 1.0. This was a bug in the original release
299 that is now fixed.
300
Vijay Vasudevanddd4aaf2015-12-08 09:58:59 -0800301# Release 0.5.0
302
303Initial release of TensorFlow.