AdjustContrastkernel deprecated, new kernelAdjustContrastv2takes and outputs float only.adjust_contrastnow takes all data types.adjust_brightness'sdeltaargument is now always assumed to be in[0,1](as is the norm for images in floating point formats), independent of the data type of the input image.- The image processing ops do not take
minandmaxinputs any more, casting safety is handled bysaturate_cast, which makes sure over- and underflows are handled before casting to data types with smaller ranges. - For C++ API users:
IsLegacyScalarandIsLegacyVectorare now gone fromTensorShapeUtilssince TensorFlow is scalar strict within Google (for example, the shape argument totf.reshapecan't be a scalar anymore). The open source release was already scalar strict, so outside GoogleIsScalarandIsVectorare exact replacements. - The following files are being removed from
tensorflow/core/public/:env.h->../platform/env.hstatus.h->../lib/core/status.htensor.h->../framework/tensor.htensor_shape.h->../framework/tensor_shape.hpartial_tensor_shape.h->../framework/partial_tensor_shape.htensorflow_server.hdeleted
- For C++ API users:
TensorShape::ShortDebugStringhas been renamed toDebugString, and the previousDebugStringbehavior is gone (it was needlessly verbose and produced a confusing empty string for scalars).
- The Python API will now properly set the
listmember ofAttrValuein constructedGraphDefmessages for empty lists. The serialization of some graphs will change, but the change is both forwards and backwards compatible. It will break tests that compare a generatedGraphDefto a golden serializedGraphDef.
-
Python 3.3+ support via changes to python codebase and ability to specify python version via ./configure.
-
Some improvements to GPU performance and memory usage: convnet benchmarks roughly equivalent with native cudnn v2 performance. Improvements mostly due to moving to 32-bit indices, faster shuffling kernels. More improvements to come in later releases.
-
Lots of fixes to documentation and tutorials, many contributed by the public.
-
271 closed issues on github issues.
- tf.nn.fixed_unigram_candidate_sampler changed its default 'distortion' attribute from 0.0 to 1.0. This was a bug in the original release that is now fixed.
Initial release of TensorFlow.