blob: 939eee0f2d5eda9f822bf9fde757de2ec2394030 [file] [log] [blame] [view]
A. Unique TensorFlower79228c72016-10-19 16:25:46 -08001# Changes since the last release
2
3## Breaking Changes to the API
4
Andrew Sellefcc39232016-11-22 10:04:37 -08005* Division and modulus operators (/, //, %) now match Python (flooring)
6 semantics. tf.div is renamed to tf.division. New operators tf.truncatediv and
7 tf.truncatemod are available for achieving the previous C++ (truncation)
8 division/modulus semantics.
A. Unique TensorFlower79228c72016-10-19 16:25:46 -08009* `BusAdjacency` enum replaced with a protocol buffer `DeviceLocality`. PCI bus
10indexing now starts from 1 instead of 0, and bus_id==0 is used where previously
11BUS_ANY was used.
Jonathan Hseu879e0ac2016-11-04 11:53:50 -080012* `Env::FileExists` and `FileSystem::FileExists` now return a tensorflow::Status
13 intead of a bool. Any callers to this function can be converted to a bool
14 by adding .ok() to the call.
Asim Shankare580e722016-11-09 08:21:50 -080015* The C API type `TF_SessionWithGraph` has been renamed to `TF_Session`,
16 indicating its preferred use in language bindings for TensorFlow.
17 What was previously `TF_Session` has been renamed to `TF_DeprecatedSession`.
Jonathan Hseu8f6cb222016-11-16 14:11:44 -080018* Renamed TF_Port to TF_Output in the C API.
Vijay Vasudevanf56237c2016-11-21 10:42:05 -080019* Removes RegisterShape from public API. Use C++ shape function registration instead.
A. Unique TensorFlower79228c72016-10-19 16:25:46 -080020
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -080021# Release 0.11.0
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -080022
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -080023## Major Features and Improvements
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -080024
Vijay Vasudevan818993c2016-11-03 17:07:01 -080025* CUDA 8 support.
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -080026* cuDNN 5 support.
27* HDFS Support.
28* Adds Fused LSTM support via cuDNN 5 in `tensorflow/contrib/cudnn_rnn`.
29* Improved support for NumPy style basic slicing including non-1 strides,
30 ellipses, newaxis, and negative indices. For example complicated expressions
31 like `foo[1, 2:4, tf.newaxis, ..., :-3:-1, :]` are now supported. In addition
32 we have preliminary (non-broadcasting) support for sliced assignment to
33 variables. In particular one can write `var[1:3].assign([1,11,111])`.
34* Deprecated `tf.op_scope` and `tf.variable_op_scope` in favor of a unified `tf.name_scope` and `tf.variable_scope`. The new argument order of `tf.variable_scope` is incompatible with previous versions.
35* Introducing `core/util/tensor_bundle` module: a module to efficiently
36 serialize/deserialize tensors to disk. Will be used in TF's new checkpoint
37 format.
38* Added tf.svd for computing the singular value decomposition (SVD) of dense
39 matrices or batches of matrices (CPU only).
40* Added gradients for eigenvalues and eigenvectors computed using
41 `self_adjoint_eig` or `self_adjoint_eigvals`.
42* Eliminated `batch_*` methods for most linear algebra and FFT ops and promoted
43 the non-batch version of the ops to handle batches of matrices.
44* Tracing/timeline support for distributed runtime (no GPU profiler yet).
45* C API gives access to inferred shapes with `TF_GraphGetTensorNumDims` and
46 `TF_GraphGetTensorShape`.
47* Shape functions for core ops have moved to C++ via
48 `REGISTER_OP(...).SetShapeFn(...)`. Python shape inference RegisterShape calls
49 use the C++ shape functions with `common_shapes.call_cpp_shape_fn`. A future
50 release will remove `RegisterShape` from python.
51
52
53## Bug Fixes and Other Changes
54
55* Documentation now includes operator overloads on Tensor and Variable.
56* `tensorflow.__git_version__` now allows users to identify the version of the
57 code that TensorFlow was compiled with. We also have
58 `tensorflow.__git_compiler__` which identifies the compiler used to compile
59 TensorFlow's core.
60* Improved multi-threaded performance of `batch_matmul`.
Eugene Brevdo21e1cc72016-08-11 21:45:39 -080061* LSTMCell, BasicLSTMCell, and MultiRNNCell constructors now default to
62 `state_is_tuple=True`. For a quick fix while transitioning to the new
63 default, simply pass the argument `state_is_tuple=False`.
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -080064* DeviceFactory's AddDevices and CreateDevices functions now return
65 a Status instead of void.
A. Unique TensorFlower84cefad2016-08-12 07:06:13 -080066* Int32 elements of list(type) arguments are no longer placed in host memory by
67 default. If necessary, a list(type) argument to a kernel can be placed in host
68 memory using a HostMemory annotation.
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -080069* `uniform_unit_scaling_initializer()` no longer takes a `full_shape` arg,
70 instead relying on the partition info passed to the initializer function when
71 it's called.
72* The NodeDef protocol message is now defined in its own file `node_def.proto`
73 `instead of graph.proto`.
74* `ops.NoGradient` was renamed `ops.NotDifferentiable`. `ops.NoGradient` will
Vijay Vasudevan612bae72016-09-09 11:03:09 -080075 be removed soon.
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -080076* `dot.h` / DotGraph was removed (it was an early analysis tool prior
Vijay Vasudevan269bfee2016-09-21 21:41:19 -080077 to TensorBoard, no longer that useful). It remains in history
78 should someone find the code useful.
Vijay Vasudevan914625a2016-09-23 13:51:34 -080079* re2 / regexp.h was removed from being a public interface of TF.
80 Should users need regular expressions, they should depend on the RE2
81 library directly rather than via TensorFlow.
Dan Manée5bcf542016-05-16 13:39:34 -080082
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -080083## Thanks to our Contributors
84
85This release contains contributions from many people at Google, as well as:
86
87Abid K, @afshinrahimi, @AidanGG, Ajay Rao, Aki Sukegawa, Alex Rothberg,
88Alexander Rosenberg Johansen, Andrew Gibiansky, Andrew Thomas, @Appleholic,
89Bastiaan Quast, Ben Dilday, Bofu Chen, Brandon Amos, Bryon Gloden, Cissp®,
90@chanis, Chenyang Liu, Corey Wharton, Daeyun Shin, Daniel Julius Lasiman, Daniel
91Waterworth, Danijar Hafner, Darren Garvey, Denis Gorbachev, @DjangoPeng,
92Egor-Krivov, Elia Palme, Eric Platon, Fabrizio Milo, Gaetan Semet,
93Georg Nebehay, Gu Wang, Gustav Larsson, @haosdent, Harold Cooper, Hw-Zz,
94@ichuang, Igor Babuschkin, Igor Macedo Quintanilha, Ilya Edrenkin, @ironhead,
95Jakub Kolodziejczyk, Jennifer Guo, Jihun Choi, Jonas Rauber, Josh Bleecher
96Snyder, @jpangburn, Jules Gagnon-Marchand, Karen Brems, @kborer, Kirill Bobyrev,
97Laurent Mazare, Longqi Yang, Malith Yapa, Maniteja Nandana, Martin Englund,
98Matthias Winkelmann, @mecab, Mu-Ik Jeon, Nand Dalal, Niels Ole Salscheider,
99Nikhil Mishra, Park Jiin, Pieter De Rijk, @raix852, Ritwik Gupta, Sahil Sharma,
Patrick Nguyenc5ab3dd2016-10-20 12:09:18 -0800100Sangheum Hwang, @SergejsRk, Shinichiro Hamaji, Simon Denel, @Steve, @suiyuan2009,
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800101Tiago Jorge, Tijmen Tieleman, @tvn, @tyfkda, Wang Yang, Wei-Ting Kuo, Wenjian
102Huang, Yan Chen, @YenChenLin, Yuan (Terry) Tang, Yuncheng Li, Yunfeng Wang, Zack
103Polizzi, @zhongzyd, Ziming Dong, @perhapszzy
104
105We are also grateful to all who filed issues or helped resolve them, asked and
106answered questions, and were part of inspiring discussions.
107
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800108# Release 0.10.0
A. Unique TensorFlower533d8912016-06-30 12:10:50 -0800109
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800110## Major Features and Improvements
111
112* Added support for C++ shape inference
113* Added graph-construction C API
114* Major revision to the graph-construction C++ API
115* Support makefile build for iOS
116* Added Mac GPU support
117* Full version of TF-Slim available as `tf.contrib.slim`
118* Added k-Means clustering and WALS matrix factorization
119
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800120## Bug Fixes and Other Changes
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800121
122* Allow gradient computation for scalar values.
123* Performance improvements for gRPC
124* Improved support for fp16
125* New high-level ops in tf.contrib.{layers,metrics}
126* New features for TensorBoard, such as shape display, exponential smoothing
127* Faster and more stable Google Cloud Storage (GCS) filesystem support
128* Support for zlib compression and decompression for TFRecordReader and TFRecordWriter
129* Support for reading (animated) GIFs
130* Improved support for SparseTensor
131* Added support for more probability distributions (Dirichlet, Beta, Bernoulli, etc.)
132* Added Python interfaces to reset resource containers.
133* Many bugfixes and performance improvements
134* Many documentation fixes
135
136## Thanks to our Contributors
137
138This release contains contributions from many people at Google, as well as:
139
140Alex 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
141
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800142We are also grateful to all who filed issues or helped resolve them, asked and
143answered questions, and were part of inspiring discussions.
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800144
145# Release 0.9.0
146
147## Major Features and Improvements
148
149* Python 3.5 support and binaries
150* Added iOS support
151* Added support for processing on GPUs on MacOS
152* Added makefile for better cross-platform build support (C API only)
153* fp16 support and improved complex128 support for many ops
154* Higher level functionality in contrib.{layers,losses,metrics,learn}
155* More features to Tensorboard
156* Improved support for string embedding and sparse features
157* The RNN api is finally "official" (see, e.g., `tf.nn.dynamic_rnn`,
158 `tf.nn.rnn`, and the classes in `tf.nn.rnn_cell`).
159* TensorBoard now has an Audio Dashboard, with associated audio summaries.
160
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800161## Bug Fixes and Other Changes
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800162
163* Turned on CuDNN Autotune.
164* Added support for using third-party Python optimization algorithms (contrib.opt).
165* Google Cloud Storage filesystem support.
166* HDF5 support
167* Add support for 3d convolutions and pooling.
168* Update gRPC release to 0.14.
169* Eigen version upgrade.
170* Switch to eigen thread pool
171* `tf.nn.moments()` now accepts a `shift` argument. Shifting by a good estimate
172 of the mean improves numerical stability. Also changes the behavior of the
173 `shift` argument to `tf.nn.sufficient_statistics()`.
174* Performance improvements
175* Many bugfixes
176* Many documentation fixes
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800177* TensorBoard fixes: graphs with only one data point, Nan values,
178 reload button and auto-reload, tooltips in scalar charts, run
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800179 filtering, stable colors
180* Tensorboard graph visualizer now supports run metadata. Clicking on nodes
181 while viewing a stats for a particular run will show runtime statistics, such
182 as memory or compute usage. Unused nodes will be faded out.
183
184## Thanks to our Contributors
185
186This release contains contributions from many people at Google, as well as:
187
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800188Aaron 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 -0800189
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800190We are also grateful to all who filed issues or helped resolve them, asked and
191answered questions, and were part of inspiring discussions.
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800192
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800193# Release 0.8.0
194
195## Major Features and Improvements
196
197* Added a distributed runtime using GRPC
198* Move skflow to `contrib/learn`
199* Better linear optimizer in `contrib/linear_optimizer`
200* Random forest implementation in `contrib/tensor_forest`
201* CTC loss and decoders in `contrib/ctc`
202* Basic support for `half` data type
203* Better support for loading user ops (see examples in `contrib/`)
204* Allow use of (non-blocking) Eigen threadpool with `TENSORFLOW_USE_EIGEN_THREADPOOL` define
205* Add an extension mechanism for adding network file system support
206* TensorBoard displays metadata stats (running time, memory usage and device used) and tensor shapes
207
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800208## Bug Fixes and Other Changes
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800209
210* Utility for inspecting checkpoints
211* Basic tracing and timeline support
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800212* Allow building against cuDNN 5 (not incl. RNN/LSTM support)
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800213* Added instructions and binaries for ProtoBuf library with fast serialization and without 64MB limit
214* Added special functions
Dan Mané54a71782016-09-09 16:07:46 -0800215* `bool`-strictness: Tensors have to be explicitly compared to `None`
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800216* Shape strictness: all fed values must have a shape that is compatible with the tensor they are replacing
217* Exposed `tf.while_loop` (deprecated `control_flow_ops.While`)
218* run() now takes RunOptions and RunMetadata, which enable timing stats
219* Fixed lots of potential overflow problems in op kernels
220* Various performance improvements, especially for RNNs and convolutions
221* Many bugfixes
222* Nightly builds, tutorial tests, many test improvements
223* New examples: transfer learning and deepdream ipython notebook
224* Added tutorials, many documentation fixes.
225
226## Thanks to our Contributors
227
228This release contains contributions from many people at Google, as well as:
229
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800230Abhinav 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 -0800231
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800232We are also grateful to all who filed issues or helped resolve them, asked and
233answered questions, and were part of inspiring discussions.
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800234
235
Eugene Brevdo56f1d642016-03-10 17:18:30 -0800236# Release 0.7.1
237
238## Bug Fixes and Other Changes
239
240* Added gfile.Open and gfile.Copy, used by input_data.py.
241* Fixed Saver bug when MakeDirs tried to create empty directory.
242* GPU Pip wheels are built with cuda 7.5 and cudnn-v4, making them
243 required for the binary releases. Lower versions of cuda/cudnn can
244 be supported by installing from sources and setting the options
245 during ./configure
246* Fix dataset encoding example for Python3 (@danijar)
247* Fix PIP installation by not packaging protobuf as part of wheel,
248 require protobuf 3.0.0b2.
249* Fix Mac pip installation of numpy by requiring pip >= 1.10.1.
250* Improvements and fixes to Docker image.
251
252
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800253# Release 0.7.0
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -0800254
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800255## Major Features and Improvements
256
257* Allow using any installed Cuda >= 7.0 and cuDNN >= R2, and add support
258 for cuDNN R4
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800259* Added a `contrib/` directory for unsupported or experimental features,
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800260 including higher level `layers` module
261* Added an easy way to add and dynamically load user-defined ops
262* Built out a good suite of tests, things should break less!
263* Added `MetaGraphDef` which makes it easier to save graphs with metadata
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800264* Added assignments for "Deep Learning with TensorFlow" udacity course
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800265
266
267## Bug Fixes and Other Changes
268
269* Added a versioning framework for `GraphDef`s to ensure compatibility
270* Enforced Python 3 compatibility
271* Internal changes now show up as sensibly separated commits
272* Open-sourced the doc generator
273* Un-fork Eigen
274* Simplified the `BUILD` files and cleaned up C++ headers
275* TensorFlow can now be used as a submodule in another bazel build
276* New ops (e.g., `*fft`, `*_matrix_solve`)
277* Support for more data types in many ops
278* Performance improvements
279* Various bugfixes
280* Documentation fixes and improvements
281
282
283## Breaking Changes to the API
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -0800284
285* `AdjustContrast` kernel deprecated, new kernel `AdjustContrastv2` takes and
286 outputs float only. `adjust_contrast` now takes all data types.
287* `adjust_brightness`'s `delta` argument is now always assumed to be in `[0,1]`
288 (as is the norm for images in floating point formats), independent of the
289 data type of the input image.
290* The image processing ops do not take `min` and `max` inputs any more, casting
291 safety is handled by `saturate_cast`, which makes sure over- and underflows
292 are handled before casting to data types with smaller ranges.
Geoffrey Irvingcbff45c2016-01-12 08:06:56 -0800293* For C++ API users: `IsLegacyScalar` and `IsLegacyVector` are now gone from
294 `TensorShapeUtils` since TensorFlow is scalar strict within Google (for
295 example, the shape argument to `tf.reshape` can't be a scalar anymore). The
296 open source release was already scalar strict, so outside Google `IsScalar`
297 and `IsVector` are exact replacements.
Josh Levenbergdb7478e2016-01-20 14:54:50 -0800298* The following files are being removed from `tensorflow/core/public/`:
299 * `env.h` -> `../platform/env.h`
300 * `status.h` -> `../lib/core/status.h`
301 * `tensor.h` -> `../framework/tensor.h`
302 * `tensor_shape.h` -> `../framework/tensor_shape.h`
303 * `partial_tensor_shape.h` -> `../framework/partial_tensor_shape.h`
304 * `tensorflow_server.h` deleted
Geoffrey Irving56437752016-01-25 09:43:13 -0800305* For C++ API users: `TensorShape::ShortDebugString` has been renamed to
306 `DebugString`, and the previous `DebugString` behavior is gone (it was
307 needlessly verbose and produced a confusing empty string for scalars).
Manjunath Kudlurc2722a12016-01-27 13:24:50 -0800308* `GraphOptions.skip_common_subexpression_elimination` has been removed. All
309 graph optimizer options are now specified via
310 `GraphOptions.OptimizerOptions`.
Geoffrey Irving18297122016-02-10 11:48:34 -0800311* `ASSERT_OK` / `EXPECT_OK` macros conflicted with external projects, so they
312 were renamed `TF_ASSERT_OK`, `TF_EXPECT_OK`. The existing macros are
313 currently maintained for short-term compatibility but will be removed.
Eugene Brevdofea55e12016-01-27 14:54:54 -0800314* The non-public `nn.rnn` and the various `nn.seq2seq` methods now return
315 just the final state instead of the list of all states.
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800316* `tf.scatter_update` now no longer guarantees that lexicographically largest
317 index be used for update when duplicate entries exist.
Geoffrey Irving3e33d442016-02-08 12:02:44 -0800318* `tf.image.random_crop(image, [height, width])` is now
319 `tf.random_crop(image, [height, width, depth])`, and `tf.random_crop` works
320 for any rank (not just 3-D images). The C++ `RandomCrop` op has been replaced
321 with pure Python.
Geoffrey Irving18297122016-02-10 11:48:34 -0800322* Renamed `tf.test.GetTempDir` and `tf.test.IsBuiltWithCuda` to
323 `tf.test.get_temp_dir` and `tf.test.is_built_with_cuda` for PEP-8
324 compatibility.
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800325* `parse_example`'s interface has changed, the old interface is accessible in
326 `legacy_parse_example` (same for related functions).
327* New `Variable`s are not added to the same collection several times even if
328 a list with duplicates is passed to the constructor.
Josh Levenberg02dff6d2016-01-07 18:37:54 -0800329* The Python API will now properly set the `list` member of `AttrValue` in
330 constructed `GraphDef` messages for empty lists. The serialization of some
331 graphs will change, but the change is both forwards and backwards compatible.
332 It will break tests that compare a generated `GraphDef` to a golden serialized
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800333 `GraphDef` (which is discouraged).
334
335
336## Thanks to our Contributors
337
338This release contains contributions from many people at Google, as well as:
339
340Akiomi Kamakura, Alex Vig, Alexander Rosenberg Johansen, Andre Cruz, Arun Ahuja,
341Bart Coppens, Bernardo Pires, Carl Vondrick, Cesar Salgado, Chen Yu,
342Christian Jauvin, Damien Aymeric, Dan Vanderkam, Denny Britz, Dongjoon Hyun,
343Eren Güven, Erik Erwitt, Fabrizio Milo, G. Hussain Chinoy, Jim Fleming,
344Joao Felipe Santos, Jonas Meinertz Hansen, Joshi Rekha, Julian Viereck,
345Keiji Ariyama, Kenton Lee, Krishna Sankar, Kristina Chodorow, Linchao Zhu,
346Lukas Krecan, Mark Borgerding, Mark Daoust, Moussa Taifi,
347Nathan Howell, Naveen Sundar Govindarajulu, Nick Sweeting, Niklas Riekenbrauck,
348Olivier Grisel, Patrick Christ, Povilas Liubauskas, Rainer Wasserfuhr,
349Romain Thouvenin, Sagan Bolliger, Sam Abrahams, Taehoon Kim, Timothy J Laurent,
350Vlad Zavidovych, Yangqing Jia, Yi-Lin Juang, Yuxin Wu, Zachary Lipton,
351Zero Chen, Alan Wu, @brchiu, @emmjaykay, @jalammar, @Mandar-Shinde,
352@nsipplswezey, @ninotoshi, @panmari, @prolearner and @rizzomichaelg.
353
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800354We are also grateful to all who filed issues or helped resolve them, asked and
355answered questions, and were part of inspiring discussions.
Josh Levenberg02dff6d2016-01-07 18:37:54 -0800356
Geoffrey Irvingcbff45c2016-01-12 08:06:56 -0800357
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800358# Release 0.6.0
359
360## Major Features and Improvements
361
362* Python 3.3+ support via changes to python codebase and ability
363 to specify python version via ./configure.
364
365* Some improvements to GPU performance and memory usage:
366 [convnet benchmarks](https://github.com/soumith/convnet-benchmarks/issues/66)
367 roughly equivalent with native cudnn v2 performance. Improvements mostly due
368 to moving to 32-bit indices, faster shuffling kernels. More improvements to
369 come in later releases.
370
371
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800372## Bug Fixes
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800373
374* Lots of fixes to documentation and tutorials, many contributed
375 by the public.
376
377* 271 closed issues on github issues.
378
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800379## Backwards-Incompatible Changes
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800380
Geoffrey Irving18297122016-02-10 11:48:34 -0800381* `tf.nn.fixed_unigram_candidate_sampler` changed its default 'distortion'
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800382 attribute from 0.0 to 1.0. This was a bug in the original release
383 that is now fixed.
384
Vijay Vasudevanddd4aaf2015-12-08 09:58:59 -0800385# Release 0.5.0
386
387Initial release of TensorFlow.