Skip to content

Commit 250e72c

Browse files
authored
Merge pull request tensorflow#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
2 parents e895d5c + 00cff06 commit 250e72c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ To help you upgrade your existing TensorFlow Python code to match the API change
8585
* `SparseTensor.shape` has been renamed to `SparseTensor.dense_shape`. Same for
8686
`SparseTensorValue.shape`.
8787
* 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.
88-
* Replace tf.train.SummaryWriter and tf.train.SummaryWriterCache with tf.summary.FileWriter and tf.summary.FileWriterCache.
88+
* Replace tf.train.SummaryWriter and tf.train.SummaryWriterCache with tf.summary.FileWriter and tf.summary.FileWriterCache.
8989
* Removes RegisterShape from public API. Use C++ shape function registration
9090
instead.
9191
* Deprecated `_ref` dtypes from the python API.
9292
* In the C++ API (in tensorflow/cc), Input, Output, etc. have moved
9393
from the tensorflow::ops namespace to tensorflow.
9494
* Change arg order for `{softmax,sparse_softmax,sigmoid}_cross_entropy_with_logits` to be (labels, predictions), and force use of named args.
95-
* 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.
95+
* 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.
9696
* `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.
9797
* The shape keyword argument of the `SparseTensor` constructor changes its name to `dense_shape` between Tensorflow 0.12 and Tensorflow 1.0.
9898

0 commit comments

Comments
 (0)