blob: d22c5c62fe01e5d3e2bc0cd4657aff692ee734bf [file] [log] [blame] [view]
Jonathan Hseu1b5235f2017-06-09 10:37:18 -07001# Release 1.2.0
Derek Murray4e69ce82017-04-11 10:31:27 -08002
3## Major Features and Improvements
Jonathan Hseu1b5235f2017-06-09 10:37:18 -07004* Python 3.6 support on Windows.
Dan Ringwalt692fad22017-05-05 09:09:05 -08005* Added `tf.layers.conv3d_transpose` layer for spatio temporal deconvolution.
Derek Murray4e69ce82017-04-11 10:31:27 -08006* Added `tf.Session.make_callable()`, which provides a lower overhead means of running a similar step multiple times.
Jonathan Hseu1b5235f2017-06-09 10:37:18 -07007* Added libverbs-based RDMA support to contrib (courtesy @junshi15 from Yahoo).
8* Bring `tf.feature_column.*` into the API. Non-deprecated functionality from `tf.contrib.layers.*` is moved to `tf.feature_column.*` with cosmetic changes.
Eugene Brevdo827d2e42017-05-22 17:32:50 -07009* `RNNCell` objects now subclass `tf.layers.Layer`. The strictness described
Eugene Brevdoe8482ab2017-04-21 16:34:59 -080010 in the TensorFlow 1.1 release is gone: The first time an RNNCell is used,
11 it caches its scope. All future uses of the RNNCell will reuse variables from
12 that same scope. This is a breaking change from the behavior of RNNCells
13 in TensorFlow versions <= 1.0.1. TensorFlow 1.1 had checks in place to
14 ensure old code works correctly with the new semantics; this version
15 allows more flexible uses of RNNCell but can lead to subtle errors if
16 using code meant for TensorFlow <= 1.0.1. For example, writing:
17 `MultiRNNCell([lstm] * 5)` will now build a 5-layer LSTM stack where each
18 layer shares the **same** parameters. To get 5 layers each with their own
19 parameters, write: `MultiRNNCell([LSTMCell(...) for _ in range(5)])`.
20 If at all unsure, first test your code with TF 1.1; ensure it raises no
21 errors, and then upgrade to TF 1.2.
Eugene Brevdo827d2e42017-05-22 17:32:50 -070022* RNNCells' variable names have been renamed for consistency with Keras layers.
23 Specifically, the previous variable names "weights" and "biases" have
24 been changed to "kernel" and "bias", respectively.
25 This may cause backward incompatibility with regard to your old
26 checkpoints containing such RNN cells, in which case you can use the tool
27 [checkpoint_convert script](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/rnn/python/tools/checkpoint_convert.py)
28 to convert the variable names in your old checkpoints.
29* Many of the RNN functions and classes that were in the `tf.nn` namespace
30 before the 1.0 release and which were moved to `tf.contrib.rnn` have now
31 been moved back to the core namespace. This includes
32 `RNNCell`, `LSTMCell`, `GRUCell`, and a number of other cells. These
33 now reside in `tf.nn.rnn_cell` (with aliases in `tf.contrib.rnn` for backwards
34 compatibility). The original `tf.nn.rnn` function is now `tf.nn.static_rnn`,
35 and the bidirectional static and state saving static rnn functions are also
36 now back in the `tf.nn` namespace.
37
38 Notable exceptions are the `EmbeddingWrapper`, `InputProjectionWrapper` and
39 `OutputProjectionWrapper`, which will slowly be moved to deprecation
40 in `tf.contrib.rnn`. These are inefficient wrappers that should often
41 be replaced by calling `embedding_lookup` or `layers.dense` as pre- or post-
42 processing of the rnn. For RNN decoding, this functionality has been replaced
43 with an alternative API in `tf.contrib.seq2seq`.
A. Unique TensorFlowerce322282017-01-07 09:19:27 -080044* Intel MKL Integration (https://software.intel.com/en-us/articles/tensorflow-optimizations-on-modern-intel-architecture). Intel developed a number of
45 optimized deep learning primitives: In addition to matrix multiplication and
46 convolution, these building blocks include:
47 Direct batched convolution
48 Pooling: maximum, minimum, average
49 Normalization: LRN, batch normalization
50 Activation: rectified linear unit (ReLU)
51 Data manipulation: multi-dimensional transposition (conversion), split,
52 concat, sum and scale.
Jonathan Hseu1b5235f2017-06-09 10:37:18 -070053* TensorForest Estimator now supports SavedModel export for serving.
54* Support client-provided ClusterSpec's and propagate them to all workers to enable the creation of dynamic TensorFlow clusters.
55* TensorFlow C library now available for Windows.
56* We released a new open-source version of TensorBoard.
57* [`SavedModel CLI`](https://www.tensorflow.org/versions/master/programmers_guide/saved_model_cli) tool available to inspect and execute MetaGraph in SavedModel
58* Android releases of TensorFlow are now pushed to jcenter for easier
59 integration into apps. See
60 https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/android/README.md
61 for more details.
62* RNNCells' variable names have been renamed for consistency with Keras layers.
63 Specifically, the previous variable names "weights" and "biases" have
64 been changed to "kernel" and "bias", respectively.
65 This may cause backward incompatibility with regard to your old
66 checkpoints containing such RNN cells, in which case you can use the tool
67 [checkpoint_convert script](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/rnn/python/tools/checkpoint_convert.py)
68 to convert the variable names in your old checkpoints.
69* Many of the RNN functions and classes that were in the `tf.nn` namespace
70 before the 1.0 release and which were moved to `tf.contrib.rnn` have now
71 been moved back to the core namespace. This includes
72 `RNNCell`, `LSTMCell`, `GRUCell`, and a number of other cells. These
73 now reside in `tf.nn.rnn_cell` (with aliases in `tf.contrib.rnn` for backwards
74 compatibility). The original `tf.nn.rnn` function is now `tf.nn.static_rnn`,
75 and the bidirectional static and state saving static rnn functions are also
76 now back in the `tf.nn` namespace.
77
78 Notable exceptions are the `EmbeddingWrapper`, `InputProjectionWrapper` and
79 `OutputProjectionWrapper`, which will slowly be moved to deprecation
80 in `tf.contrib.rnn`. These are inefficient wrappers that should often
81 be replaced by calling `embedding_lookup` or `layers.dense` as pre- or post-
82 processing of the rnn. For RNN decoding, this functionality has been replaced
83 with an alternative API in `tf.contrib.seq2seq`.
84* Intel MKL Integration (https://software.intel.com/en-us/articles/tensorflow-optimizations-on-modern-intel-architecture). Intel developed a number of
85 optimized deep learning primitives: In addition to matrix multiplication and
86 convolution, these building blocks include:
87 Direct batched convolution
88 Pooling: maximum, minimum, average
89 Normalization: LRN, batch normalization
90 Activation: rectified linear unit (ReLU)
91 Data manipulation: multi-dimensional transposition (conversion), split,
92 concat, sum and scale.
93
94## Deprecations
95
96* TensorFlow 1.2 may be the last time we build with cuDNN 5.1. Starting with
97 TensorFlow 1.3, we will try to build all our prebuilt binaries with cuDNN 6.0.
98 While we will try to keep our source code compatible with cuDNN 5.1, it will
99 be best effort.
100
101## Breaking Changes to the API
102* `org.tensorflow.contrib.android.TensorFlowInferenceInterface` now throws exceptions where possible and has simplified method signatures.
103
104## Changes to contrib APIs
105* Added `tf.contrib.util.create_example`.
106* Added bilinear interpolation to `tf.contrib.image`.
107* Add `tf.contrib.stateless` for random ops with custom seed control.
108* MultivariateNormalFullCovariance added to contrib/distributions/
109* tensorflow/contrib/rnn undergoes RNN cell variable renaming for
110 consistency with Keras layers. Specifically, the previous variable names
111 "weights" and "biases" are changed to "kernel" and "bias", respectively.
112 This may cause backward incompatibility with regard to your old
113 checkpoints containing such RNN cells, in which case you can use the
114 [checkpoint_convert script](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/rnn/python/tools/checkpoint_convert.py)
115 to convert the variable names in your old checkpoints.
Derek Murray4e69ce82017-04-11 10:31:27 -0800116
Vijay Vasudevan15f32d92017-05-10 12:31:10 -0700117## Bug Fixes and Other Changes
118* In python, `Operation.get_attr` on type attributes returns the Python DType
119 version of the type to match expected get_attr documentation rather than the
120 protobuf enum.
Jonathan Hseu1b5235f2017-06-09 10:37:18 -0700121* tensorflow/contrib/rnn undergoes RNN cell variable renaming for
122 consistency with Keras layers. Specifically, the previous variable names
123 "weights" and "biases" are changed to "kernel" and "bias", respectively.
124* Changed MIN_SDK version to 8.0 when building iOS libraries.
125* Fixed LIBXSMM integration.
126* Make decode_jpeg/decode_png/decode_gif handle all formats, since users frequently try to decode an image as the wrong type.
127* Improve implicit broadcasting lowering.
128* Improving stability of GCS/Bigquery clients by a faster retrying of stale transmissions.
129* Remove OpKernelConstruction::op_def() as part of minimizing proto dependencies.
130* VectorLaplaceDiag distribution added.
131* Android demo no longer requires libtensorflow_demo.so to run (libtensorflow_inference.so still required)
132* Added `categorical_column_with_vocabulary_file`.
133* Introduce ops for batching/unbatching tensors across Session::Run() calls.
134* Add tf.log_sigmoid(x) = tf.log(tf.sigmoid(x)) = -tf.nn.softplus(-x).
135* Changed hooks lists to immutable tuples, and now allow any iterable for the associated arguments.
136* Introduce TFDecorator.
137* Added an Mfcc op for speech feature generation.
138* Improved DirectSession::Run() overhead and error checking. Feeding a value of the wrong type will now synchronously raise an INVALID_ARGUMENT error instead of asynchronously raising an INTERNAL error. Code that depends on the (undefined) behavior when feeding a tensor of the wrong type may need to be updated.
139* Added unreduced NONE, and reduced MEAN options for losses. Removed "WEIGHTED_" prefix from other Reduction constants.
140* assertAllClose now handles dicts.
141* Added Gmock matcher for HloInstructions.
142* Add var name to errors on variable restore.
143* Added an AudioSpectrogram op for audio feature generation.
144* Added `reduction` arg to losses.
145* `tf.placeholder` can represent scalar shapes and partially known.
146* Remove estimator_spec(mode) argument.
147* Added an AudioSpectrogram op for audio feature generation.
148* TensorBoard disables all runs by default if there are more than 40 runs.
149* Removed old doc generator code.
150* GCS file system integration now supports domain buckets, e.g gs://bucket.domain.com/path.
151* Add `tf.summary.text` for outputting text to TensorBoard.
152* The "run" command of tfdbg's command-line interface now supports filtering of tensors by node name, op type and tensor dtype.
153* `tf.string_to_number` now supports int64 and float64 outputs.
154
155## Thanks to our Contributors
156
157This release contains contributions from many people at Google, as well as:
158
1594F2E4A2E, Aaron Schumacher, Abhi Agg, admcrae, Adriano Carmezim, Adrià Arrufat,
160agramesh1, Akimitsu Seo, Alan Mosca, Alex Egg, Alex Rothberg, Alexander Heinecke,
161Alexander Matyasko, Alexandr Baranezky, Alexandre Caulier, Ali Siddiqui, Anand Venkat,
162Andrew Hundt, Androbin, Anmol Sharma, Arie, Arno Leist, Arron Cao, AuréLien Geron, Bairen Yi,
163Beomsu Kim, Carl Thomé, cfperez, Changming Sun, Corey Wharton, critiqjo, Dalei Li, Daniel
164Rasmussen, Daniel Trebbien, DaríO Hereñú, David Eng, David Norman, David Y. Zhang, Davy Song, ddurham2,
165Deepak Subburam, Dmytro Kyrychuk, Dominic Rossi, Dominik SchlöSser, Dustin Tran,
166Eduardo Pinho, Egil Martinsson, Elliot Saba, Eric Bigelow, Erik Smistad, Evan Klitzke,
167Fabrizio Milo, Falcon Dai, Fei Gao, FloopCZ, Fung Lam, Gautam, GBLin5566, Greg Peatfield,
168Gu Wang, Guenther Schmuelling, Hans Pabst, Harun Gunaydin, Huaizheng, Ido Shamay, Ikaro
169Silva, Ilya Edrenkin, Immexxx, James Mishra, Jamie Cooke, Jay Young, Jayaram Bobba,
170Jianfei Wang, jinghua2, Joey Meyer, John Maidens, Jonghoon Jin, Julian Villella,
171Jun Kim, Jun Shi, Junwei Pan, jyegerlehner, Karan Desai, Karel Van De Plassche,
172Kb Sriram, KhabarlakKonstantin, Koan-Sin Tan, krivard, Kwotsin, Leandro Gracia Gil,
173Li Chen, Liangliang He, Louie Helm, lspvic, Luiz Henrique Soares, LáSzló Csomor,
174Mark Wong, Mathew Wicks, Matthew Rahtz, Maxwell Paul Brickner, Michael Hofmann, Miguel
175Flores Ruiz De Eguino, MikeTam1021, Mortada Mehyar, Mycosynth, Namnamseo,
176Nate Harada, Neven Miculinic, Nghia Tran, Nick Lyu, Niranjan Hasabnis, Nishidha, Oleksii
177Kuchaiev, Oyesh Mann Singh, Panmari, Patrick, Paul Van Eck, Piyush Chaudhary, Quim Llimona,
178Raingo, Richard Davies, Ruben Vereecken, Sahit Chintalapudi, Sam Abrahams, Santiago Castro,
179Scott Sievert, Sean O'Keefe, Sebastian Schlecht, Shane, Shubhankar Deshpande, Spencer Schaber,
180Sunyeop Lee, t13m, td2014, Thomas H. P. Andersen, Toby Petty, Umang Mehta,
181Vadim Markovtsev, Valentin Iovene, Vincent Zhao, Vit Stepanovs, Vivek Rane, Vu Pham, wannabesrevenge,
182weipingpku, wuhaixutab, wydwww, Xiang Gao, Xiaolin Lin, xiaoyaozhuzi, Yaroslav Bulatov, Yi Liu,
183Yoshihiro Sugi, Yuan (Terry) Tang, Yuming Wang, Yuxin Wu, Zader Zheng, Zhaojun Zhang, zhengjiajin,
184ZhipengShen, Ziming Dong, zjj2wry
185
186We are also grateful to all who filed issues or helped resolve them, asked and
187answered questions, and were part of inspiring discussions.
Derek Murray4e69ce82017-04-11 10:31:27 -0800188
A. Unique TensorFlowerccbc8992017-04-04 16:10:08 -0800189# Release 1.1.0
190
191## Major Features and Improvements
192* Added Java API support for Windows.
193* Added `tf.spectral` module. Moved existing FFT ops to `tf.spectral` while
194 keeping an alias in the old location (`tf.*`).
195* Added 1D, 2D and 3D Fourier transform ops for real signals to `tf.spectral`.
196* Added a `tf.bincount` function.
197* Added Keras 2 API to contrib.
198* Added a new lightweight queue-like object - `RecordInput`.
199* Added `tf.contrib.image.compose_transforms` function.
200* Bring `tf.estimator.*` into the API. Non-deprecated functionality from `tf.contrib.learn.Estimator` is moved to `tf.estimator.Estimator` with cosmetic changes.
201* Docker images: TF images on gcr.io and Docker Hub are upgraded to ubuntu:16.04.
202* Added the following features to TensorFlow Debugger (tfdbg):
203 * Ability to inspect Python source file against TF ops and tensors (command `print_source` / `ps`)
204 * New navigation bar in Curses-based UI
205 * NodeStepper (command `invoke_stepper`) now uses intermediate tensor dumps. It also uses `TensorHandles` as direct feeds during successive `cont` calls for improved performance and reduced memory consumption.
Rohan Jaind0697152017-04-07 08:29:08 -0800206* Initial release of installation guides for Java, C, and Go.
Shanqing Cai32694232017-04-22 06:08:17 -0800207* Added Text Dashboard to TensorBoard.
A. Unique TensorFlowerccbc8992017-04-04 16:10:08 -0800208
209## Deprecations
210
211* TensorFlow 1.1.0 will be the last time we release a binary with Mac GPU support. Going forward, we will stop testing on Mac GPU systems. We continue to welcome patches that maintain Mac GPU support, and we will try to keep the Mac GPU build working.
212
213## Changes to contrib APIs
214* The behavior of RNNCells is now stricter due to the transition towards making RNNCells act more like Keras layers.
215 * If an RNNCell is used twice in two different variable scopes, an error is raised describing how to avoid this behavior.
216 * If an RNNCell is used in a variable scope with existing conflicting variables, an error is raised showing that the RNNCell must be constructed with argument `reuse=True`.
217* Deprecated contrib/distributions `pmf`, `pdf`, `log_pmf`, `log_pdf`.
218* Moved `bayesflow.special_math` to distributions.
219* `tf.contrib.tensor_forest.python.tensor_forest.RandomForestDeviceAssigner` removed.
220* Changed some MVN classes and parameters:
221 * `tf.contrib.distributions.MultivariateNormalFull` replaced by `tf.contrib.distributions.MultivariateNormalTriL`.
222 * `tf.contrib.distributions.MultivariateNormalCholesky` replaced by `tf.contrib.distributions.MultivariateNormalTriL`
223 * `tf.contrib.distributions.MultivariateNormalDiagWithSoftplusStDev` replaced
224 by `tf.contrib.distributions.MultivariateNormalDiagWithSoftplusScale`
225 * `tf.contrib.distributions.MultivariateNormalDiag` arguments changed from `mu`, `diag_stddev` to `log`, `scale_diag`.
226 * `tf.contrib.distributions.MultivariateNormalDiagPlusVDVT` removed.
227 * `tf.contrib.distributions.MultivariateNormalDiagPlusLowRank` added.
228
229## Bug Fixes and Other Changes
230* Java: Support for loading models exported using the SavedModel API (courtesy @EronWright).
231* Go: Added support for incremental graph execution.
232* Fix a bug in the WALS solver when single-threaded.
233* Added support for integer sparse feature values in `tf.contrib.layers.sparse_column_with_keys`.
234* Fixed `tf.set_random_seed(0)` to be deterministic for all ops.
235* Stability improvements for the GCS file system support.
236* Improved TensorForest performance.
237* Added support for multiple filename globs in `tf.matching_files`.
238* `LogMessage` now includes a timestamp as beginning of a message.
239* Added MultiBox person detector example standalone binary.
240* Android demo: Makefile build functionality added to build.gradle to fully support building TensorFlow demo in Android on Windows.
241* Android demo: read MultiBox priors from txt file rather than protobuf.
242* Added colocation constraints to `StagingArea`.
243* `sparse_matmul_op` reenabled for Android builds.
244* Restrict weights rank to be the same as the broadcast target, to avoid ambiguity on broadcast rules.
245* Upgraded libxsmm to 1.7.1 and applied other changes for performance and memory usage.
246* Fixed bfloat16 integration of LIBXSMM sparse mat-mul.
247* Improved performance and reduce memory usage by allowing ops to forward input buffers to output buffers and perform computations in-place.
248* Improved the performance of CPU assignment for strings.
249* Speed up matrix * vector multiplication and matrix * matrix with unknown shapes.
250* C API: Graph imports now support input remapping, control dependencies, and returning imported nodes (see `TF_GraphImportGraphDefWithReturnOutputs()`)
251* Multiple C++ API updates.
252* Multiple TensorBoard updates including:
253 * Users can now view image summaries at various sampled steps (instead of just the last step).
254 * Bugs involving switching runs as well as the image dashboard are fixed.
255 * Removed data download links from TensorBoard.
256 * TensorBoard uses a relative data directory, for easier embedding.
257 * TensorBoard automatically ignores outliers for domain calculation, and formats proportional values consistently.
258* Multiple tfdbg bug fixes:
259 * Fixed Windows compatibility issues.
260 * Command history now persists across runs.
Rohan Jaind0697152017-04-07 08:29:08 -0800261 * Bug fix in graph validation related to `tf.while_loops`.
262* Java Maven fixes for bugs with Windows installation.
Shanqing Cai32694232017-04-22 06:08:17 -0800263* Backport fixes and improvements from external keras.
264* Keras config file handling fix.
A. Unique TensorFlowerccbc8992017-04-04 16:10:08 -0800265
266## Thanks to our Contributors
267
268This release contains contributions from many people at Google, as well as:
269
270A. Besir Kurtulmus, Adal Chiriliuc, @akash, Alec-Desouza, Alex Rothberg, Alex
Rohan Jaind0697152017-04-07 08:29:08 -0800271Sergeev, Alexander Heinecke, Allen Guo, Andreas Madsen, Ankesh Anand, Anton
A. Unique TensorFlowerccbc8992017-04-04 16:10:08 -0800272Loss, @Aravind, @Arie, Ashutosh Das, AuréLien Geron, Bairen Yi, @bakunyo, Ben
Rohan Jaind0697152017-04-07 08:29:08 -0800273Visser, Brady Zhou, Calpa Liu, Changming Sun, Chih Cheng Liang, Christopher
274Berner, Clark Zinzow, @Conchylicultor, Dan Ellis, Dan J, Dan Jarvis, Daniel
275Ylitalo, Darren Garvey, David Norman, David Truong, @DavidNorman, Dimitar
276Pavlov, Dmitry Persiyanov, @Eddie, @elirex, Erfan Noury, Eron Wright, Evgeny
277Mazovetskiy, Fabrizio (Misto) Milo, @fanlu, Fisher Coder, Florian Courtial,
278Franck Dernoncourt, Gagan Goel, Gao, Xiang, @Gautam, Gefu Tang, @guilherme,
279@guschmue, Hannah Provenza, Hans Pabst, @hartb, Hsiao Yi, Huazuo Gao, Igor
280ChorążEwicz, Ivan Smirnov, Jakub Kolodziejczyk, Jason Gavris, Jason Morton, Jay
281Young, Jayaram Bobba, Jeremy Sawruk, Jiaming Liu, Jihun Choi, @jiqiu, Joan Thibault,
282John C F, Jojy George Varghese, Jon Malmaud, Julian Berman, Julian Niedermeier,
283Junpeng Lao, Kai Sasaki, @Kankroc, Karl Lessard, Kyle Bostelmann, @Lezcano, Li
284Yi, Luo Yun, @lurker, Mahmoud-Abuzaina, Mandeep Singh, Marek Kolodziej, Mark
285Szepieniec, Martial Hue, Medhat Omr, Memo Akten, Michael Gharbi, MichaëL Defferrard,
286Milan Straka, @MircoT, @mlucool, Muammar Ibn Faisal, Nayana Thorat, @nghiattran,
287Nicholas Connor, Nikolaas Steenbergen, Niraj Patel, Niranjan Hasabnis, @Panmari,
288Pavel Bulanov, Philip Pries Henningsen, Philipp Jund, @polonez, Prayag Verma, Rahul
289Kavi, Raphael Gontijo Lopes, @rasbt, Raven Iqqe, Reid Pryzant, Richard Shin, Rizwan
290Asif, Russell Kaplan, Ryo Asakura, RüDiger Busche, Saisai Shao, Sam Abrahams, @sanosay,
291Sean Papay, @seaotterman, @selay01, Shaurya Sharma, Sriram Narayanamoorthy, Stefano
292Probst, @taknevski, @tbonza, @teldridge11, Tim Anglade, Tomas Reimers, Tomer Gafner,
293Valentin Iovene, Vamsi Sripathi, Viktor Malyi, Vit Stepanovs, Vivek Rane, Vlad Firoiu,
294@wangg12, @will, Xiaoyu Tao, Yaroslav Bulatov, Yi Liu, Yuan (Terry) Tang, @Yufeng,
295Yuming Wang, Yuxin Wu, Zafar Takhirov, Ziming Dong
A. Unique TensorFlowerccbc8992017-04-04 16:10:08 -0800296
297We are also grateful to all who filed issues or helped resolve them, asked and
298answered questions, and were part of inspiring discussions.
299
300
Martin Wickebc456e32017-03-23 12:31:16 -0800301# Release 1.0.1
302
303## Bug Fixes and Other Changes
304* Change GraphConstructor to not increase the version when importing, but instead take the min of all versions.
305* Google Cloud Storage fixes.
306* Removed `tf.core` and `tf.python` modules from the API. These were never intended to be exposed. Please use the same objects through top-level `tf` module instead.
307
Benoit Steiner639b4e72017-02-08 09:25:09 -0800308# Release 1.0.0
309
310## Major Features and Improvements
311* XLA (experimental): initial release of [XLA](https://www.tensorflow.org/versions/master/experimental/xla/), a domain-specific compiler for TensorFlow graphs, that targets CPUs and GPUs.
312* TensorFlow Debugger (tfdbg): command-line interface and API.
313* New python 3 docker images added.
314* Made pip packages pypi compliant. TensorFlow can now be installed by `pip
315 install tensorflow` command.
316* Several python API calls have been changed to resemble NumPy more closely.
317* Android: person detection + tracking demo implementing Scalable Object
318 Detection using Deep Neural Networks.
319* New (experimental) [Java API](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/java).
320* Add new Android image stylization demo based on "A Learned Representation For Artistic Style", and add YOLO object detector support.
A. Unique TensorFlower79228c72016-10-19 16:25:46 -0800321
322## Breaking Changes to the API
Benoit Steiner639b4e72017-02-08 09:25:09 -0800323To help you upgrade your existing TensorFlow Python code to match the API changes below, we have prepared a [conversion script](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/tools/compatibility).
324* TensorFlow/models have been moved to a separate github repository.
Andrew Sellefcc39232016-11-22 10:04:37 -0800325* Division and modulus operators (/, //, %) now match Python (flooring)
Andrew Sellef0a6d1e2016-12-13 16:01:12 -0800326 semantics. This applies to `tf.div` and `tf.mod` as well. To obtain forced
327 integer truncation based behaviors you can use `tf.truncatediv`
328 and `tf.truncatemod`.
329* `tf.divide()` is now the recommended division function. `tf.div()` will
330 remain, but its semantics do not respond to Python 3 or `from future`
331 mechanisms.
332* tf.reverse() now takes indices of axes to be reversed. E.g.
333 `tf.reverse(a, [True, False, True])` must now be written as
334 `tf.reverse(a, [0, 2])`. `tf.reverse_v2()` will remain until 1.0 final.
335* `tf.mul`, `tf.sub` and `tf.neg` are deprecated in favor of `tf.multiply`,
336 `tf.subtract` and `tf.negative`.
A. Unique TensorFlower44977ae2016-12-15 18:36:06 -0800337* `tf.pack` and `tf.unpack` are deprecated in favor of `tf.stack` and
338 `tf.unstack`.
339* `TensorArray.pack` and `TensorArray.unpack` are getting deprecated in favor of
340 `TensorArray.stack` and `TensorArray.unstack`.
Andrew Sellef0a6d1e2016-12-13 16:01:12 -0800341* The following Python functions have had their arguments changed to use `axis`
342 when referring to specific dimensions. We have kept the old keyword arguments
343 for compatibility currently, but we will be removing them well before the
344 final 1.0.
345 * `tf.argmax`: `dimension` becomes `axis`
346 * `tf.argmin`: `dimension` becomes `axis`
347 * `tf.count_nonzero`: `reduction_indices` becomes `axis`
348 * `tf.expand_dims`: `dim` becomes `axis`
349 * `tf.reduce_all`: `reduction_indices` becomes `axis`
350 * `tf.reduce_any`: `reduction_indices` becomes `axis`
351 * `tf.reduce_join`: `reduction_indices` becomes `axis`
352 * `tf.reduce_logsumexp`: `reduction_indices` becomes `axis`
353 * `tf.reduce_max`: `reduction_indices` becomes `axis`
354 * `tf.reduce_mean`: `reduction_indices` becomes `axis`
355 * `tf.reduce_min`: `reduction_indices` becomes `axis`
356 * `tf.reduce_prod`: `reduction_indices` becomes `axis`
357 * `tf.reduce_sum`: `reduction_indices` becomes `axis`
358 * `tf.reverse_sequence`: `batch_dim` becomes `batch_axis`, `seq_dim` becomes `seq_axis`
359 * `tf.sparse_concat`: `concat_dim` becomes `axis`
360 * `tf.sparse_reduce_sum`: `reduction_axes` becomes `axis`
361 * `tf.sparse_reduce_sum_sparse`: `reduction_axes` becomes `axis`
362 * `tf.sparse_split`: `split_dim` becomes `axis`
363* `tf.listdiff` has been renamed to `tf.setdiff1d` to match NumPy naming.
364* `tf.inv` has been renamed to be `tf.reciprocal` (component-wise reciprocal)
365 to avoid confusion with `np.inv` which is matrix inversion
366* tf.round now uses banker's rounding (round to even) semantics to match NumPy.
367* `tf.split` now takes arguments in a reversed order and with different
368 keywords. In particular, we now match NumPy order as
369 `tf.split(value, num_or_size_splits, axis)`.
370* `tf.sparse_split` now takes arguments in reversed order and with different
371 keywords. In particular we now match NumPy order as
372 `tf.sparse_split(sp_input, num_split, axis)`. NOTE: we have temporarily
373 made `tf.sparse_split` require keyword arguments.
Benoit Steiner639b4e72017-02-08 09:25:09 -0800374* `tf.concat` now takes arguments in reversed order and with different keywords. In particular we now match NumPy order as `tf.concat(values, axis, name)`.
375* `tf.image.decode_jpeg` by default uses the faster DCT method, sacrificing
Vijay Vasudevanfebdc1d2016-12-19 21:04:00 -0800376 a little fidelity for improved speed. One can revert to the old
Benoit Steiner639b4e72017-02-08 09:25:09 -0800377 behavior by specifying the attribute `dct_method='INTEGER_ACCURATE'`.
A. Unique TensorFloweredb095c2016-12-20 14:37:03 -0800378* `tf.complex_abs` has been removed from the Python interface. `tf.abs`
379 supports complex tensors and should be used instead.
A. Unique TensorFlowerfac4a352017-01-20 13:14:02 -0800380* In the C++ API (in tensorflow/cc), Input, Output, etc. have moved
381 from the tensorflow::ops namespace to tensorflow.
Benoit Steiner639b4e72017-02-08 09:25:09 -0800382* Template.`var_scope` property renamed to `.variable_scope`
383* SyncReplicasOptimizer is removed and SyncReplicasOptimizerV2 renamed to SyncReplicasOptimizer.
384* `tf.zeros_initializer()` and `tf.ones_initializer()` now return a callable
385 that must be called with initializer arguments, in your code replace
386 `tf.zeros_initializer` with `tf.zeros_initializer()`.
387* `SparseTensor.shape` has been renamed to `SparseTensor.dense_shape`. Same for
388 `SparseTensorValue.shape`.
389* Replace tf.scalar_summary, tf.histogram_summary, tf.audio_summary, tf.image_summary with tf.summary.scalar, tf.summary.histogram, tf.summary.audio, tf.summary.image, respectively. The new summary ops take name rather than tag as their first argument, meaning summary ops now respect TensorFlow name scopes.
390* Replace tf.train.SummaryWriter and tf.train.SummaryWriterCache with tf.summary.FileWriter and tf.summary.FileWriterCache.
391* Removes RegisterShape from public API. Use C++ shape function registration
392 instead.
393* Deprecated `_ref` dtypes from the python API.
394* In the C++ API (in tensorflow/cc), Input, Output, etc. have moved
395 from the tensorflow::ops namespace to tensorflow.
396* Change arg order for `{softmax,sparse_softmax,sigmoid}_cross_entropy_with_logits` to be (labels, predictions), and force use of named args.
A. Unique TensorFlowerccbc8992017-04-04 16:10:08 -0800397* tf.nn.rnn_cell.* and most functions in tf.nn.rnn.* (with the exception of dynamic_rnn and raw_rnn) are temporarily in tf.contrib.rnn. They will be moved back into core for TF 1.2.
Martin Wickebc456e32017-03-23 12:31:16 -0800398* `tf.nn.sampled_softmax_loss` and `tf.nn.nce_loss` have both changed their API such that you need to switch the `inputs, labels` to `labels, inputs` parameters.
399* The shape keyword argument of the `SparseTensor` constructor changes its name to `dense_shape` between Tensorflow 0.12 and Tensorflow 1.0.
Benoit Steiner639b4e72017-02-08 09:25:09 -0800400
401## Bug Fixes and Other Changes
Andrew Harp3e975ea2017-03-01 17:59:22 -0800402* Numerous C++ API updates.
Benoit Steiner639b4e72017-02-08 09:25:09 -0800403* New op: `parallel_stack`.
404* Introducing common tf io compression options constants for
405 RecordReader/RecordWriter.
406* Add `sparse_column_with_vocabulary_file`, to specify a feature column that
407 transform string features to IDs, where the mapping is defined by a vocabulary
408 file.
409* Added `index_to_string_table` which returns a lookup table that maps indices to
410 strings.
411* Add `string_to_index_table`, which returns a lookup table that matches strings
412 to indices.
413* Add a `ParallelForWithWorkerId` function.
414* Add `string_to_index_table`, which returns a lookup table that matches strings
415 to indices.
416* Support restore session from checkpoint files in v2 in `contrib/session_bundle`.
417* Added a tf.contrib.image.rotate function for arbitrary angles.
418* Added `tf.contrib.framework.filter_variables` as a convenience function to
419 filter lists of variables based on regular expressions.
420* `make_template()` takes an optional `custom_getter_ param`.
421* Added comment about how existing directories are handled by
422 `recursive_create_dir`.
423* Added an op for QR factorizations.
424* Divides and mods in Python API now use flooring (Python) semantics.
425* Android: pre-built libs are now built nightly.
426* Android: cmake/gradle build for TensorFlow Inference library under
427 `contrib/android/cmake`
428* Android: Much more robust Session initialization code.
429* Android: TF stats now exposed directly in demo and log when debug mode is
430 active
431* Android: new/better README.md documentation
432* saved_model is available as `tf.saved_model`.
433* Empty op is now stateful.
434* Improve speed of scatter_update on the cpu for ASSIGN operations.
435* Change `reduce_join` to treat `reduction_indices` in the same way as other `reduce_` ops.
436* Move `TensorForestEstimator` to `contrib/tensor_forest`.
437* Enable compiler optimizations by default and allow configuration in configure.
438* `tf.divide` now honors the name field.
439* Make metrics weight broadcasting more strict.
440* Add new queue-like `StagingArea` and new ops: `stage` and `unstage`.
Andrew Harp3e975ea2017-03-01 17:59:22 -0800441* Enable inplace update ops for strings on CPU. Speed up string concat.
Benoit Steiner639b4e72017-02-08 09:25:09 -0800442
443## Thanks to our Contributors
444
445This release contains contributions from many people at Google, as well as:
446
447Aaron Hu, Abhishek Aggarwal, Adam Michael, Adriano Carmezim, @AfirSraftGarrier,
448Alexander Novikov, Alexander Rosenberg Johansen, Andrew Gibiansky, Andrew Hundt,
449Anish Shah, Anton Loss, @b0noI, @BoyuanJiang, Carl Thomé, Chad Kennedy, Comic
450Chang, Connor Braa, Daniel N. Lang, Daniel Trebbien,
451@danielgordon10, Darcy Liu, Darren Garvey, Dmitri Lapin, Eron Wright, Evan
452Cofer, Fabrizio Milo, Finbarr Timbers, Franck Dernoncourt, Garrett Smith,
453@guschmue, Hao Wei, Henrik Holst, Huazuo Gao, @Ian, @Issac, Jacob Israel,
454Jangsoo Park, Jin Kim, Jingtian Peng, John Pope, Kye Bostelmann, Liangliang He,
455Ling Zhang, Luheng He, Luke Iwanski, @lvli, Michael Basilyan, Mihir Patel,
456Mikalai Drabovich, Morten Just, @newge, Nick Butlin, Nishant Shukla,
457Pengfei Ni, Przemyslaw Tredak, @rasbt, @Ronny, Rudolf Rosa, @RustingSword,
458Sam Abrahams, Sam Putnam, @SeongAhJo, Shi Jiaxin, @skavulya, Steffen MüLler,
459@TheUSER123, @tiriplicamihai, @vhasanov, Victor Costan, Vit Stepanovs,
460Wangda Tan, Wenjian Huang, Xingdong Zuo, Yaroslav Bulatov, Yota Toyama,
461Yuan (Terry) Tang, Yuxin Wu
462
463We are also grateful to all who filed issues or helped resolve them, asked and
464answered questions, and were part of inspiring discussions.
465
Andrew Harp1cb96892016-12-08 20:05:49 -0800466
467# Release 0.12.0
468
469## Major Features and Improvements
470
471* TensorFlow now builds and runs on Microsoft Windows (tested on Windows 10,
472 Windows 7, and Windows Server 2016). Supported languages include Python (via a
473 pip package) and C++. CUDA 8.0 and cuDNN 5.1 are supported for GPU
474 acceleration. Known limitations include: It is not currently possible to load
475 a custom op library. The GCS and HDFS file systems are not currently
476 supported. The following ops are not currently implemented:
Martin Wicke2e4869a2016-12-14 15:46:53 -0800477 Dequantize, QuantizeAndDequantize, QuantizedAvgPool,
Andrew Harp1cb96892016-12-08 20:05:49 -0800478 QuantizedBatchNomWithGlobalNormalization, QuantizedBiasAdd, QuantizedConcat,
479 QuantizedConv2D, QuantizedMatmul, QuantizedMaxPool,
480 QuantizeDownAndShrinkRange, QuantizedRelu, QuantizedRelu6, QuantizedReshape,
481 QuantizeV2, RequantizationRange, and Requantize.
482* Go: Experimental API in Go to create and execute graphs
483 (https://godoc.org/github.com/tensorflow/tensorflow/tensorflow/go)
484* New checkpoint format becomes the default in `tf.train.Saver`. Old V1
485 checkpoints continue to be readable; controlled by the `write_version`
486 argument, `tf.train.Saver` now by default writes out in the new V2
487 format. It significantly reduces the peak memory required and latency
488 incurred during restore.
489* Added a new library for library of matrix-free (iterative) solvers for linear
490 equations, linear least-squares, eigenvalues and singular values in
491 tensorflow/contrib/solvers. Initial version has lanczos bidiagonalization,
492 conjugate gradients and CGLS.
493* Added gradients for `matrix_solve_ls` and `self_adjoint_eig`.
494* Large cleanup to add second order gradient for ops with C++ gradients and
495 improve existing gradients such that most ops can now be differentiated
496 multiple times.
497* Added a solver for ordinary differential equations,
498 `tf.contrib.integrate.odeint`.
499* New contrib module for tensors with named axes, `tf.contrib.labeled_tensor`.
500* Visualization of embeddings in TensorBoard.
501
502## Breaking Changes to the API
503
A. Unique TensorFlower79228c72016-10-19 16:25:46 -0800504* `BusAdjacency` enum replaced with a protocol buffer `DeviceLocality`. PCI bus
Benoit Steiner639b4e72017-02-08 09:25:09 -0800505 indexing now starts from 1 instead of 0, and `bus_id==0` is used where
506 previously `BUS_ANY` was used.
Jonathan Hseu879e0ac2016-11-04 11:53:50 -0800507* `Env::FileExists` and `FileSystem::FileExists` now return a tensorflow::Status
Vijay Vasudevan93a975e2017-02-17 17:05:49 -0800508 instead of a bool. Any callers to this function can be converted to a bool
Jonathan Hseu879e0ac2016-11-04 11:53:50 -0800509 by adding .ok() to the call.
Asim Shankare580e722016-11-09 08:21:50 -0800510* The C API type `TF_SessionWithGraph` has been renamed to `TF_Session`,
511 indicating its preferred use in language bindings for TensorFlow.
512 What was previously `TF_Session` has been renamed to `TF_DeprecatedSession`.
Benoit Steiner639b4e72017-02-08 09:25:09 -0800513* Renamed `TF_Port` to `TF_Output` in the C API.
Andrew Harp1cb96892016-12-08 20:05:49 -0800514* Removes RegisterShape from public API. Use C++ shape function registration instead.
515 indexing now starts from 1 instead of 0, and `bus_id==0` is used where
516 previously `BUS_ANY` was used.
Eugene Brevdo7a7c1eb2016-11-29 09:38:37 -0800517* Most RNN cells and RNN functions now use different variable scopes to be
518 consistent with layers (`tf.contrib.layers`). This means old checkpoints
519 written using this code will not load after this change without providing
520 `Saver` a list of variable renames. Examples of variable scope changes
521 include `RNN` -> `rnn` in `tf.nn.rnn`, `tf.nn.dynamic_rnn` and moving from
522 `Linear/Matrix` -> `weights` and `Linear/Bias` -> `biases` in most RNN cells.
A. Unique TensorFlowerfe558b02016-11-30 11:51:57 -0800523* Deprecated tf.select op. tf.where should be used instead.
Martin Wickea7cd5f62016-12-14 15:22:55 -0800524* `SparseTensor.shape` has been renamed to `SparseTensor.dense_shape`. Same for
525 `SparseTensorValue.shape`.
Andrew Harp1cb96892016-12-08 20:05:49 -0800526* `Env::FileExists` and `FileSystem::FileExists` now return a
Vijay Vasudevan93a975e2017-02-17 17:05:49 -0800527 `tensorflow::Status` instead of a bool. Any callers to this function can be
Andrew Harp1cb96892016-12-08 20:05:49 -0800528 converted to a bool by adding `.ok()` to the call.
529* C API: Type `TF_SessionWithGraph` has been renamed to `TF_Session`, indicating
530 its preferred use in language bindings for TensorFlow. What was previously
531 `TF_Session` has been renamed to `TF_DeprecatedSession`.
532* C API: Renamed `TF_Port` to `TF_Output`.
533* C API: The caller retains ownership of `TF_Tensor` objects provided to
534 `TF_Run`, `TF_SessionRun`, `TF_SetAttrTensor` etc.
535* Renamed `tf.image.per_image_whitening()` to
536 `tf.image.per_image_standardization()`
537* Move Summary protobuf constructors to `tf.summary` submodule.
538* Deprecate `histogram_summary`, `audio_summary`, `scalar_summary`,
539 `image_summary`, `merge_summary`, and `merge_all_summaries`.
540* Combined `batch_*` and regular version of linear algebra and FFT ops. The
541 regular op now handles batches as well. All `batch_*` Python interfaces were
542 removed.
543* `tf.all_variables`, `tf.VARIABLES` and `tf.initialize_all_variables` renamed
544 to `tf.global_variables`, `tf.GLOBAL_VARIABLES` and
545 `tf.global_variables_initializer` respectively.
A. Unique TensorFlower46d2c282017-01-02 22:19:48 -0800546* `tf.zeros_initializer()` and `tf.ones_initializer()` now return a callable
547 that must be called with initializer arguments, in your code replace
Benoit Steiner639b4e72017-02-08 09:25:09 -0800548 `tf.zeros_initializer` with `tf.zeros_initializer()`
Andrew Harp1cb96892016-12-08 20:05:49 -0800549
550## Bug Fixes and Other Changes
551
552* Use threadsafe version of `lgamma` function.
553* Fix `tf.sqrt` handling of negative arguments.
554* Fixed bug causing incorrect number of threads to be used for multi-threaded
555 benchmarks.
556* Performance optimizations for `batch_matmul` on multi-core CPUs.
557* Improve trace, `matrix_set_diag`, `matrix_diag_part` and their gradients to
558 work for rectangular matrices.
559* Support for SVD of complex valued matrices.
560
561
562## Thanks to our Contributors
563
564This release contains contributions from many people at Google, as well as:
565
566@a7744hsc, Abhi Agg, @admcrae, Adriano Carmezim, Aki Sukegawa, Alex Kendall,
567Alexander Rosenberg Johansen, @amcrae, Amlan Kar, Andre Simpelo, Andreas Eberle,
568Andrew Hundt, Arnaud Lenglet, @b0noI, Balachander Ramachandran, Ben Barsdell,
569Ben Guidarelli, Benjamin Mularczyk, Burness Duan, @c0g, Changming Sun,
570@chanis, Corey Wharton, Dan J, Daniel Trebbien, Darren Garvey, David Brailovsky,
571David Jones, Di Zeng, @DjangoPeng, Dr. Kashif Rasul, @drag0, Fabrizio (Misto)
572Milo, FabríCio Ceschin, @fp, @Ghedeon, @guschmue, Gökçen Eraslan, Haosdent
573Huang, Haroen Viaene, Harold Cooper, Henrik Holst, @hoangmit, Ivan Ukhov, Javier
574Dehesa, Jingtian Peng, Jithin Odattu, Joan Pastor, Johan Mathe, Johannes Mayer,
575Jongwook Choi, Justus Schwabedal, Kai Wolf, Kamil Hryniewicz, Kamran Amini,
576Karen Brems, Karl Lattimer, @kborer, Ken Shirriff, Kevin Rose, Larissa Laich,
577Laurent Mazare, Leonard Lee, Liang-Chi Hsieh, Liangliang He, Luke Iwanski,
578Marek Kolodziej, Moustafa Alzantot, @MrQianjinsi, @nagachika, Neil Han, Nick
579Meehan, Niels Ole Salscheider, Nikhil Mishra, @nschuc, Ondrej Skopek, OndřEj
580Filip, @OscarDPan, Pablo Moyano, Przemyslaw Tredak, @qitaishui, @Quarazy,
581@raix852, Philipp Helo, Sam Abrahams, @SriramRamesh, Till Hoffmann, Tushar Soni,
582@tvn, @tyfkda, Uwe Schmidt, Victor Villas, Vit Stepanovs, Vladislav Gubarev,
583@wujingyue, Xuesong Yang, Yi Liu, Yilei Yang, @youyou3, Yuan (Terry) Tang,
584Yuming Wang, Zafar Takhirov, @zhongyuk, Ziming Dong, @guotong1988
585
586We are also grateful to all who filed issues or helped resolve them, asked and
587answered questions, and were part of inspiring discussions.
A. Unique TensorFlower79228c72016-10-19 16:25:46 -0800588
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800589# Release 0.11.0
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -0800590
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800591## Major Features and Improvements
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -0800592
Vijay Vasudevan818993c2016-11-03 17:07:01 -0800593* CUDA 8 support.
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800594* cuDNN 5 support.
595* HDFS Support.
596* Adds Fused LSTM support via cuDNN 5 in `tensorflow/contrib/cudnn_rnn`.
597* Improved support for NumPy style basic slicing including non-1 strides,
598 ellipses, newaxis, and negative indices. For example complicated expressions
599 like `foo[1, 2:4, tf.newaxis, ..., :-3:-1, :]` are now supported. In addition
600 we have preliminary (non-broadcasting) support for sliced assignment to
601 variables. In particular one can write `var[1:3].assign([1,11,111])`.
602* 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.
603* Introducing `core/util/tensor_bundle` module: a module to efficiently
604 serialize/deserialize tensors to disk. Will be used in TF's new checkpoint
605 format.
606* Added tf.svd for computing the singular value decomposition (SVD) of dense
607 matrices or batches of matrices (CPU only).
608* Added gradients for eigenvalues and eigenvectors computed using
609 `self_adjoint_eig` or `self_adjoint_eigvals`.
610* Eliminated `batch_*` methods for most linear algebra and FFT ops and promoted
611 the non-batch version of the ops to handle batches of matrices.
612* Tracing/timeline support for distributed runtime (no GPU profiler yet).
613* C API gives access to inferred shapes with `TF_GraphGetTensorNumDims` and
614 `TF_GraphGetTensorShape`.
615* Shape functions for core ops have moved to C++ via
616 `REGISTER_OP(...).SetShapeFn(...)`. Python shape inference RegisterShape calls
617 use the C++ shape functions with `common_shapes.call_cpp_shape_fn`. A future
618 release will remove `RegisterShape` from python.
619
620
621## Bug Fixes and Other Changes
622
623* Documentation now includes operator overloads on Tensor and Variable.
624* `tensorflow.__git_version__` now allows users to identify the version of the
625 code that TensorFlow was compiled with. We also have
626 `tensorflow.__git_compiler__` which identifies the compiler used to compile
627 TensorFlow's core.
628* Improved multi-threaded performance of `batch_matmul`.
Eugene Brevdo21e1cc72016-08-11 21:45:39 -0800629* LSTMCell, BasicLSTMCell, and MultiRNNCell constructors now default to
630 `state_is_tuple=True`. For a quick fix while transitioning to the new
631 default, simply pass the argument `state_is_tuple=False`.
Vijay Vasudevan2d0d1262016-08-08 14:06:20 -0800632* DeviceFactory's AddDevices and CreateDevices functions now return
633 a Status instead of void.
A. Unique TensorFlower84cefad2016-08-12 07:06:13 -0800634* Int32 elements of list(type) arguments are no longer placed in host memory by
635 default. If necessary, a list(type) argument to a kernel can be placed in host
636 memory using a HostMemory annotation.
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800637* `uniform_unit_scaling_initializer()` no longer takes a `full_shape` arg,
638 instead relying on the partition info passed to the initializer function when
639 it's called.
640* The NodeDef protocol message is now defined in its own file `node_def.proto`
641 `instead of graph.proto`.
642* `ops.NoGradient` was renamed `ops.NotDifferentiable`. `ops.NoGradient` will
Vijay Vasudevan612bae72016-09-09 11:03:09 -0800643 be removed soon.
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800644* `dot.h` / DotGraph was removed (it was an early analysis tool prior
Vijay Vasudevan269bfee2016-09-21 21:41:19 -0800645 to TensorBoard, no longer that useful). It remains in history
646 should someone find the code useful.
Vijay Vasudevan914625a2016-09-23 13:51:34 -0800647* re2 / regexp.h was removed from being a public interface of TF.
648 Should users need regular expressions, they should depend on the RE2
649 library directly rather than via TensorFlow.
Dan Manée5bcf542016-05-16 13:39:34 -0800650
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800651## Thanks to our Contributors
652
653This release contains contributions from many people at Google, as well as:
654
655Abid K, @afshinrahimi, @AidanGG, Ajay Rao, Aki Sukegawa, Alex Rothberg,
656Alexander Rosenberg Johansen, Andrew Gibiansky, Andrew Thomas, @Appleholic,
657Bastiaan Quast, Ben Dilday, Bofu Chen, Brandon Amos, Bryon Gloden, Cissp®,
658@chanis, Chenyang Liu, Corey Wharton, Daeyun Shin, Daniel Julius Lasiman, Daniel
659Waterworth, Danijar Hafner, Darren Garvey, Denis Gorbachev, @DjangoPeng,
660Egor-Krivov, Elia Palme, Eric Platon, Fabrizio Milo, Gaetan Semet,
661Georg Nebehay, Gu Wang, Gustav Larsson, @haosdent, Harold Cooper, Hw-Zz,
662@ichuang, Igor Babuschkin, Igor Macedo Quintanilha, Ilya Edrenkin, @ironhead,
663Jakub Kolodziejczyk, Jennifer Guo, Jihun Choi, Jonas Rauber, Josh Bleecher
664Snyder, @jpangburn, Jules Gagnon-Marchand, Karen Brems, @kborer, Kirill Bobyrev,
665Laurent Mazare, Longqi Yang, Malith Yapa, Maniteja Nandana, Martin Englund,
666Matthias Winkelmann, @mecab, Mu-Ik Jeon, Nand Dalal, Niels Ole Salscheider,
667Nikhil Mishra, Park Jiin, Pieter De Rijk, @raix852, Ritwik Gupta, Sahil Sharma,
Patrick Nguyenc5ab3dd2016-10-20 12:09:18 -0800668Sangheum Hwang, @SergejsRk, Shinichiro Hamaji, Simon Denel, @Steve, @suiyuan2009,
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800669Tiago Jorge, Tijmen Tieleman, @tvn, @tyfkda, Wang Yang, Wei-Ting Kuo, Wenjian
670Huang, Yan Chen, @YenChenLin, Yuan (Terry) Tang, Yuncheng Li, Yunfeng Wang, Zack
671Polizzi, @zhongzyd, Ziming Dong, @perhapszzy
672
673We are also grateful to all who filed issues or helped resolve them, asked and
674answered questions, and were part of inspiring discussions.
675
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800676# Release 0.10.0
A. Unique TensorFlower533d8912016-06-30 12:10:50 -0800677
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800678## Major Features and Improvements
679
680* Added support for C++ shape inference
681* Added graph-construction C API
682* Major revision to the graph-construction C++ API
683* Support makefile build for iOS
684* Added Mac GPU support
685* Full version of TF-Slim available as `tf.contrib.slim`
686* Added k-Means clustering and WALS matrix factorization
687
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800688## Bug Fixes and Other Changes
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800689
690* Allow gradient computation for scalar values.
691* Performance improvements for gRPC
692* Improved support for fp16
693* New high-level ops in tf.contrib.{layers,metrics}
694* New features for TensorBoard, such as shape display, exponential smoothing
695* Faster and more stable Google Cloud Storage (GCS) filesystem support
696* Support for zlib compression and decompression for TFRecordReader and TFRecordWriter
697* Support for reading (animated) GIFs
698* Improved support for SparseTensor
699* Added support for more probability distributions (Dirichlet, Beta, Bernoulli, etc.)
700* Added Python interfaces to reset resource containers.
701* Many bugfixes and performance improvements
702* Many documentation fixes
703
704## Thanks to our Contributors
705
706This release contains contributions from many people at Google, as well as:
707
708Alex 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
709
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800710We are also grateful to all who filed issues or helped resolve them, asked and
711answered questions, and were part of inspiring discussions.
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800712
713# Release 0.9.0
714
715## Major Features and Improvements
716
717* Python 3.5 support and binaries
718* Added iOS support
719* Added support for processing on GPUs on MacOS
720* Added makefile for better cross-platform build support (C API only)
721* fp16 support and improved complex128 support for many ops
722* Higher level functionality in contrib.{layers,losses,metrics,learn}
723* More features to Tensorboard
724* Improved support for string embedding and sparse features
725* The RNN api is finally "official" (see, e.g., `tf.nn.dynamic_rnn`,
726 `tf.nn.rnn`, and the classes in `tf.nn.rnn_cell`).
727* TensorBoard now has an Audio Dashboard, with associated audio summaries.
728
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800729## Bug Fixes and Other Changes
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800730
731* Turned on CuDNN Autotune.
732* Added support for using third-party Python optimization algorithms (contrib.opt).
733* Google Cloud Storage filesystem support.
734* HDF5 support
735* Add support for 3d convolutions and pooling.
736* Update gRPC release to 0.14.
737* Eigen version upgrade.
738* Switch to eigen thread pool
739* `tf.nn.moments()` now accepts a `shift` argument. Shifting by a good estimate
740 of the mean improves numerical stability. Also changes the behavior of the
741 `shift` argument to `tf.nn.sufficient_statistics()`.
742* Performance improvements
743* Many bugfixes
744* Many documentation fixes
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800745* TensorBoard fixes: graphs with only one data point, Nan values,
746 reload button and auto-reload, tooltips in scalar charts, run
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800747 filtering, stable colors
748* Tensorboard graph visualizer now supports run metadata. Clicking on nodes
749 while viewing a stats for a particular run will show runtime statistics, such
750 as memory or compute usage. Unused nodes will be faded out.
751
752## Thanks to our Contributors
753
754This release contains contributions from many people at Google, as well as:
755
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800756Aaron 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 -0800757
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800758We are also grateful to all who filed issues or helped resolve them, asked and
759answered questions, and were part of inspiring discussions.
Vijay Vasudevan490afa92016-06-21 09:18:06 -0800760
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800761# Release 0.8.0
762
763## Major Features and Improvements
764
765* Added a distributed runtime using GRPC
766* Move skflow to `contrib/learn`
767* Better linear optimizer in `contrib/linear_optimizer`
768* Random forest implementation in `contrib/tensor_forest`
769* CTC loss and decoders in `contrib/ctc`
770* Basic support for `half` data type
771* Better support for loading user ops (see examples in `contrib/`)
772* Allow use of (non-blocking) Eigen threadpool with `TENSORFLOW_USE_EIGEN_THREADPOOL` define
773* Add an extension mechanism for adding network file system support
774* TensorBoard displays metadata stats (running time, memory usage and device used) and tensor shapes
775
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800776## Bug Fixes and Other Changes
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800777
778* Utility for inspecting checkpoints
779* Basic tracing and timeline support
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800780* Allow building against cuDNN 5 (not incl. RNN/LSTM support)
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800781* Added instructions and binaries for ProtoBuf library with fast serialization and without 64MB limit
782* Added special functions
Dan Mané54a71782016-09-09 16:07:46 -0800783* `bool`-strictness: Tensors have to be explicitly compared to `None`
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800784* Shape strictness: all fed values must have a shape that is compatible with the tensor they are replacing
785* Exposed `tf.while_loop` (deprecated `control_flow_ops.While`)
786* run() now takes RunOptions and RunMetadata, which enable timing stats
787* Fixed lots of potential overflow problems in op kernels
788* Various performance improvements, especially for RNNs and convolutions
789* Many bugfixes
790* Nightly builds, tutorial tests, many test improvements
791* New examples: transfer learning and deepdream ipython notebook
792* Added tutorials, many documentation fixes.
793
794## Thanks to our Contributors
795
796This release contains contributions from many people at Google, as well as:
797
A. Unique TensorFlowerabe9ab32016-07-31 22:07:30 -0800798Abhinav 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 -0800799
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800800We are also grateful to all who filed issues or helped resolve them, asked and
801answered questions, and were part of inspiring discussions.
Illia Polosukhin5c9bc512016-04-18 17:56:51 -0800802
803
Eugene Brevdo56f1d642016-03-10 17:18:30 -0800804# Release 0.7.1
805
806## Bug Fixes and Other Changes
807
808* Added gfile.Open and gfile.Copy, used by input_data.py.
809* Fixed Saver bug when MakeDirs tried to create empty directory.
810* GPU Pip wheels are built with cuda 7.5 and cudnn-v4, making them
811 required for the binary releases. Lower versions of cuda/cudnn can
812 be supported by installing from sources and setting the options
813 during ./configure
814* Fix dataset encoding example for Python3 (@danijar)
815* Fix PIP installation by not packaging protobuf as part of wheel,
816 require protobuf 3.0.0b2.
817* Fix Mac pip installation of numpy by requiring pip >= 1.10.1.
818* Improvements and fixes to Docker image.
819
820
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800821# Release 0.7.0
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -0800822
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800823## Major Features and Improvements
824
825* Allow using any installed Cuda >= 7.0 and cuDNN >= R2, and add support
826 for cuDNN R4
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800827* Added a `contrib/` directory for unsupported or experimental features,
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800828 including higher level `layers` module
829* Added an easy way to add and dynamically load user-defined ops
830* Built out a good suite of tests, things should break less!
831* Added `MetaGraphDef` which makes it easier to save graphs with metadata
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800832* Added assignments for "Deep Learning with TensorFlow" udacity course
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800833
834
835## Bug Fixes and Other Changes
836
837* Added a versioning framework for `GraphDef`s to ensure compatibility
838* Enforced Python 3 compatibility
839* Internal changes now show up as sensibly separated commits
840* Open-sourced the doc generator
841* Un-fork Eigen
842* Simplified the `BUILD` files and cleaned up C++ headers
843* TensorFlow can now be used as a submodule in another bazel build
844* New ops (e.g., `*fft`, `*_matrix_solve`)
845* Support for more data types in many ops
846* Performance improvements
847* Various bugfixes
848* Documentation fixes and improvements
849
850
851## Breaking Changes to the API
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -0800852
853* `AdjustContrast` kernel deprecated, new kernel `AdjustContrastv2` takes and
854 outputs float only. `adjust_contrast` now takes all data types.
855* `adjust_brightness`'s `delta` argument is now always assumed to be in `[0,1]`
856 (as is the norm for images in floating point formats), independent of the
857 data type of the input image.
858* The image processing ops do not take `min` and `max` inputs any more, casting
859 safety is handled by `saturate_cast`, which makes sure over- and underflows
860 are handled before casting to data types with smaller ranges.
Geoffrey Irvingcbff45c2016-01-12 08:06:56 -0800861* For C++ API users: `IsLegacyScalar` and `IsLegacyVector` are now gone from
862 `TensorShapeUtils` since TensorFlow is scalar strict within Google (for
863 example, the shape argument to `tf.reshape` can't be a scalar anymore). The
864 open source release was already scalar strict, so outside Google `IsScalar`
865 and `IsVector` are exact replacements.
Josh Levenbergdb7478e2016-01-20 14:54:50 -0800866* The following files are being removed from `tensorflow/core/public/`:
867 * `env.h` -> `../platform/env.h`
868 * `status.h` -> `../lib/core/status.h`
869 * `tensor.h` -> `../framework/tensor.h`
870 * `tensor_shape.h` -> `../framework/tensor_shape.h`
871 * `partial_tensor_shape.h` -> `../framework/partial_tensor_shape.h`
872 * `tensorflow_server.h` deleted
Geoffrey Irving56437752016-01-25 09:43:13 -0800873* For C++ API users: `TensorShape::ShortDebugString` has been renamed to
874 `DebugString`, and the previous `DebugString` behavior is gone (it was
875 needlessly verbose and produced a confusing empty string for scalars).
Manjunath Kudlurc2722a12016-01-27 13:24:50 -0800876* `GraphOptions.skip_common_subexpression_elimination` has been removed. All
877 graph optimizer options are now specified via
878 `GraphOptions.OptimizerOptions`.
Geoffrey Irving18297122016-02-10 11:48:34 -0800879* `ASSERT_OK` / `EXPECT_OK` macros conflicted with external projects, so they
880 were renamed `TF_ASSERT_OK`, `TF_EXPECT_OK`. The existing macros are
881 currently maintained for short-term compatibility but will be removed.
Eugene Brevdofea55e12016-01-27 14:54:54 -0800882* The non-public `nn.rnn` and the various `nn.seq2seq` methods now return
883 just the final state instead of the list of all states.
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800884* `tf.scatter_update` now no longer guarantees that lexicographically largest
885 index be used for update when duplicate entries exist.
Geoffrey Irving3e33d442016-02-08 12:02:44 -0800886* `tf.image.random_crop(image, [height, width])` is now
887 `tf.random_crop(image, [height, width, depth])`, and `tf.random_crop` works
888 for any rank (not just 3-D images). The C++ `RandomCrop` op has been replaced
889 with pure Python.
Geoffrey Irving18297122016-02-10 11:48:34 -0800890* Renamed `tf.test.GetTempDir` and `tf.test.IsBuiltWithCuda` to
891 `tf.test.get_temp_dir` and `tf.test.is_built_with_cuda` for PEP-8
892 compatibility.
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800893* `parse_example`'s interface has changed, the old interface is accessible in
894 `legacy_parse_example` (same for related functions).
895* New `Variable`s are not added to the same collection several times even if
896 a list with duplicates is passed to the constructor.
Josh Levenberg02dff6d2016-01-07 18:37:54 -0800897* The Python API will now properly set the `list` member of `AttrValue` in
898 constructed `GraphDef` messages for empty lists. The serialization of some
899 graphs will change, but the change is both forwards and backwards compatible.
900 It will break tests that compare a generated `GraphDef` to a golden serialized
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800901 `GraphDef` (which is discouraged).
902
903
904## Thanks to our Contributors
905
906This release contains contributions from many people at Google, as well as:
907
908Akiomi Kamakura, Alex Vig, Alexander Rosenberg Johansen, Andre Cruz, Arun Ahuja,
909Bart Coppens, Bernardo Pires, Carl Vondrick, Cesar Salgado, Chen Yu,
910Christian Jauvin, Damien Aymeric, Dan Vanderkam, Denny Britz, Dongjoon Hyun,
911Eren Güven, Erik Erwitt, Fabrizio Milo, G. Hussain Chinoy, Jim Fleming,
912Joao Felipe Santos, Jonas Meinertz Hansen, Joshi Rekha, Julian Viereck,
913Keiji Ariyama, Kenton Lee, Krishna Sankar, Kristina Chodorow, Linchao Zhu,
914Lukas Krecan, Mark Borgerding, Mark Daoust, Moussa Taifi,
915Nathan Howell, Naveen Sundar Govindarajulu, Nick Sweeting, Niklas Riekenbrauck,
916Olivier Grisel, Patrick Christ, Povilas Liubauskas, Rainer Wasserfuhr,
917Romain Thouvenin, Sagan Bolliger, Sam Abrahams, Taehoon Kim, Timothy J Laurent,
918Vlad Zavidovych, Yangqing Jia, Yi-Lin Juang, Yuxin Wu, Zachary Lipton,
919Zero Chen, Alan Wu, @brchiu, @emmjaykay, @jalammar, @Mandar-Shinde,
920@nsipplswezey, @ninotoshi, @panmari, @prolearner and @rizzomichaelg.
921
A. Unique TensorFloweredaf3b32016-10-10 10:26:22 -0800922We are also grateful to all who filed issues or helped resolve them, asked and
923answered questions, and were part of inspiring discussions.
Josh Levenberg02dff6d2016-01-07 18:37:54 -0800924
Geoffrey Irvingcbff45c2016-01-12 08:06:56 -0800925
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800926# Release 0.6.0
927
928## Major Features and Improvements
929
930* Python 3.3+ support via changes to python codebase and ability
931 to specify python version via ./configure.
932
933* Some improvements to GPU performance and memory usage:
934 [convnet benchmarks](https://github.com/soumith/convnet-benchmarks/issues/66)
935 roughly equivalent with native cudnn v2 performance. Improvements mostly due
936 to moving to 32-bit indices, faster shuffling kernels. More improvements to
937 come in later releases.
938
939
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800940## Bug Fixes
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800941
942* Lots of fixes to documentation and tutorials, many contributed
943 by the public.
944
945* 271 closed issues on github issues.
946
Vijay Vasudevanfe056f02016-02-17 11:42:30 -0800947## Backwards-Incompatible Changes
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800948
Geoffrey Irving18297122016-02-10 11:48:34 -0800949* `tf.nn.fixed_unigram_candidate_sampler` changed its default 'distortion'
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -0800950 attribute from 0.0 to 1.0. This was a bug in the original release
951 that is now fixed.
952
Vijay Vasudevanddd4aaf2015-12-08 09:58:59 -0800953# Release 0.5.0
954
955Initial release of TensorFlow.