blob: 72b0d84fadddf9337935816fcbb00d11ef0b0ccd [file] [log] [blame] [view]
Dan Manée5bcf542016-05-16 13:39:34 -08001# Changes Since Last Release
2
3## Features & Improvements
Eugene Brevdo67d3c912016-06-15 19:15:44 -08004* Connectionist Temporal Classification ops are now "official" (see, e.g.,
5 `tf.nn.ctc_loss`)
Eugene Brevdobab4fc42016-06-07 16:32:57 -08006* The RNN api is finally "official" (see, e.g., `tf.nn.dynamic_rnn`,
7 `tf.nn.rnn`, and the classes in `tf.nn.rnn_cell`).
Dan Manée5bcf542016-05-16 13:39:34 -08008* TensorBoard now has an Audio Dashboard, with associated audio summaries.
9* TensorBoard now has a reload button, and supports auto-reloading
10* TensorBoard scalar charts now show tooltips with more information
11* TensorBoard now supports run filtering
12* TensorBoard has color changes: the same run always gets the same hue
Nikhil Thorat7b830012016-05-27 08:49:16 -080013* Tensorboard graph visualizer now supports run metadata. Clicking on nodes
14 while viewing a stats for a particular run will show runtime statistics, such
15 as memory or compute usage. Unused nodes will be faded out.
Dan Manée5bcf542016-05-16 13:39:34 -080016
17## Bug Fixes and Other Changes
18* TensorBoard now displays graphs with only one data point
19* TensorBoard now visually displays NaN values
A. Unique TensorFlower4ea07332016-05-24 04:19:11 -080020* `tf.nn.moments()` now accepts a `shift` argument. Shifting by a good estimate
21 of the mean improves numerical stability. Also changes the behavior of the
22 `shift` argument to `tf.nn.sufficient_statistics()`.
Dan Manée5bcf542016-05-16 13:39:34 -080023
Illia Polosukhin5c9bc512016-04-18 17:56:51 -080024# Release 0.8.0
25
26## Major Features and Improvements
27
28* Added a distributed runtime using GRPC
29* Move skflow to `contrib/learn`
30* Better linear optimizer in `contrib/linear_optimizer`
31* Random forest implementation in `contrib/tensor_forest`
32* CTC loss and decoders in `contrib/ctc`
33* Basic support for `half` data type
34* Better support for loading user ops (see examples in `contrib/`)
35* Allow use of (non-blocking) Eigen threadpool with `TENSORFLOW_USE_EIGEN_THREADPOOL` define
36* Add an extension mechanism for adding network file system support
37* TensorBoard displays metadata stats (running time, memory usage and device used) and tensor shapes
38
39## Big Fixes and Other Changes
40
41* Utility for inspecting checkpoints
42* Basic tracing and timeline support
43* Allow building against cuDNN 5 (not incl. RNN/LSTM support)
44* Added instructions and binaries for ProtoBuf library with fast serialization and without 64MB limit
45* Added special functions
46* `bool`-strictness: Tensors have to be explictly compared to `None`
47* Shape strictness: all fed values must have a shape that is compatible with the tensor they are replacing
48* Exposed `tf.while_loop` (deprecated `control_flow_ops.While`)
49* run() now takes RunOptions and RunMetadata, which enable timing stats
50* Fixed lots of potential overflow problems in op kernels
51* Various performance improvements, especially for RNNs and convolutions
52* Many bugfixes
53* Nightly builds, tutorial tests, many test improvements
54* New examples: transfer learning and deepdream ipython notebook
55* Added tutorials, many documentation fixes.
56
57## Thanks to our Contributors
58
59This release contains contributions from many people at Google, as well as:
60
61Abhinav 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, Yuwen Yan, Yuxin Wu, Yuya Kusakabe, @zhongzyd, @znah.
62
63We are also grateful to all who filed issues or helped resolve them, asked and
64answered questions, and were part of inspiring discussions.
65
66
Eugene Brevdo56f1d642016-03-10 17:18:30 -080067# Release 0.7.1
68
69## Bug Fixes and Other Changes
70
71* Added gfile.Open and gfile.Copy, used by input_data.py.
72* Fixed Saver bug when MakeDirs tried to create empty directory.
73* GPU Pip wheels are built with cuda 7.5 and cudnn-v4, making them
74 required for the binary releases. Lower versions of cuda/cudnn can
75 be supported by installing from sources and setting the options
76 during ./configure
77* Fix dataset encoding example for Python3 (@danijar)
78* Fix PIP installation by not packaging protobuf as part of wheel,
79 require protobuf 3.0.0b2.
80* Fix Mac pip installation of numpy by requiring pip >= 1.10.1.
81* Improvements and fixes to Docker image.
82
83
Vijay Vasudevanfe056f02016-02-17 11:42:30 -080084# Release 0.7.0
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -080085
Vijay Vasudevanfe056f02016-02-17 11:42:30 -080086## Major Features and Improvements
87
88* Allow using any installed Cuda >= 7.0 and cuDNN >= R2, and add support
89 for cuDNN R4
90* Added a `contrib/` directory for unsupported or experimental features,
91 including higher level `layers` module
92* Added an easy way to add and dynamically load user-defined ops
93* Built out a good suite of tests, things should break less!
94* Added `MetaGraphDef` which makes it easier to save graphs with metadata
95* Added assignments for "Deep Learning with TensorFlow" udacity course
96
97
98## Bug Fixes and Other Changes
99
100* Added a versioning framework for `GraphDef`s to ensure compatibility
101* Enforced Python 3 compatibility
102* Internal changes now show up as sensibly separated commits
103* Open-sourced the doc generator
104* Un-fork Eigen
105* Simplified the `BUILD` files and cleaned up C++ headers
106* TensorFlow can now be used as a submodule in another bazel build
107* New ops (e.g., `*fft`, `*_matrix_solve`)
108* Support for more data types in many ops
109* Performance improvements
110* Various bugfixes
111* Documentation fixes and improvements
112
113
114## Breaking Changes to the API
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -0800115
116* `AdjustContrast` kernel deprecated, new kernel `AdjustContrastv2` takes and
117 outputs float only. `adjust_contrast` now takes all data types.
118* `adjust_brightness`'s `delta` argument is now always assumed to be in `[0,1]`
119 (as is the norm for images in floating point formats), independent of the
120 data type of the input image.
121* The image processing ops do not take `min` and `max` inputs any more, casting
122 safety is handled by `saturate_cast`, which makes sure over- and underflows
123 are handled before casting to data types with smaller ranges.
Geoffrey Irvingcbff45c2016-01-12 08:06:56 -0800124* For C++ API users: `IsLegacyScalar` and `IsLegacyVector` are now gone from
125 `TensorShapeUtils` since TensorFlow is scalar strict within Google (for
126 example, the shape argument to `tf.reshape` can't be a scalar anymore). The
127 open source release was already scalar strict, so outside Google `IsScalar`
128 and `IsVector` are exact replacements.
Josh Levenbergdb7478e2016-01-20 14:54:50 -0800129* The following files are being removed from `tensorflow/core/public/`:
130 * `env.h` -> `../platform/env.h`
131 * `status.h` -> `../lib/core/status.h`
132 * `tensor.h` -> `../framework/tensor.h`
133 * `tensor_shape.h` -> `../framework/tensor_shape.h`
134 * `partial_tensor_shape.h` -> `../framework/partial_tensor_shape.h`
135 * `tensorflow_server.h` deleted
Geoffrey Irving56437752016-01-25 09:43:13 -0800136* For C++ API users: `TensorShape::ShortDebugString` has been renamed to
137 `DebugString`, and the previous `DebugString` behavior is gone (it was
138 needlessly verbose and produced a confusing empty string for scalars).
Manjunath Kudlurc2722a12016-01-27 13:24:50 -0800139* `GraphOptions.skip_common_subexpression_elimination` has been removed. All
140 graph optimizer options are now specified via
141 `GraphOptions.OptimizerOptions`.
Geoffrey Irving18297122016-02-10 11:48:34 -0800142* `ASSERT_OK` / `EXPECT_OK` macros conflicted with external projects, so they
143 were renamed `TF_ASSERT_OK`, `TF_EXPECT_OK`. The existing macros are
144 currently maintained for short-term compatibility but will be removed.
Eugene Brevdofea55e12016-01-27 14:54:54 -0800145* The non-public `nn.rnn` and the various `nn.seq2seq` methods now return
146 just the final state instead of the list of all states.
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800147* `tf.scatter_update` now no longer guarantees that lexicographically largest
148 index be used for update when duplicate entries exist.
Geoffrey Irving3e33d442016-02-08 12:02:44 -0800149* `tf.image.random_crop(image, [height, width])` is now
150 `tf.random_crop(image, [height, width, depth])`, and `tf.random_crop` works
151 for any rank (not just 3-D images). The C++ `RandomCrop` op has been replaced
152 with pure Python.
Geoffrey Irving18297122016-02-10 11:48:34 -0800153* Renamed `tf.test.GetTempDir` and `tf.test.IsBuiltWithCuda` to
154 `tf.test.get_temp_dir` and `tf.test.is_built_with_cuda` for PEP-8
155 compatibility.
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800156* `parse_example`'s interface has changed, the old interface is accessible in
157 `legacy_parse_example` (same for related functions).
158* New `Variable`s are not added to the same collection several times even if
159 a list with duplicates is passed to the constructor.
Josh Levenberg02dff6d2016-01-07 18:37:54 -0800160* The Python API will now properly set the `list` member of `AttrValue` in
161 constructed `GraphDef` messages for empty lists. The serialization of some
162 graphs will change, but the change is both forwards and backwards compatible.
163 It will break tests that compare a generated `GraphDef` to a golden serialized
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800164 `GraphDef` (which is discouraged).
165
166
167## Thanks to our Contributors
168
169This release contains contributions from many people at Google, as well as:
170
171Akiomi Kamakura, Alex Vig, Alexander Rosenberg Johansen, Andre Cruz, Arun Ahuja,
172Bart Coppens, Bernardo Pires, Carl Vondrick, Cesar Salgado, Chen Yu,
173Christian Jauvin, Damien Aymeric, Dan Vanderkam, Denny Britz, Dongjoon Hyun,
174Eren Güven, Erik Erwitt, Fabrizio Milo, G. Hussain Chinoy, Jim Fleming,
175Joao Felipe Santos, Jonas Meinertz Hansen, Joshi Rekha, Julian Viereck,
176Keiji Ariyama, Kenton Lee, Krishna Sankar, Kristina Chodorow, Linchao Zhu,
177Lukas Krecan, Mark Borgerding, Mark Daoust, Moussa Taifi,
178Nathan Howell, Naveen Sundar Govindarajulu, Nick Sweeting, Niklas Riekenbrauck,
179Olivier Grisel, Patrick Christ, Povilas Liubauskas, Rainer Wasserfuhr,
180Romain Thouvenin, Sagan Bolliger, Sam Abrahams, Taehoon Kim, Timothy J Laurent,
181Vlad Zavidovych, Yangqing Jia, Yi-Lin Juang, Yuxin Wu, Zachary Lipton,
182Zero Chen, Alan Wu, @brchiu, @emmjaykay, @jalammar, @Mandar-Shinde,
183@nsipplswezey, @ninotoshi, @panmari, @prolearner and @rizzomichaelg.
184
185We are also grateful to all who filed issues or helped resolve them, asked and
186answered questions, and were part of inspiring discussions.
Josh Levenberg02dff6d2016-01-07 18:37:54 -0800187
Geoffrey Irvingcbff45c2016-01-12 08:06:56 -0800188
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800189# Release 0.6.0
190
191## Major Features and Improvements
192
193* Python 3.3+ support via changes to python codebase and ability
194 to specify python version via ./configure.
195
196* Some improvements to GPU performance and memory usage:
197 [convnet benchmarks](https://github.com/soumith/convnet-benchmarks/issues/66)
198 roughly equivalent with native cudnn v2 performance. Improvements mostly due
199 to moving to 32-bit indices, faster shuffling kernels. More improvements to
200 come in later releases.
201
202
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800203## Bug Fixes
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800204
205* Lots of fixes to documentation and tutorials, many contributed
206 by the public.
207
208* 271 closed issues on github issues.
209
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800210## Backwards-Incompatible Changes
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800211
Geoffrey Irving18297122016-02-10 11:48:34 -0800212* `tf.nn.fixed_unigram_candidate_sampler` changed its default 'distortion'
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800213 attribute from 0.0 to 1.0. This was a bug in the original release
214 that is now fixed.
215
Vijay Vasudevanddd4aaf2015-12-08 09:58:59 -0800216# Release 0.5.0
217
218Initial release of TensorFlow.