aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/grid_rnn
Commit message (Collapse)AuthorAge
* Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-21
| | | | | | | | self.test_session() has been deprecated in 9962eb5e84b15e309410071b06c2ed2d6148ed44 as its name confuses readers of the test. Moving to cached_session() instead which is more explicit about: * the fact that the session may be reused. * the session is not closed even when doing a "with self.test_session()" statement. PiperOrigin-RevId: 213944355
* Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | PiperOrigin-RevId: 190878279
* Merge changes from github.Gravatar Jacques Pienaar2018-03-21
| | | | PiperOrigin-RevId: 189945839
* BUILD cleanup in contrib/...Gravatar A. Unique TensorFlower2017-10-30
| | | | PiperOrigin-RevId: 173889798
* Selected BUILD cleanup in tensorflow/contrib/...Gravatar A. Unique TensorFlower2017-06-18
| | | | PiperOrigin-RevId: 159373397
* Move many of the "core" RNNCells and rnn functions back to TF core.Gravatar Eugene Brevdo2017-05-22
| | | | | | | | Unit test files will move in a followup PR. This is the big API change. The old behavior (using tf.contrib.rnn....) will continue to work for backwards compatibility. PiperOrigin-RevId: 156809677
* Merge changes from github.Gravatar Dan Ringwalt2017-05-05
| | | | Change: 155209832
* Fix the dlopen contrib test hack by making a pywrap_tensorflow module that ↵Gravatar Jonathan Hseu2017-02-28
| | | | | | | | | imports pywrap_tensorflow_internal with RTLD_GLOBAL. Fixes #6568 Change: 148843302
* GridRNN creates multiple internal cell instances - one for each dim.Gravatar Eugene Brevdo2017-02-03
| | | | | | | As we start moving RNNCells to layer-like objects that keep state, it is necessary for each layer to have its own instance. For the case that tied=True, the same instance is copied across the cells list. Change: 146486991
* Switch tf.concat_v2 references in third_party/tensorflow to tf.concat.Gravatar A. Unique TensorFlower2017-01-10
| | | | Change: 144153795
* Remove so many more hourglass importsGravatar Justine Tunney2016-12-29
| | | | Change: 143230429
* Remove superfluous Python depsGravatar Justine Tunney2016-12-28
| | | | Change: 143142615
* Remove hourglass imports from kernel_testsGravatar Justine Tunney2016-12-14
| | | | Change: 142080137
* Major intent of this CL is to rename split_v -> split in the python API.Gravatar A. Unique TensorFlower2016-12-12
| | | | | | | | | | | | | Requires: 1) Add name arguments to tf.split calls introduced since major Rosie CL cleaning this up across the codebase. 2) Change uses of array_ops.split to use named arguments, which was not covered in the Rosie CL. 3) Rename split_v calls to split. Change: 141806936
* Update caller to move from tf.nn.rnn to (the identical) ↵Gravatar Jianwei Xie2016-12-10
| | | | | | tf.contrib.rnn.static_rnn. Change: 141658438
* Import tf.contrib.rnn for cells instead of tf.nn.rnn_cell.Gravatar Jianwei Xie2016-12-07
| | | | Change: 141376440
* Switch all tf.concat(concat_dim, value, name) calls in ↵Gravatar A. Unique TensorFlower2016-12-06
| | | | | | third_party/tensorflow to tf.concat_v2(value, axis, name). Change: 141255675
* Merge changes from github.Gravatar Benoit Steiner2016-11-09
| | | | Change: 138675832
* Replace usages initialize_all_variables -> global_variables_initializerGravatar Illia Polosukhin2016-11-03
| | | | Change: 138128703
* Fix broken lists in documentation, and back-quote more identifiers.Gravatar Patrick Nguyen2016-09-28
| | | | Change: 134628004
* Push the bulk python tensorflow dependency down to individual leaf targets asGravatar A. Unique TensorFlower2016-09-01
| | | | | step one of allowing better test dependency pruning. Change: 131949425
* ** BREAKING CHANGE **Gravatar Eugene Brevdo2016-08-11
| | | | | | | | Core RNNCell implementations now use state_is_tuple=True by default This is part of the deprecation process for non-tuple LSTM and MultiRNNCell states. Change: 130059769
* Support nested inputs and outputs in rnn containers.Gravatar Adria Puigdomenech2016-06-29
| | | | Change: 126191028
* Update copyright for 3p/tf.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123901292
* Move core Slim layers into contrib.layers.Gravatar A. Unique TensorFlower2016-05-23
| | | | Change: 123027385
* Merge changes from github.Gravatar Illia Polosukhin2016-04-18
Change: 120185825