blob: 358e2aef1c608e352bf2a5f2ec721e902c9ee19c [file] [log] [blame] [view]
Vijay Vasudevan10e62dc2015-12-11 23:03:16 -08001# Changes since last release
2
3## Breaking changes to the API
4
5* `AdjustContrast` kernel deprecated, new kernel `AdjustContrastv2` takes and
6 outputs float only. `adjust_contrast` now takes all data types.
7* `adjust_brightness`'s `delta` argument is now always assumed to be in `[0,1]`
8 (as is the norm for images in floating point formats), independent of the
9 data type of the input image.
10* The image processing ops do not take `min` and `max` inputs any more, casting
11 safety is handled by `saturate_cast`, which makes sure over- and underflows
12 are handled before casting to data types with smaller ranges.
13
Josh Levenberg02dff6d2016-01-07 18:37:54 -080014## Bug fixes
15
16* The Python API will now properly set the `list` member of `AttrValue` in
17 constructed `GraphDef` messages for empty lists. The serialization of some
18 graphs will change, but the change is both forwards and backwards compatible.
19 It will break tests that compare a generated `GraphDef` to a golden serialized
20 `GraphDef`.
21
Vijay Vasudevan2c3738d2015-12-08 14:55:13 -080022# Release 0.6.0
23
24## Major Features and Improvements
25
26* Python 3.3+ support via changes to python codebase and ability
27 to specify python version via ./configure.
28
29* Some improvements to GPU performance and memory usage:
30 [convnet benchmarks](https://github.com/soumith/convnet-benchmarks/issues/66)
31 roughly equivalent with native cudnn v2 performance. Improvements mostly due
32 to moving to 32-bit indices, faster shuffling kernels. More improvements to
33 come in later releases.
34
35
36## Bug fixes
37
38* Lots of fixes to documentation and tutorials, many contributed
39 by the public.
40
41* 271 closed issues on github issues.
42
43## Backwards-incompatible changes
44
45* tf.nn.fixed_unigram_candidate_sampler changed its default 'distortion'
46 attribute from 0.0 to 1.0. This was a bug in the original release
47 that is now fixed.
48
Vijay Vasudevanddd4aaf2015-12-08 09:58:59 -080049# Release 0.5.0
50
51Initial release of TensorFlow.