From a2b6c3c124664d682094a1ecfa9cc00cca8ada85 Mon Sep 17 00:00:00 2001 From: Younghee Kwon Date: Thu, 29 Mar 2018 09:43:19 -0700 Subject: Added kernels and estimators for Gradient Boosting Trees algorithm. BoostedTreesClassifier and BoostedTreesRegressor are added to tf.estimator. Also some training utility functions are added to tf.contrib.estimator. PiperOrigin-RevId: 190942599 --- tensorflow/python/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tensorflow/python/__init__.py') diff --git a/tensorflow/python/__init__.py b/tensorflow/python/__init__.py index 3346937904..ab1d01a835 100644 --- a/tensorflow/python/__init__.py +++ b/tensorflow/python/__init__.py @@ -98,6 +98,8 @@ from tensorflow.python.summary import summary from tensorflow.python.user_ops import user_ops from tensorflow.python.util import compat +# Import boosted trees ops to make sure the ops are registered (but unused). +from tensorflow.python.ops import gen_boosted_trees_ops as _gen_boosted_trees_ops # Import cudnn rnn ops to make sure their ops are registered. from tensorflow.python.ops import gen_cudnn_rnn_ops as _ -- cgit v1.2.3