TensorFlow v0.12 Release Notes
May 17, 2019 ยท View on GitHub
TensorFlow v0.12 Release Notes
- The upstream TensorFlow version has been bumped to 1.13.1.
TensorFlow v0.11 Release Notes
- Support for eager execution mode has been added. See the docs for instructions on how to use it.
TensorFlow v0.10.0 Release Notes
- Support for Julia 1.0 has been added. Support for all prior versions of Julia (except 0.7, which is functionally identical to 1.0) has been dropped.
TensorFlow v0.7 Release Notes
- Support for Julia 0.5 has been dropped.
- Enhanced support for visualization with TensorBoard.
- Operations defined in C are now accessed by
import_op(<op name>)instead ofOps.<op name>.
TensorFlow v0.6 Release Notes
API deprecations
The API has changed to resemble the finalized TensorFlow 1.0 API. See the TensorFlow release notes for a list of the changes.
In particular for TensorFlow.jl:
- The summary operations, like
train.scalary_summary, have moved tosummary.scalar. train.SummaryWriterhas moved tosummary.FileWriter.- The
reduction_indiceskeyword argument have changed toaxisin every function which used to take areduction_indicesargument. mulhas changed tomultiply, and likewise forsubandneg.packis nowstackandunpackis nowunstack.- The
*_cross_entropy_with_logitsfamily of functions has changed to only accept keyword arguments instead of positional arguments. - The order of arguments to
concathas switched (tensors to concatenate come first, followed by the concetenation axis).
Highlights
dynamic_rnnhas been addedwhile_loophas been added, with a convenient@tf while ... endsyntax- Support for Docker via official Docker images
Switch to 1-based indexing
Operations which take indices as arguments now expect the arguments to be 1-based instead of 0-based, which was a hold-over of TensorFlow's Python legacy. This affects the following functions:
- The
axisparameter for any operation which takes anaxisparameter - The
begin_argument ofslice
All TensorFlow operations now supported
Every operation defined by TensorFlow is now automatically wrapped in a
Julia function available in the Ops module.