aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/learn
Commit message (Collapse)AuthorAge
* Updating the V2 variables API.Gravatar Alexandre Passos2018-09-27
| | | | PiperOrigin-RevId: 214824023
* Merge branch 'master' into fix_expand_dimsGravatar Martin Wicke2018-09-22
|\
| * Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-17
| | | | | | | | | | | | | | | | 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: 213326581
| * Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-10
| | | | | | | | | | | | | | | | 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: 212336464
| * Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-10
| | | | | | | | | | | | | | | | 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: 212336417
| * timing out test being removed from tap pending investigationGravatar Olivia Nordquist2018-09-06
| | | | | | | | PiperOrigin-RevId: 211890783
| * Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-08-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: 209703607
| * Move from deprecated self.test_session() to self.session() when a graph is set.Gravatar A. Unique TensorFlower2018-08-21
| | | | | | | | | | | | self.test_session() has been deprecated in cl/208545396 as its behavior confuses readers of the test. Moving to self.session() instead. PiperOrigin-RevId: 209696110
| * Remove magic-doc-links from code.Gravatar Mark Daoust2018-08-16
| | | | | | | | | | | | | | | | | | | | This change contains no code changes. Only doc-strings. We can't use relative links in code files, so we don't have much choice but to link to tensorflow.org/ The deleted links were to docs that no longer exist. PiperOrigin-RevId: 209019572
| * Re-enable some tests on WindowsGravatar A. Unique TensorFlower2018-08-14
| | | | | | | | PiperOrigin-RevId: 208695032
| * Fix estimator dependencies in contrib/.Gravatar Michael Case2018-08-09
| | | | | | | | PiperOrigin-RevId: 208126204
| * Remove usage of magic-api-link syntax from source files.Gravatar Mark Daoust2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Back-ticks are now converted to links in the api_docs generator. With the new docs repo we're moving to simplify the docs pipeline, and make everything more readable. By doing this we no longer get test failures for symbols that don't exist (`tf.does_not_exist` will not get a link). There is also no way, not to set custom link text. That's okay. This is the result of the following regex replacement (+ a couple of manual edits.): re: @\{([^$].*?)(\$.+?)?} sub: `\1` Which does the following replacements: "@{tf.symbol}" --> "`tf.symbol`" "@{tf.symbol$link_text}" --> "`tf.symbol`" PiperOrigin-RevId: 208042358
| * Split checkpoint management utility functions out of saver.pyGravatar Allen Lavoie2018-08-02
| | | | | | | | | | | | Pure refactor, in preparation for adding a higher level checkpoint management utility. This utility will also need to work with the Checkpoint proto, and globbing it on to saver.py seems dirty. PiperOrigin-RevId: 207179646
| * Support distribution strategies in `Estimator.evaluate`.Gravatar Priya Gupta2018-07-31
| | | | | | | | PiperOrigin-RevId: 206864512
| * Merge pull request #20520 from yongtang:07012018-expand_dimsGravatar TensorFlower Gardener2018-07-19
| |\ | | | | | | | | | PiperOrigin-RevId: 205331312
| * | Make protocol used in estimator customizable.Gravatar Li Liangbin2018-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Example code as follow: config = tf.estimator.RunConfig(protocol='grpc+verbs') nn = tf.estimator.Estimator(model_fn=model_fn, model_dir=model_dir, params=params, config=config)
| | * Fix warning in _log_loss_with_two_classes as wellGravatar Yong Tang2018-07-03
| | | | | | | | | | | | Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
| | * Additional fixGravatar Yong Tang2018-07-03
| | | | | | | | | | | | Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
| | * Update calling of expand_dims with axisGravatar Yong Tang2018-07-03
| |/ | | | | | | | | | | | | | | This fix updates calling of `expand_dims` with `dim -> axis` as the `dim=` in `tf.expand_dims` has been deprecated and was generating unnecessary warnings. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
| * Pass checkpoint_path to predicate functions for experiment.continuous_eval ↵Gravatar A. Unique TensorFlower2018-06-07
| | | | | | | | | | | | even in the case of falsy eval_results PiperOrigin-RevId: 199728382
| * Mark tensorflow/contrib/learn:estimator_test as optonly because it is flaky ↵Gravatar Peter Hawkins2018-05-31
| | | | | | | | | | | | due to timeouts without optimization. PiperOrigin-RevId: 198804880
| * Merge changes from github.Gravatar Yifei Feng2018-05-24
| | | | | | | | | | | | | | Revert #18413. Too many internal test failures due to the name scope change caused by this change. Revert #18192. Cannot use re2::StringPiece internally. Need alternative for set call. Will pull and clean this up in a separate change. PiperOrigin-RevId: 197991247
| * Add support for partitioned variables to SDCA.Gravatar A. Unique TensorFlower2018-05-23
| | | | | | | | PiperOrigin-RevId: 197803127
| * Move fn_args utility into core TensorFlow from Estimator.Gravatar Michael Case2018-05-11
| | | | | | | | | | | | | | Working on untangling TF/Estimator deps. Some core TF code depends on Estimator by using the fn_args utility function within Estimator. PiperOrigin-RevId: 196277612
| * Fix a bug about getting arguments of partial functions.Gravatar A. Unique TensorFlower2018-05-10
| | | | | | | | PiperOrigin-RevId: 196157095
| * Increase size of test tensorflow/contrib/learn:graph_io_test to medium to ↵Gravatar A. Unique TensorFlower2018-05-09
| | | | | | | | | | | | avoid flaky timeouts PiperOrigin-RevId: 196068593
| * Increase shard count for //third_party/tensorflow/contrib/learn:kmeans_test ↵Gravatar A. Unique TensorFlower2018-05-09
| | | | | | | | | | | | to avoid flaky timeouts PiperOrigin-RevId: 196061508
| * Increase shard count of ↵Gravatar A. Unique TensorFlower2018-05-08
| | | | | | | | | | | | tensorflow/contrib/learn:state_saving_rnn_estimator_test to avoid flaky timeouts PiperOrigin-RevId: 195887546
| * Update comment clarifying continuous eval behavior.Gravatar A. Unique TensorFlower2018-05-08
| | | | | | | | PiperOrigin-RevId: 195826025
| * Merge changes from github.Gravatar Patrick Nguyen2018-05-01
| | | | | | | | PiperOrigin-RevId: 194997009
| * Extend SDCAOptimizer functionality to prune negative indices (the default ↵Gravatar A. Unique TensorFlower2018-04-30
| | | | | | | | | | | | value for OOV with tf.feature_column.FeatureColumn, sparse / categorical). PiperOrigin-RevId: 194839178
| * Added a call in CheckpointSaverHook.after_create_session to always saveGravatar Sherry Moore2018-04-24
| | | | | | | | | | | | checkpoint before the first training step. PiperOrigin-RevId: 194107958
| * Merge changes from github.Gravatar Yifei Feng2018-04-23
| | | | | | | | PiperOrigin-RevId: 194031845
| * Internal-only change.Gravatar Justin Lebar2018-04-19
| | | | | | | | PiperOrigin-RevId: 193588868
* | Fix expand_dims of dims argument has been deprecated with axisGravatar imsheridan2018-04-17
| |
* | adding ps_strategy to run_config to enable different placement strate… ↵Gravatar Siu Kei, Muk2018-04-15
|/ | | | | | | | | | | | | | | | | | | | | | (#15640) * adding ps_strategy to run_config to enable different placement strategy in estimator * 1. Moved estimator._device_fn to RunConfig as @property 2. Made RunConfig.device_fn to return custom device function if one is specified, otherwise the result from `tf.train.replica_device_setter` call is used 3. Added some basic unit tests, may need further tests. * 1. Removing ps_strategy. 2. Modified estimator to take overriden device_fn from if set. 3. Removed ps_strategy related unit tests. * Adding manual initialization of _device_fn in legacy RunConfig class * Updated estimator golden API through 1. bazel build //tensorflow/tools/api/tests:api_compatibility_test 2. bazel-bin/tensorflow/tools/api/tests/api_compatibility_test --update_goldens True * fixing code styles
* Adding hp5y back.Gravatar Rohan Jain2018-04-11
| | | | PiperOrigin-RevId: 192491335
* Rename `distribute` to `train_distribute` parameter in `RunConfig` to ↵Gravatar Priya Gupta2018-04-04
| | | | | | clarify that its purpose is only for training. PiperOrigin-RevId: 191654161
* Windows: Enable tensorflow/contrib in Bazel build (Second try)Gravatar A. Unique TensorFlower2018-04-02
| | | | | | This reverts commit 4e108ef30d7cd7ae5e1c550ec5ae27e79b8c6e39. PiperOrigin-RevId: 191391075
* Automated g4 rollback of changelist 190858242Gravatar Jianwei Xie2018-03-29
| | | | PiperOrigin-RevId: 190953197
* DistributionStrategy-enable Estimator.Gravatar A. Unique TensorFlower2018-03-28
| | | | PiperOrigin-RevId: 190882152
* Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | PiperOrigin-RevId: 190878279
* Automated g4 rollback of changelist 190835392Gravatar Anna R2018-03-28
| | | | PiperOrigin-RevId: 190858242
* Merge changes from github.Gravatar Jianwei Xie2018-03-28
| | | | PiperOrigin-RevId: 190835392
* Prevent warning every time someone imports contrib.learn.datasets.baseGravatar James Keeling2018-03-27
| | | | | | | | | | Everything in contrib/learn/python/learn/datasets/base.py has been deprecated. One of the function in there is a decorator, retry. Because another function in that file is decorated with retry, the function is called upon import, which prints a warning. I have fixed this by adding a private function, _internal_retry, which is used internally, and redefining retry to simply call this. That way, using retry in user-code will still print the deprecated warning, but it's not printed upon every import. I also cleaned up the docstrings slightly. PiperOrigin-RevId: 190626717
* Merge changes from github.Gravatar Jacques Pienaar2018-03-21
| | | | PiperOrigin-RevId: 189945839
* Automated g4 rollback of changelist 189231636Gravatar A. Unique TensorFlower2018-03-15
| | | | PiperOrigin-RevId: 189258641
* Merge changes from github.Gravatar Jacques Pienaar2018-03-15
| | | | PiperOrigin-RevId: 189231636
* disable flaky asan testGravatar Olivia Nordquist2018-03-11
| | | | PiperOrigin-RevId: 188670616
* Expose a version of model_fn for contrib Estimators. Make the body of ↵Gravatar A. Unique TensorFlower2018-03-08
| | | | | | get_timestamped_export_dir an Estimator util. PiperOrigin-RevId: 188366199