aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/estimator
Commit message (Collapse)AuthorAge
* Allowing for mixture of V1 and V2 feature columns usage in canned ↵Gravatar Rohan Jain2018-10-09
| | | | | | | | | | estimators. This is required for TF hub use cases where users might send in new feature columns to old model code. Implemented this support by making V2 feature columns support the V1 API. This is needed temporarily and would definitely be removed by TF 2.0, possibly earlier depending on what guarantees are provided by TF hub. The only case we don't allow here is mixing in V2 shared embedding columns with V1 Feature columns. V2 Shared FC's depend on a SharedEmbeddingState manager that would have to be passed in to the various API's and there wasn't really a very clean way to make that work. Mixing V2 feature columns with V1 shared embedding columns is fine though and along with all other combinations PiperOrigin-RevId: 216359041
* If keras_model_path is google storage url, provide util to download modelGravatar Zhenyu Tan2018-10-01
| | | | | | remotely. PiperOrigin-RevId: 215295504
* Move TPU variables to the TPU device in TPUStrategy.Gravatar Jonathan Hseu2018-09-28
| | | | PiperOrigin-RevId: 215027511
* Adding FeatureColumn V2 support for linear canned estimators.Gravatar Rohan Jain2018-09-28
| | | | | | | Since we now have support for FeatureColumnV2 for both DNN and Linear models, adding tests for the combined canned estimators as well. PiperOrigin-RevId: 215002573
* Update hooks for distributed jobs with a master node, to ensure thatGravatar A. Unique TensorFlower2018-09-28
| | | | | | | summaries are written at the correct interval for jobs with long-running evaluations. PiperOrigin-RevId: 214993119
* Remove @{} api_links and ban "@{}" from python and md files.Gravatar Mark Daoust2018-09-28
| | | | PiperOrigin-RevId: 214964988
* Updating the V2 variables API.Gravatar Alexandre Passos2018-09-27
| | | | PiperOrigin-RevId: 214824023
* Automated rollback of commit e00d7744dbab5c73e4d8ffa8a7d361f7b2dcefffGravatar Rohan Jain2018-09-26
| | | | PiperOrigin-RevId: 214721004
* Add Mirrored distribution strategy support for new metrics with Keras and ↵Gravatar Pavithra Vijay2018-09-26
| | | | | | | | Estimator Add support for stateful metrics in model to estimator PiperOrigin-RevId: 214714322
* Fix the eval hook to run the correct number of steps when using TPU strategyGravatar Sourabh Bajaj2018-09-26
| | | | PiperOrigin-RevId: 214709465
* Automated rollback of commit 844074c2a8e61b744c3de2718e1c9ea7b1d2edc2Gravatar A. Unique TensorFlower2018-09-26
| | | | PiperOrigin-RevId: 214693201
* Update hooks for distributed jobs with a master node, to ensure thatGravatar A. Unique TensorFlower2018-09-26
| | | | | | | summaries are written at the correct interval for jobs with long-running evaluations. PiperOrigin-RevId: 214678483
* Merge pull request #21509 from facaiy:ENH/feature_importances_for_boosted_treeGravatar TensorFlower Gardener2018-09-25
|\ | | | | | | PiperOrigin-RevId: 214462540
* | Fixes typo in docstring to correctly name the new Estimator method ↵Gravatar Karmel Allison2018-09-24
| | | | | | | | | | | | export_saved_model PiperOrigin-RevId: 214325271
* | 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
| * Merge remote-tracking branch 'upstream/master' into ↵Gravatar Yan Facai (颜发才)2018-09-20
| |\ | |/ |/| | | ENH/feature_importances_for_boosted_tree
| * TST: introduce test case from upstream/masterGravatar Yan Facai (颜发才)2018-09-20
| |
* | Boosted trees: Add error messages when tree complexity parameter is not ↵Gravatar A. Unique TensorFlower2018-09-19
| | | | | | | | | | | | properly set. PiperOrigin-RevId: 213706101
| * Merge remote-tracking branch 'upstream/master' into ↵Gravatar Yan Facai (颜发才)2018-09-20
| |\ | |/ |/| | | ENH/feature_importances_for_boosted_tree
* | Python interface for Boosted Trees model explainability (currently includes ↵Gravatar A. Unique TensorFlower2018-09-19
| | | | | | | | | | | | directional feature contributions); fixed ExampleDebugOutputs bug where it errors with empty trees. PiperOrigin-RevId: 213658470
* | Automated rollback of commit 9fe177881224571aff0c267593f747f5fd7a2967Gravatar Rohan Jain2018-09-19
| | | | | | | | PiperOrigin-RevId: 213630404
* | Getting DNNModel to work with the new feature columns.Gravatar Rohan Jain2018-09-18
| | | | | | | | PiperOrigin-RevId: 213561495
* | Convert the new metric instances to (value_op, update_op) tuple in the ↵Gravatar Pavithra Vijay2018-09-18
| | | | | | | | | | | | EstimatorSpec. PiperOrigin-RevId: 213548081
* | Updates documentation of Estimator.predict to note that an issue with ↵Gravatar Mustafa Ispir2018-09-18
| | | | | | | | | | | | yielding and graph context. PiperOrigin-RevId: 213528782
| * CLN: minor changesGravatar Yan Facai (颜发才)2018-09-18
| |
* | Fix _check_is_tensor like _check_is_tensor_or_operation was fixed in #22264.Gravatar A. Unique TensorFlower2018-09-17
| | | | | | | | PiperOrigin-RevId: 213346485
* | Merge pull request #22264 from dave-msk:est_spec_metrics_ops_check_tensorGravatar TensorFlower Gardener2018-09-17
|\ \ | | | | | | | | | PiperOrigin-RevId: 213311243
* | | fix bug of lacking axis when using array.ops.concat in unwrap_and_concat ↵Gravatar wangsiyu2018-09-15
| | | | | | | | | | | | function
* | | Fix spelling in error messageGravatar A. Unique TensorFlower2018-09-14
| | | | | | | | | | | | PiperOrigin-RevId: 213062112
| | * CLN: only assert gains >= 0 for normalizationGravatar Yan Facai (颜发才)2018-09-14
| | |
| * | Modified "_check_is_tensor_or_operation" to check if "x" is "tensor_like"Gravatar (David) Siu-Kei Muk2018-09-14
|/ /
* | Automated rollback of commit 56d4fc8ff67f48294ae5cb0a7f9ff3d954463aa3Gravatar A. Unique TensorFlower2018-09-13
| | | | | | | | PiperOrigin-RevId: 212847619
* | Add a `namedtuple` factory that accepts doc-strings.Gravatar Mark Daoust2018-09-13
| | | | | | | | PiperOrigin-RevId: 212828094
| * Merge branch 'master' into ENH/feature_importances_for_boosted_treeGravatar Yan Facai (颜发才)2018-09-13
| |\ | |/ |/|
* | Add unit test for model_to_estimator where inpu_fnGravatar Zhenyu Tan2018-09-12
| | | | | | | | | | | | returns features and labels as a list instead of dict. PiperOrigin-RevId: 212685344
| * CLN: fix code styleGravatar Yan Facai (颜发才)2018-09-12
| |
* | Block tsan for keras_testGravatar Zhenyu Tan2018-09-11
| | | | | | | | PiperOrigin-RevId: 212477605
* | Fix model_to_estimator bug where subclassed model receives input list fromGravatar Zhenyu Tan2018-09-10
| | | | | | | | | | | | estimator model_fn. PiperOrigin-RevId: 212354111
* | 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
* | disabling test thats timing out in asanGravatar Olivia Nordquist2018-09-07
| | | | | | | | PiperOrigin-RevId: 211996728
* | Fix bug that prevented iterations variable from updating when training an ↵Gravatar Katherine Wu2018-09-06
| | | | | | | | | | | | Estimator that is created from a Keras model. PiperOrigin-RevId: 211886643
* | Update docstring for BoostedTrees n_batches_per_layer.Gravatar Zhenyu Tan2018-09-06
| | | | | | | | PiperOrigin-RevId: 211824645
* | disable msan in failing testGravatar Olivia Nordquist2018-09-05
| | | | | | | | PiperOrigin-RevId: 211719342
* | Temporarily disable distributed coordinator training when using TPUStrategyGravatar Frank Chen2018-09-05
| | | | | | | | PiperOrigin-RevId: 211712907
* | Expose an axis argument for VocabInfo, which allows for warm-starting of the ↵Gravatar Eddie Zhou2018-09-05
| | | | | | | | | | | | second axis of Tensors through tf.train.warm_start. Note that the underlying initializer already has this functionality (for example, for output layers). PiperOrigin-RevId: 211709879
* | Change tags for estimator_testGravatar Austin Anderson2018-09-05
| | | | | | | | PiperOrigin-RevId: 211688974
* | Disable variable partitioning from TPU DNN canned estimator.Gravatar Michael Case2018-09-04
| | | | | | | | PiperOrigin-RevId: 211557743
* | Remove per-tower ready op since concat doesn't have a GPU kernel for DT_STRING.Gravatar Yuefeng Zhou2018-08-31
| | | | | | | | | | | | The current implementation queries the global collection for ready op. Therefore there is no need to have a per-tower ready op. PiperOrigin-RevId: 211187544
* | Roll forward of commit 069f808e5c0462819bcd6c73c75491b00cdd42c2 (rolling ↵Gravatar Katherine Wu2018-08-31
| | | | | | | | | | | | | | | | | | | | | | | | back rollback cl/210656847). Fixing reference to _get_export_outputs_for_spec in TFMA (This function was refactored out, so the string has been removed from the list of methods that are copied from core Estimator). *** Original change description *** Automated rollback of commit 069f808e5c0462819bcd6c73c75491b00cdd42c2 PiperOrigin-RevId: 211122893
| * Merge remote-tracking branch 'upstream/master' into ↵Gravatar Yan Facai (颜发才)2018-08-31
| |\ | |/ |/| | | ENH/feature_importances_for_boosted_tree