File tree 2 files changed +3
-2
lines changed
tensorflow_decision_forests/keras
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ py_test(
119
119
"@ydf//yggdrasil_decision_forests/test_data" ,
120
120
],
121
121
python_version = "PY3" ,
122
- shard_count = 30 ,
122
+ shard_count = 50 ,
123
123
deps = [
124
124
":core" ,
125
125
":keras" ,
Original file line number Diff line number Diff line change @@ -2878,7 +2878,8 @@ def test_node_format_blob_sequence(self):
2878
2878
"""Test that the node format is BLOB_SEQUENCE if required."""
2879
2879
dataset = adult_dataset ()
2880
2880
model = keras .RandomForestModel (
2881
- advanced_arguments = keras .AdvancedArguments (node_format = "BLOB_SEQUENCE" )
2881
+ num_trees = 10 ,
2882
+ advanced_arguments = keras .AdvancedArguments (node_format = "BLOB_SEQUENCE" ),
2882
2883
)
2883
2884
ds = keras .pd_dataframe_to_tf_dataset (dataset .train , dataset .label )
2884
2885
model .fit (ds )
You can’t perform that action at this time.
0 commit comments