aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tensor_forest
Commit message (Collapse)AuthorAge
* Updating the V2 variables API.Gravatar Alexandre Passos2018-09-27
| | | | PiperOrigin-RevId: 214824023
* Account for old run config, more robust num trainersGravatar A. Unique TensorFlower2018-09-26
| | | | PiperOrigin-RevId: 214646114
* Derive the number of trainers in tensorforest if run config is provided.Gravatar A. Unique TensorFlower2018-09-26
| | | | PiperOrigin-RevId: 214616123
* Update BUILD files so that Estimator code depends on TF thru tf_no_contrib.Gravatar Michael Case2018-09-25
| | | | PiperOrigin-RevId: 214541221
* 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
* 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
* Switch to Eigen::Index in Tensorflow kernels.Gravatar Eugene Zhulenev2018-09-14
| | | | | | Mixing index type doesn't work well with latest Eigen. PiperOrigin-RevId: 213067224
* Use random_seed for the process inputGravatar Peng Yu2018-09-10
|
* Switching default loss reduction for core tensorforest to be the same as in ↵Gravatar A. Unique TensorFlower2018-09-07
| | | | | | old version. PiperOrigin-RevId: 212014026
* Merge pull request #21905 from ↵Gravatar TensorFlower Gardener2018-09-04
|\ | | | | | | | | | | wdirons:21833_disable_gpu_test_scatter_add_ndim_op_test PiperOrigin-RevId: 211489137
* | Increasing test size.Gravatar A. Unique TensorFlower2018-08-28
| | | | | | | | PiperOrigin-RevId: 210586455
| * Disable GPU test for scatter_add_ndim_op_testGravatar William D. Irons2018-08-27
|/ | | | | | | As scatter_add_ndim doesn't have implementation for GPU, the test needs to be excluded from GPU test to prevent it from failing. Currently fails on both x86_64 and ppc64le. Fixes #21833
* Fixing thread-unsafe access to a class member.Gravatar A. Unique TensorFlower2018-08-23
| | | | PiperOrigin-RevId: 209980962
* Disable random_forest_test in asan.Gravatar Gunhan Gulsoy2018-08-22
| | | | PiperOrigin-RevId: 209835865
* 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: 209701635
* fix C++ header guards.Gravatar A. Unique TensorFlower2018-08-21
| | | | PiperOrigin-RevId: 209679086
* Use binary classification head for num_classes = 2.Gravatar A. Unique TensorFlower2018-08-16
| | | | PiperOrigin-RevId: 209074011
* Support GREATER_OR_EQUAL and GREATER_THAN splits in tensor_forest evaluationGravatar A. Unique TensorFlower2018-08-16
| | | | PiperOrigin-RevId: 208992685
* Make early stopping tests less brittle to prevent breaking them when ↵Gravatar A. Unique TensorFlower2018-08-14
| | | | | | upgrading Eigen. PiperOrigin-RevId: 208754390
* Providing a core estimator interface over a contrib tensorforest.Gravatar A. Unique TensorFlower2018-08-14
| | | | PiperOrigin-RevId: 208658097
* Check the return value of safe_strto32 in decision_node_evaluatorGravatar A. Unique TensorFlower2018-07-31
| | | | PiperOrigin-RevId: 206824944
* Remove unused lib_internal dependency in contrib/tensor_forest.Gravatar Derek Murray2018-07-18
| | | | PiperOrigin-RevId: 205103025
* Switch from tf.contrib.metrics to tf.metrics (#18783)Gravatar Yong Tang2018-06-03
| | | | | | | | | | | | | | | | | | * Switch from tf.contrib.metrics to tf.metrics Much of the functions in `tf.contrib.metrics` has been deprecated in favor of `tf.metrics`. This fix switches `tf.contrib.metrics` to `tf.metrics`. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Change to `tf.metrics` in evaluation_test.py Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Fix pylint issue Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* address lint againGravatar Peng Yu2018-05-21
|
* address lintGravatar Peng Yu2018-05-21
|
* address commentsGravatar Peng Yu2018-05-21
|
* add test case always predict [0, 1]Gravatar Peng Yu2018-05-21
|
* add inference support for tree and forest variablesGravatar Peng Yu2018-05-21
|
* Fix warnings in tf.contrib.tensor_forestGravatar Yong Tang2018-04-22
| | | | Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Fix doc gen errorGravatar Yifei Feng2018-04-19
| | | Mismatch after the fix in #17815
* contrib: minor spelling tweaksGravatar Brett Koonce2018-04-07
| | | | | | | packages: data training tensor_forest
* Windows: Enable tensorflow/contrib in Bazel build (Second try)Gravatar A. Unique TensorFlower2018-04-02
| | | | | | This reverts commit 4e108ef30d7cd7ae5e1c550ec5ae27e79b8c6e39. PiperOrigin-RevId: 191391075
* Remove all_opensource_files. It's not needed any more.Gravatar Martin Wicke2018-03-28
| | | | PiperOrigin-RevId: 190878279
* Update the doc to reflect the change of replacing std::clock with ↵Gravatar A. Unique TensorFlower2018-03-21
| | | | | | random::New64() as random number generator seed. PiperOrigin-RevId: 189934377
* Replace std::clock with random::New64() for setting random seedGravatar A. Unique TensorFlower2018-03-20
| | | | PiperOrigin-RevId: 189773399
* Refactor code to improve TensorDataSet construction speed.Gravatar A. Unique TensorFlower2018-03-19
| | | | PiperOrigin-RevId: 189595482
* Remove a few unused #includesGravatar A. Unique TensorFlower2018-03-19
| | | | PiperOrigin-RevId: 189593522
* 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
* Merge changes from github.Gravatar Shanqing Cai2018-03-12
| | | | PiperOrigin-RevId: 188817194
* Merge changes from github.Gravatar Yifei Feng2018-02-22
| | | | PiperOrigin-RevId: 186674197
* Cleanup: Ran clang-format on all *.{cc,h} files in ↵Gravatar A. Unique TensorFlower2018-01-30
| | | | | | tensorflow/contrib/.../*.{hh,c}. PiperOrigin-RevId: 183855242
* Prepare variance to be exported for serving with the servo library.Gravatar A. Unique TensorFlower2018-01-30
| | | | PiperOrigin-RevId: 183851026
* Remove dead codeGravatar A. Unique TensorFlower2018-01-26
| | | | PiperOrigin-RevId: 183374040
* Fix override annotationsGravatar A. Unique TensorFlower2018-01-26
| | | | PiperOrigin-RevId: 183367326
* Remove THIRD_PARTY_ from #include guardsGravatar Sanjoy Das2018-01-24
| | | | | | They don't make sense in the open source repository. PiperOrigin-RevId: 183140889
* Enable bfloat16 for CPU kernelsGravatar A. Unique TensorFlower2018-01-16
| | | | PiperOrigin-RevId: 182124532
* Output variance over tree predictions for classifications.Gravatar A. Unique TensorFlower2018-01-05
| | | | PiperOrigin-RevId: 180976319
* Merge changes from github.Gravatar Raghuraman Krishnamoorthi2018-01-03
| | | | PiperOrigin-RevId: 180746153
* Internal change.Gravatar Anna R2017-12-21
| | | | PiperOrigin-RevId: 179866603