Compare commits
6 Commits
rei/fork-r
...
r1.0
Author | SHA1 | Date | |
---|---|---|---|
|
905662a1c0 | ||
|
250e72cbed | ||
|
00cff0694a | ||
|
e895d5ca39 | ||
|
60d35bbfc6 | ||
|
30fa482af9 |
11
RELEASE.md
11
RELEASE.md
@ -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
|
# Release 1.0.0
|
||||||
|
|
||||||
## Major Features and Improvements
|
## Major Features and Improvements
|
||||||
@ -85,7 +92,9 @@ To help you upgrade your existing TensorFlow Python code to match the API change
|
|||||||
* In the C++ API (in tensorflow/cc), Input, Output, etc. have moved
|
* In the C++ API (in tensorflow/cc), Input, Output, etc. have moved
|
||||||
from the tensorflow::ops namespace to tensorflow.
|
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.
|
* 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
|
## Bug Fixes and Other Changes
|
||||||
* Numerous C++ API updates.
|
* Numerous C++ API updates.
|
||||||
|
@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
libfreetype6-dev \
|
libfreetype6-dev \
|
||||||
libpng12-dev \
|
libpng12-dev \
|
||||||
libzmq3-dev \
|
libzmq3-dev \
|
||||||
|
libtcmalloc-minimal4 \
|
||||||
pkg-config \
|
pkg-config \
|
||||||
python \
|
python \
|
||||||
python-dev \
|
python-dev \
|
||||||
|
@ -10,6 +10,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
libfreetype6-dev \
|
libfreetype6-dev \
|
||||||
libpng12-dev \
|
libpng12-dev \
|
||||||
libzmq3-dev \
|
libzmq3-dev \
|
||||||
|
libtcmalloc-minimal4 \
|
||||||
pkg-config \
|
pkg-config \
|
||||||
python-dev \
|
python-dev \
|
||||||
rsync \
|
rsync \
|
||||||
|
@ -10,6 +10,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
libfreetype6-dev \
|
libfreetype6-dev \
|
||||||
libpng12-dev \
|
libpng12-dev \
|
||||||
libzmq3-dev \
|
libzmq3-dev \
|
||||||
|
libtcmalloc-minimal4 \
|
||||||
pkg-config \
|
pkg-config \
|
||||||
python-dev \
|
python-dev \
|
||||||
rsync \
|
rsync \
|
||||||
|
@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
libfreetype6-dev \
|
libfreetype6-dev \
|
||||||
libpng12-dev \
|
libpng12-dev \
|
||||||
libzmq3-dev \
|
libzmq3-dev \
|
||||||
|
libtcmalloc-minimal4 \
|
||||||
pkg-config \
|
pkg-config \
|
||||||
python \
|
python \
|
||||||
python-dev \
|
python-dev \
|
||||||
|
Loading…
Reference in New Issue
Block a user