diff --git a/tensorflow/contrib/tensor_forest/BUILD b/tensorflow/contrib/tensor_forest/BUILD index bff7d022740..878415604e7 100644 --- a/tensorflow/contrib/tensor_forest/BUILD +++ b/tensorflow/contrib/tensor_forest/BUILD @@ -269,9 +269,11 @@ tf_custom_op_py_library( srcs_version = "PY2AND3", deps = [ ":gen_model_ops_py", - ":stats_ops_py", - "//tensorflow/core:protos_all_py", + "//tensorflow/contrib/util:util_py", "//tensorflow/python:framework_for_generated_wrappers", + "//tensorflow/python:platform", + "//tensorflow/python:resources", + "//tensorflow/python:training", ], ) @@ -286,12 +288,10 @@ tf_cc_test( ":forest_proto_impl", ":model_ops_lib", "//tensorflow/contrib/tensor_forest/kernels/v4:decision-tree-resource_impl", - "//tensorflow/core", "//tensorflow/core:framework_headers_lib", "//tensorflow/core:test", "//tensorflow/core:test_main", "//tensorflow/core:testlib", - "//third_party/eigen3", ], ) @@ -364,8 +364,12 @@ tf_custom_op_py_library( srcs_version = "PY2AND3", deps = [ ":gen_stats_ops_py", + "//tensorflow/contrib/util:util_py", "//tensorflow/core:protos_all_py", "//tensorflow/python:framework_for_generated_wrappers", + "//tensorflow/python:platform", + "//tensorflow/python:resources", + "//tensorflow/python:training", ], ) @@ -382,6 +386,7 @@ tf_cc_test( "//tensorflow/contrib/tensor_forest/kernels/v4:decision-tree-resource_impl", "//tensorflow/core", "//tensorflow/core:framework_headers_lib", + "//tensorflow/core:lib", "//tensorflow/core:test", "//tensorflow/core:test_main", "//tensorflow/core:testlib", @@ -495,9 +500,13 @@ py_library( "//tensorflow/contrib/decision_trees/proto:generic_tree_model_py", "//tensorflow/contrib/framework:framework_py", "//tensorflow/contrib/tensor_forest/proto:tensor_forest_params_proto_py", + "//tensorflow/python:array_ops", "//tensorflow/python:control_flow_ops", "//tensorflow/python:framework_for_generated_wrappers", + "//tensorflow/python:math_ops", "//tensorflow/python:platform", + "//tensorflow/python:random_ops", + "//tensorflow/python:variable_scope", "//tensorflow/python:variables", "@six_archive//:six", ], @@ -524,13 +533,17 @@ py_library( deps = [ ":client_lib", "//tensorflow/contrib/framework:framework_py", + "//tensorflow/contrib/layers:layers_py", "//tensorflow/contrib/learn", "//tensorflow/python:array_ops", "//tensorflow/python:control_flow_ops", "//tensorflow/python:framework_for_generated_wrappers", "//tensorflow/python:math_ops", "//tensorflow/python:platform", + "//tensorflow/python:resource_variable_ops", + "//tensorflow/python:sparse_tensor", "//tensorflow/python:state_ops", + "//tensorflow/python:summary", "//tensorflow/python:training", "//tensorflow/python:variable_scope", ], diff --git a/tensorflow/contrib/tensor_forest/hybrid/BUILD b/tensorflow/contrib/tensor_forest/hybrid/BUILD index 13b9749756d..a2a3b485f6a 100644 --- a/tensorflow/contrib/tensor_forest/hybrid/BUILD +++ b/tensorflow/contrib/tensor_forest/hybrid/BUILD @@ -105,8 +105,8 @@ tf_custom_op_py_library( srcs_version = "PY2AND3", deps = [ ":training_ops", + "//tensorflow/contrib/util:util_py", "//tensorflow/python:array_ops", - "//tensorflow/python:framework", "//tensorflow/python:framework_for_generated_wrappers", "//tensorflow/python:math_ops", "//tensorflow/python:platform", @@ -180,7 +180,6 @@ py_test( deps = [ ":ops_lib", ":training_ops", - "//tensorflow:tensorflow_py", "//tensorflow/python:framework_test_lib", "//tensorflow/python:platform_test", ],