blob: 8c3af73a5bc9907fc118da11fed2045d116f800a [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.
Andrew Harp1cb96892016-12-08 20:05:49 -08009
10# Release 0.12.0
11
12## Major Features and Improvements
13
14* TensorFlow now builds and runs on Microsoft Windows (tested on Windows 10,
15 Windows 7, and Windows Server 2016). Supported languages include Python (via a
16 pip package) and C++. CUDA 8.0 and cuDNN 5.1 are supported for GPU
17 acceleration. Known limitations include: It is not currently possible to load
18 a custom op library. The GCS and HDFS file systems are not currently
19 supported. The following ops are not currently implemented:
20 DepthwiseConv2dNative, DepthwiseConv2dNativeBackpropFilter,
21 DepthwiseConv2dNativeBackpropInput, Dequantize, Digamma, Erf, Erfc, Igamma,
22 Igammac, Lgamma, Polygamma, QuantizeAndDequantize, QuantizedAvgPool,
23 QuantizedBatchNomWithGlobalNormalization, QuantizedBiasAdd, QuantizedConcat,
24 QuantizedConv2D, QuantizedMatmul, QuantizedMaxPool,
25 QuantizeDownAndShrinkRange, QuantizedRelu, QuantizedRelu6, QuantizedReshape,
26 QuantizeV2, RequantizationRange, and Requantize.
27* Go: Experimental API in Go to create and execute graphs
28 (https://godoc.org/github.com/tensorflow/tensorflow/tensorflow/go)
29* New checkpoint format becomes the default in `tf.train.Saver`. Old V1
30 checkpoints continue to be readable; controlled by the `write_version`
31 argument, `tf.train.Saver` now by default writes out in the new V2
32 format. It significantly reduces the peak memory required and latency
33 incurred during restore.
34* Added a new library for library of matrix-free (iterative) solvers for linear
35 equations, linear least-squares, eigenvalues and singular values in
36 tensorflow/contrib/solvers. Initial version has lanczos bidiagonalization,
37 conjugate gradients and CGLS.
38* Added gradients for `matrix_solve_ls` and `self_adjoint_eig`.
39* Large cleanup to add second order gradient for ops with C++ gradients and
40 improve existing gradients such that most ops can now be differentiated
41 multiple times.
42* Added a solver for ordinary differential equations,
43 `tf.contrib.integrate.odeint`.
44* New contrib module for tensors with named axes, `tf.contrib.labeled_tensor`.
45* Visualization of embeddings in TensorBoard.
46
47## Breaking Changes to the API
48
A. Unique TensorFlower79228c72016-10-19 16:25:46 -080049* `BusAdjacency` enum replaced with a protocol buffer `DeviceLocality`. PCI bus
Andrew Harp1cb96892016-12-08 20:05:49 -080050 indexing now starts from 1 instead of 0, and bus_id==0 is used where
51 previously BUS_ANY was used.
Jonathan Hseu879e0ac2016-11-04 11:53:50 -080052* `Env::FileExists` and `FileSystem::FileExists` now return a tensorflow::Status
53 intead of a bool. Any callers to this function can be converted to a bool
54 by adding .ok() to the call.
Asim Shankare580e722016-11-09 08:21:50 -080055* The C API type `TF_SessionWithGraph` has been renamed to `TF_Session`,
56 indicating its preferred use in language bindings for TensorFlow.
57 What was previously `TF_Session` has been renamed to `TF_DeprecatedSession`.
Jonathan Hseu8f6cb222016-11-16 14:11:44 -080058* Renamed TF_Port to TF_Output in the C API.
Andrew Harp1cb96892016-12-08 20:05:49 -080059* Removes RegisterShape from public API. Use C++ shape function registration instead.
60 indexing now starts from 1 instead of 0, and `bus_id==0` is used where
61 previously `BUS_ANY` was used.
Eugene Brevdo7a7c1eb2016-11-29 09:38:37 -080062* Most RNN cells and RNN functions now use different variable scopes to be
63 consistent with layers (`tf.contrib.layers`). This means old checkpoints
64 written using this code will not load after this change without providing
65 `Saver` a list of variable renames. Examples of variable scope changes
66 include `RNN` -> `rnn` in `tf.nn.rnn`, `tf.nn.dynamic_rnn` and moving from
67 `Linear/Matrix` -> `weights` and `Linear/Bias` -> `biases` in most RNN cells.
A. Unique TensorFlowerfe558b02016-11-30 11:51:57 -080068* Deprecated tf.select op. tf.where should be used instead.
Eugene Brevdob79d37b2016-12-08 15:17:34 -080069* `SparseTensor.shape` has been renamed to `SparseTensor.dense_shape`. Same for
70 `SparseTensorValue.shape`.
Andrew Harp1cb96892016-12-08 20:05:49 -080071* `Env::FileExists` and `FileSystem::FileExists` now return a
72 `tensorflow::Status` intead of a bool. Any callers to this function can be
73 converted to a bool by adding `.ok()` to the call.
74* C API: Type `TF_SessionWithGraph` has been renamed to `TF_Session`, indicating
75 its preferred use in language bindings for TensorFlow. What was previously
76 `TF_Session` has been renamed to `TF_DeprecatedSession`.
77* C API: Renamed `TF_Port` to `TF_Output`.
78* C API: The caller retains ownership of `TF_Tensor` objects provided to
79 `TF_Run`, `TF_SessionRun`, `TF_SetAttrTensor` etc.
80* Renamed `tf.image.per_image_whitening()` to
81 `tf.image.per_image_standardization()`
82* Move Summary protobuf constructors to `tf.summary` submodule.
83* Deprecate `histogram_summary`, `audio_summary`, `scalar_summary`,
84 `image_summary`, `merge_summary`, and `merge_all_summaries`.
85* Combined `batch_*` and regular version of linear algebra and FFT ops. The
86 regular op now handles batches as well. All `batch_*` Python interfaces were
87 removed.
88* `tf.all_variables`, `tf.VARIABLES` and `tf.initialize_all_variables` renamed
89 to `tf.global_variables`, `tf.GLOBAL_VARIABLES` and
90 `tf.global_variables_initializer` respectively.
91
92## Bug Fixes and Other Changes
93
94* Use threadsafe version of `lgamma` function.
95* Fix `tf.sqrt` handling of negative arguments.
96* Fixed bug causing incorrect number of threads to be used for multi-threaded
97 benchmarks.
98* Performance optimizations for `batch_matmul` on multi-core CPUs.
99* Improve trace, `matrix_set_diag`, `matrix_diag_part` and their gradients to
100 work for rectangular matrices.
101* Support for SVD of complex valued matrices.
102
103
104## Thanks to our Contributors
105
106This release contains contributions from many people at Google, as well as:
107
108@a7744hsc, Abhi Agg, @admcrae, Adriano Carmezim, Aki Sukegawa, Alex Kendall,
109Alexander Rosenberg Johansen, @amcrae, Amlan Kar, Andre Simpelo, Andreas Eberle,
110Andrew Hundt, Arnaud Lenglet, @b0noI, Balachander Ramachandran, Ben Barsdell,
111Ben Guidarelli, Benjamin Mularczyk, Burness Duan, @c0g, Changming Sun,
112@chanis, Corey Wharton, Dan J, Daniel Trebbien, Darren Garvey, David Brailovsky,
113David Jones, Di Zeng, @DjangoPeng, Dr. Kashif Rasul, @drag0, Fabrizio (Misto)
114Milo, FabríCio Ceschin, @fp, @Ghedeon, @guschmue, Gökçen Eraslan, Haosdent
115Huang, Haroen Viaene, Harold Cooper, Henrik Holst, @hoangmit, Ivan Ukhov, Javier
116Dehesa, Jingtian Peng, Jithin Odattu, Joan Pastor, Johan Mathe, Johannes Mayer,
117Jongwook Choi, Justus Schwabedal, Kai Wolf, Kamil Hryniewicz, Kamran Amini,
118Karen Brems, Karl Lattimer, @kborer, Ken Shirriff, Kevin Rose, Larissa Laich,
119Laurent Mazare, Leonard Lee, Liang-Chi Hsieh, Liangliang He, Luke Iwanski,
120Marek Kolodziej, Moustafa Alzantot, @MrQianjinsi, @nagachika, Neil Han, Nick
121Meehan, Niels Ole Salscheider, Nikhil Mishra, @nschuc, Ondrej Skopek, OndřEj
122Filip, @OscarDPan, Pablo Moyano, Przemyslaw Tredak, @qitaishui, @Quarazy,
123@raix852, Philipp Helo, Sam Abrahams, @SriramRamesh, Till Hoffmann, Tushar Soni,
124@tvn, @tyfkda, Uwe Schmidt, Victor Villas, Vit Stepanovs, Vladislav Gubarev,
125@wujingyue, Xuesong Yang, Yi Liu, Yilei Yang, @youyou3, Yuan (Terry) Tang,
126Yuming Wang, Zafar Takhirov, @zhongyuk, Ziming Dong, @guotong1988
127
128We are also grateful to all who filed issues or helped resolve them, asked and
129answered questions, and were part of inspiring discussions.
A. Unique TensorFlower79228c72016-10-19 16:25:46 -0800130
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800131# Release 0.11.0
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -0800132
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800133## Major Features and Improvements
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -0800134
Vijay Vasudevan818993c2016-11-03 17:07:01 -0800135* CUDA 8 support.
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800136* cuDNN 5 support.
137* HDFS Support.
138* Adds Fused LSTM support via cuDNN 5 in `tensorflow/contrib/cudnn_rnn`.
139* Improved support for NumPy style basic slicing including non-1 strides,
140 ellipses, newaxis, and negative indices. For example complicated expressions
141 like `foo[1, 2:4, tf.newaxis, ..., :-3:-1, :]` are now supported. In addition
142 we have preliminary (non-broadcasting) support for sliced assignment to
143 variables. In particular one can write `var[1:3].assign([1,11,111])`.
144* 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.
145* Introducing `core/util/tensor_bundle` module: a module to efficiently
146 serialize/deserialize tensors to disk. Will be used in TF's new checkpoint
147 format.
148* Added tf.svd for computing the singular value decomposition (SVD) of dense
149 matrices or batches of matrices (CPU only).
150* Added gradients for eigenvalues and eigenvectors computed using
151 `self_adjoint_eig` or `self_adjoint_eigvals`.
152* Eliminated `batch_*` methods for most linear algebra and FFT ops and promoted
153 the non-batch version of the ops to handle batches of matrices.
154* Tracing/timeline support for distributed runtime (no GPU profiler yet).
155* C API gives access to inferred shapes with `TF_GraphGetTensorNumDims` and
156 `TF_GraphGetTensorShape`.
157* Shape functions for core ops have moved to C++ via
158 `REGISTER_OP(...).SetShapeFn(...)`. Python shape inference RegisterShape calls
159 use the C++ shape functions with `common_shapes.call_cpp_shape_fn`. A future
160 release will remove `RegisterShape` from python.
161
162
163## Bug Fixes and Other Changes
164
165* Documentation now includes operator overloads on Tensor and Variable.
166* `tensorflow.__git_version__` now allows users to identify the version of the
167 code that TensorFlow was compiled with. We also have
168 `tensorflow.__git_compiler__` which identifies the compiler used to compile
169 TensorFlow's core.
170* Improved multi-threaded performance of `batch_matmul`.
Eugene Brevdo21e1cc72016-08-11 21:45:39 -0800171* LSTMCell, BasicLSTMCell, and MultiRNNCell constructors now default to
172 `state_is_tuple=True`. For a quick fix while transitioning to the new
173 default, simply pass the argument `state_is_tuple=False`.
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -0800174* DeviceFactory's AddDevices and CreateDevices functions now return
175 a Status instead of void.
A. Unique TensorFlower84cefad2016-08-12 07:06:13 -0800176* Int32 elements of list(type) arguments are no longer placed in host memory by
177 default. If necessary, a list(type) argument to a kernel can be placed in host
178 memory using a HostMemory annotation.
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800179* `uniform_unit_scaling_initializer()` no longer takes a `full_shape` arg,
180 instead relying on the partition info passed to the initializer function when
181 it's called.
182* The NodeDef protocol message is now defined in its own file `node_def.proto`
183 `instead of graph.proto`.
184* `ops.NoGradient` was renamed `ops.NotDifferentiable`. `ops.NoGradient` will
Vijay Vasudevan612bae72016-09-09 11:03:09 -0800185 be removed soon.
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800186* `dot.h` / DotGraph was removed (it was an early analysis tool prior
Vijay Vasudevan269bfee2016-09-21 21:41:19 -0800187 to TensorBoard, no longer that useful). It remains in history
188 should someone find the code useful.
Vijay Vasudevan914625a2016-09-23 13:51:34 -0800189* re2 / regexp.h was removed from being a public interface of TF.
190 Should users need regular expressions, they should depend on the RE2
191 library directly rather than via TensorFlow.
Dan Manée5bcf542016-05-16 13:39:34 -0800192
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800193## Thanks to our Contributors
194
195This release contains contributions from many people at Google, as well as:
196
197Abid K, @afshinrahimi, @AidanGG, Ajay Rao, Aki Sukegawa, Alex Rothberg,
198Alexander Rosenberg Johansen, Andrew Gibiansky, Andrew Thomas, @Appleholic,
199Bastiaan Quast, Ben Dilday, Bofu Chen, Brandon Amos, Bryon Gloden, Cissp®,
200@chanis, Chenyang Liu, Corey Wharton, Daeyun Shin, Daniel Julius Lasiman, Daniel
201Waterworth, Danijar Hafner, Darren Garvey, Denis Gorbachev, @DjangoPeng,
202Egor-Krivov, Elia Palme, Eric Platon, Fabrizio Milo, Gaetan Semet,
203Georg Nebehay, Gu Wang, Gustav Larsson, @haosdent, Harold Cooper, Hw-Zz,
204@ichuang, Igor Babuschkin, Igor Macedo Quintanilha, Ilya Edrenkin, @ironhead,
205Jakub Kolodziejczyk, Jennifer Guo, Jihun Choi, Jonas Rauber, Josh Bleecher
206Snyder, @jpangburn, Jules Gagnon-Marchand, Karen Brems, @kborer, Kirill Bobyrev,
207Laurent Mazare, Longqi Yang, Malith Yapa, Maniteja Nandana, Martin Englund,
208Matthias Winkelmann, @mecab, Mu-Ik Jeon, Nand Dalal, Niels Ole Salscheider,
209Nikhil Mishra, Park Jiin, Pieter De Rijk, @raix852, Ritwik Gupta, Sahil Sharma,
Patrick Nguyenc5ab3dd2016-10-20 12:09:18 -0800210Sangheum Hwang, @SergejsRk, Shinichiro Hamaji, Simon Denel, @Steve, @suiyuan2009,
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800211Tiago Jorge, Tijmen Tieleman, @tvn, @tyfkda, Wang Yang, Wei-Ting Kuo, Wenjian
212Huang, Yan Chen, @YenChenLin, Yuan (Terry) Tang, Yuncheng Li, Yunfeng Wang, Zack
213Polizzi, @zhongzyd, Ziming Dong, @perhapszzy
214
215We are also grateful to all who filed issues or helped resolve them, asked and
216answered questions, and were part of inspiring discussions.
217
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800218# Release 0.10.0
A. Unique TensorFlower533d8912016-06-30 12:10:50 -0800219
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800220## Major Features and Improvements
221
222* Added support for C++ shape inference
223* Added graph-construction C API
224* Major revision to the graph-construction C++ API
225* Support makefile build for iOS
226* Added Mac GPU support
227* Full version of TF-Slim available as `tf.contrib.slim`
228* Added k-Means clustering and WALS matrix factorization
229
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800230## Bug Fixes and Other Changes
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800231
232* Allow gradient computation for scalar values.
233* Performance improvements for gRPC
234* Improved support for fp16
235* New high-level ops in tf.contrib.{layers,metrics}
236* New features for TensorBoard, such as shape display, exponential smoothing
237* Faster and more stable Google Cloud Storage (GCS) filesystem support
238* Support for zlib compression and decompression for TFRecordReader and TFRecordWriter
239* Support for reading (animated) GIFs
240* Improved support for SparseTensor
241* Added support for more probability distributions (Dirichlet, Beta, Bernoulli, etc.)
242* Added Python interfaces to reset resource containers.
243* Many bugfixes and performance improvements
244* Many documentation fixes
245
246## Thanks to our Contributors
247
248This release contains contributions from many people at Google, as well as:
249
250Alex 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
251
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800252We are also grateful to all who filed issues or helped resolve them, asked and
253answered questions, and were part of inspiring discussions.
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800254
255# Release 0.9.0
256
257## Major Features and Improvements
258
259* Python 3.5 support and binaries
260* Added iOS support
261* Added support for processing on GPUs on MacOS
262* Added makefile for better cross-platform build support (C API only)
263* fp16 support and improved complex128 support for many ops
264* Higher level functionality in contrib.{layers,losses,metrics,learn}
265* More features to Tensorboard
266* Improved support for string embedding and sparse features
267* The RNN api is finally "official" (see, e.g., `tf.nn.dynamic_rnn`,
268 `tf.nn.rnn`, and the classes in `tf.nn.rnn_cell`).
269* TensorBoard now has an Audio Dashboard, with associated audio summaries.
270
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800271## Bug Fixes and Other Changes
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800272
273* Turned on CuDNN Autotune.
274* Added support for using third-party Python optimization algorithms (contrib.opt).
275* Google Cloud Storage filesystem support.
276* HDF5 support
277* Add support for 3d convolutions and pooling.
278* Update gRPC release to 0.14.
279* Eigen version upgrade.
280* Switch to eigen thread pool
281* `tf.nn.moments()` now accepts a `shift` argument. Shifting by a good estimate
282 of the mean improves numerical stability. Also changes the behavior of the
283 `shift` argument to `tf.nn.sufficient_statistics()`.
284* Performance improvements
285* Many bugfixes
286* Many documentation fixes
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800287* TensorBoard fixes: graphs with only one data point, Nan values,
288 reload button and auto-reload, tooltips in scalar charts, run
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800289 filtering, stable colors
290* Tensorboard graph visualizer now supports run metadata. Clicking on nodes
291 while viewing a stats for a particular run will show runtime statistics, such
292 as memory or compute usage. Unused nodes will be faded out.
293
294## Thanks to our Contributors
295
296This release contains contributions from many people at Google, as well as:
297
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800298Aaron 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 -0800299
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800300We are also grateful to all who filed issues or helped resolve them, asked and
301answered questions, and were part of inspiring discussions.
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800302
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800303# Release 0.8.0
304
305## Major Features and Improvements
306
307* Added a distributed runtime using GRPC
308* Move skflow to `contrib/learn`
309* Better linear optimizer in `contrib/linear_optimizer`
310* Random forest implementation in `contrib/tensor_forest`
311* CTC loss and decoders in `contrib/ctc`
312* Basic support for `half` data type
313* Better support for loading user ops (see examples in `contrib/`)
314* Allow use of (non-blocking) Eigen threadpool with `TENSORFLOW_USE_EIGEN_THREADPOOL` define
315* Add an extension mechanism for adding network file system support
316* TensorBoard displays metadata stats (running time, memory usage and device used) and tensor shapes
317
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800318## Bug Fixes and Other Changes
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800319
320* Utility for inspecting checkpoints
321* Basic tracing and timeline support
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800322* Allow building against cuDNN 5 (not incl. RNN/LSTM support)
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800323* Added instructions and binaries for ProtoBuf library with fast serialization and without 64MB limit
324* Added special functions
Dan Mané54a71782016-09-09 16:07:46 -0800325* `bool`-strictness: Tensors have to be explicitly compared to `None`
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800326* Shape strictness: all fed values must have a shape that is compatible with the tensor they are replacing
327* Exposed `tf.while_loop` (deprecated `control_flow_ops.While`)
328* run() now takes RunOptions and RunMetadata, which enable timing stats
329* Fixed lots of potential overflow problems in op kernels
330* Various performance improvements, especially for RNNs and convolutions
331* Many bugfixes
332* Nightly builds, tutorial tests, many test improvements
333* New examples: transfer learning and deepdream ipython notebook
334* Added tutorials, many documentation fixes.
335
336## Thanks to our Contributors
337
338This release contains contributions from many people at Google, as well as:
339
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800340Abhinav 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 -0800341
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800342We are also grateful to all who filed issues or helped resolve them, asked and
343answered questions, and were part of inspiring discussions.
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800344
345
Eugene Brevdo56f1d642016-03-10 17:18:30 -0800346# Release 0.7.1
347
348## Bug Fixes and Other Changes
349
350* Added gfile.Open and gfile.Copy, used by input_data.py.
351* Fixed Saver bug when MakeDirs tried to create empty directory.
352* GPU Pip wheels are built with cuda 7.5 and cudnn-v4, making them
353 required for the binary releases. Lower versions of cuda/cudnn can
354 be supported by installing from sources and setting the options
355 during ./configure
356* Fix dataset encoding example for Python3 (@danijar)
357* Fix PIP installation by not packaging protobuf as part of wheel,
358 require protobuf 3.0.0b2.
359* Fix Mac pip installation of numpy by requiring pip >= 1.10.1.
360* Improvements and fixes to Docker image.
361
362
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800363# Release 0.7.0
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -0800364
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800365## Major Features and Improvements
366
367* Allow using any installed Cuda >= 7.0 and cuDNN >= R2, and add support
368 for cuDNN R4
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800369* Added a `contrib/` directory for unsupported or experimental features,
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800370 including higher level `layers` module
371* Added an easy way to add and dynamically load user-defined ops
372* Built out a good suite of tests, things should break less!
373* Added `MetaGraphDef` which makes it easier to save graphs with metadata
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800374* Added assignments for "Deep Learning with TensorFlow" udacity course
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800375
376
377## Bug Fixes and Other Changes
378
379* Added a versioning framework for `GraphDef`s to ensure compatibility
380* Enforced Python 3 compatibility
381* Internal changes now show up as sensibly separated commits
382* Open-sourced the doc generator
383* Un-fork Eigen
384* Simplified the `BUILD` files and cleaned up C++ headers
385* TensorFlow can now be used as a submodule in another bazel build
386* New ops (e.g., `*fft`, `*_matrix_solve`)
387* Support for more data types in many ops
388* Performance improvements
389* Various bugfixes
390* Documentation fixes and improvements
391
392
393## Breaking Changes to the API
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -0800394
395* `AdjustContrast` kernel deprecated, new kernel `AdjustContrastv2` takes and
396 outputs float only. `adjust_contrast` now takes all data types.
397* `adjust_brightness`'s `delta` argument is now always assumed to be in `[0,1]`
398 (as is the norm for images in floating point formats), independent of the
399 data type of the input image.
400* The image processing ops do not take `min` and `max` inputs any more, casting
401 safety is handled by `saturate_cast`, which makes sure over- and underflows
402 are handled before casting to data types with smaller ranges.
Geoffrey Irvingcbff45c2016-01-12 08:06:56 -0800403* For C++ API users: `IsLegacyScalar` and `IsLegacyVector` are now gone from
404 `TensorShapeUtils` since TensorFlow is scalar strict within Google (for
405 example, the shape argument to `tf.reshape` can't be a scalar anymore). The
406 open source release was already scalar strict, so outside Google `IsScalar`
407 and `IsVector` are exact replacements.
Josh Levenbergdb7478e2016-01-20 14:54:50 -0800408* The following files are being removed from `tensorflow/core/public/`:
409 * `env.h` -> `../platform/env.h`
410 * `status.h` -> `../lib/core/status.h`
411 * `tensor.h` -> `../framework/tensor.h`
412 * `tensor_shape.h` -> `../framework/tensor_shape.h`
413 * `partial_tensor_shape.h` -> `../framework/partial_tensor_shape.h`
414 * `tensorflow_server.h` deleted
Geoffrey Irving56437752016-01-25 09:43:13 -0800415* For C++ API users: `TensorShape::ShortDebugString` has been renamed to
416 `DebugString`, and the previous `DebugString` behavior is gone (it was
417 needlessly verbose and produced a confusing empty string for scalars).
Manjunath Kudlurc2722a12016-01-27 13:24:50 -0800418* `GraphOptions.skip_common_subexpression_elimination` has been removed. All
419 graph optimizer options are now specified via
420 `GraphOptions.OptimizerOptions`.
Geoffrey Irving18297122016-02-10 11:48:34 -0800421* `ASSERT_OK` / `EXPECT_OK` macros conflicted with external projects, so they
422 were renamed `TF_ASSERT_OK`, `TF_EXPECT_OK`. The existing macros are
423 currently maintained for short-term compatibility but will be removed.
Eugene Brevdofea55e12016-01-27 14:54:54 -0800424* The non-public `nn.rnn` and the various `nn.seq2seq` methods now return
425 just the final state instead of the list of all states.
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800426* `tf.scatter_update` now no longer guarantees that lexicographically largest
427 index be used for update when duplicate entries exist.
Geoffrey Irving3e33d442016-02-08 12:02:44 -0800428* `tf.image.random_crop(image, [height, width])` is now
429 `tf.random_crop(image, [height, width, depth])`, and `tf.random_crop` works
430 for any rank (not just 3-D images). The C++ `RandomCrop` op has been replaced
431 with pure Python.
Geoffrey Irving18297122016-02-10 11:48:34 -0800432* Renamed `tf.test.GetTempDir` and `tf.test.IsBuiltWithCuda` to
433 `tf.test.get_temp_dir` and `tf.test.is_built_with_cuda` for PEP-8
434 compatibility.
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800435* `parse_example`'s interface has changed, the old interface is accessible in
436 `legacy_parse_example` (same for related functions).
437* New `Variable`s are not added to the same collection several times even if
438 a list with duplicates is passed to the constructor.
Josh Levenberg02dff6d2016-01-07 18:37:54 -0800439* The Python API will now properly set the `list` member of `AttrValue` in
440 constructed `GraphDef` messages for empty lists. The serialization of some
441 graphs will change, but the change is both forwards and backwards compatible.
442 It will break tests that compare a generated `GraphDef` to a golden serialized
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800443 `GraphDef` (which is discouraged).
444
445
446## Thanks to our Contributors
447
448This release contains contributions from many people at Google, as well as:
449
450Akiomi Kamakura, Alex Vig, Alexander Rosenberg Johansen, Andre Cruz, Arun Ahuja,
451Bart Coppens, Bernardo Pires, Carl Vondrick, Cesar Salgado, Chen Yu,
452Christian Jauvin, Damien Aymeric, Dan Vanderkam, Denny Britz, Dongjoon Hyun,
453Eren Güven, Erik Erwitt, Fabrizio Milo, G. Hussain Chinoy, Jim Fleming,
454Joao Felipe Santos, Jonas Meinertz Hansen, Joshi Rekha, Julian Viereck,
455Keiji Ariyama, Kenton Lee, Krishna Sankar, Kristina Chodorow, Linchao Zhu,
456Lukas Krecan, Mark Borgerding, Mark Daoust, Moussa Taifi,
457Nathan Howell, Naveen Sundar Govindarajulu, Nick Sweeting, Niklas Riekenbrauck,
458Olivier Grisel, Patrick Christ, Povilas Liubauskas, Rainer Wasserfuhr,
459Romain Thouvenin, Sagan Bolliger, Sam Abrahams, Taehoon Kim, Timothy J Laurent,
460Vlad Zavidovych, Yangqing Jia, Yi-Lin Juang, Yuxin Wu, Zachary Lipton,
461Zero Chen, Alan Wu, @brchiu, @emmjaykay, @jalammar, @Mandar-Shinde,
462@nsipplswezey, @ninotoshi, @panmari, @prolearner and @rizzomichaelg.
463
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800464We are also grateful to all who filed issues or helped resolve them, asked and
465answered questions, and were part of inspiring discussions.
Josh Levenberg02dff6d2016-01-07 18:37:54 -0800466
Geoffrey Irvingcbff45c2016-01-12 08:06:56 -0800467
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800468# Release 0.6.0
469
470## Major Features and Improvements
471
472* Python 3.3+ support via changes to python codebase and ability
473 to specify python version via ./configure.
474
475* Some improvements to GPU performance and memory usage:
476 [convnet benchmarks](https://github.com/soumith/convnet-benchmarks/issues/66)
477 roughly equivalent with native cudnn v2 performance. Improvements mostly due
478 to moving to 32-bit indices, faster shuffling kernels. More improvements to
479 come in later releases.
480
481
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800482## Bug Fixes
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800483
484* Lots of fixes to documentation and tutorials, many contributed
485 by the public.
486
487* 271 closed issues on github issues.
488
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800489## Backwards-Incompatible Changes
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800490
Geoffrey Irving18297122016-02-10 11:48:34 -0800491* `tf.nn.fixed_unigram_candidate_sampler` changed its default 'distortion'
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800492 attribute from 0.0 to 1.0. This was a bug in the original release
493 that is now fixed.
494
Vijay Vasudevanddd4aaf2015-12-08 09:58:59 -0800495# Release 0.5.0
496
497Initial release of TensorFlow.