Compare commits

...

6 Commits

Author SHA1 Message Date
Jingtian Peng
905662a1c0 [issue#9328]fix invalid pointer when free() (#9595) 2017-05-02 14:30:48 -07:00
Yifei Feng
250e72cbed Merge pull request #9523 from tensorflow/r1.0-update
Indicate that tf.contrib.rnn functions will be moved back to core for TF 1.2, not 1.1
2017-04-28 15:50:14 -07:00
Neal Wu
00cff0694a Indicate that tf.contrib.rnn functions will be moved back to core for TF 1.2, not 1.1 2017-04-28 15:01:23 -07:00
Amit Patankar
e895d5ca39 Fixing 2 minor issues as suggested by Gunan. 2017-03-07 14:16:05 -08:00
Amit Patankar
60d35bbfc6 Implementing Gunan's suggestions to the RELEASE.md file. Including missed changes in 1.0 docs. 2017-03-07 14:16:05 -08:00
Amit Patankar
30fa482af9 Updating the RELEASE.md for patch version 1.0.1 2017-03-07 14:16:05 -08:00
5 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,10 @@
# Release 1.0.1
## Bug Fixes and Other Changes
* Change GraphConstructor to not increase the version when importing, but instead take the min of all versions.
* Google Cloud Storage fixes.
* 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.
# Release 1.0.0
## Major Features and Improvements
@ -78,14 +85,16 @@ To help you upgrade your existing TensorFlow Python code to match the API change
* `SparseTensor.shape` has been renamed to `SparseTensor.dense_shape`. Same for
`SparseTensorValue.shape`.
* 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.
* Replace tf.train.SummaryWriter and tf.train.SummaryWriterCache with tf.summary.FileWriter and tf.summary.FileWriterCache.
* Replace tf.train.SummaryWriter and tf.train.SummaryWriterCache with tf.summary.FileWriter and tf.summary.FileWriterCache.
* Removes RegisterShape from public API. Use C++ shape function registration
instead.
* Deprecated `_ref` dtypes from the python API.
* In the C++ API (in tensorflow/cc), Input, Output, etc. have moved
from the tensorflow::ops namespace to tensorflow.
* Change arg order for `{softmax,sparse_softmax,sigmoid}_cross_entropy_with_logits` to be (labels, predictions), and force use of named args.
* 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.1.
* 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.
* `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.
* The shape keyword argument of the `SparseTensor` constructor changes its name to `dense_shape` between Tensorflow 0.12 and Tensorflow 1.0.
## Bug Fixes and Other Changes
* Numerous C++ API updates.

View File

@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libfreetype6-dev \
libpng12-dev \
libzmq3-dev \
libtcmalloc-minimal4 \
pkg-config \
python \
python-dev \

View File

@ -10,6 +10,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libfreetype6-dev \
libpng12-dev \
libzmq3-dev \
libtcmalloc-minimal4 \
pkg-config \
python-dev \
rsync \

View File

@ -10,6 +10,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libfreetype6-dev \
libpng12-dev \
libzmq3-dev \
libtcmalloc-minimal4 \
pkg-config \
python-dev \
rsync \

View File

@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libfreetype6-dev \
libpng12-dev \
libzmq3-dev \
libtcmalloc-minimal4 \
pkg-config \
python \
python-dev \