Document breaking change to several RNNCells.

Change: 130070042
This commit is contained in:
Eugene Brevdo 2016-08-11 21:45:39 -08:00 committed by TensorFlower Gardener
parent 9f17b70887
commit 21e1cc73b3

View File

@ -2,6 +2,9 @@
## Breaking Changes to the API
* LSTMCell, BasicLSTMCell, and MultiRNNCell constructors now default to
`state_is_tuple=True`. For a quick fix while transitioning to the new
default, simply pass the argument `state_is_tuple=False`.
* DeviceFactory's AddDevices and CreateDevices functions now return
a Status instead of void.