Skip to content

Commit

Permalink
5k nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Meyer committed Feb 20, 2018
1 parent 424b5ef commit dd11a20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/do_cross_val.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def main():

gc.collect()

regressor_kwargs = dict(n_estimators=256, max_leaf_nodes=10000,
regressor_kwargs = dict(n_estimators=256, max_leaf_nodes=5000,
max_features=0.2, n_jobs=-1, verbose=1,
random_state=42)

Expand Down
2 changes: 1 addition & 1 deletion trufflepig/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def main():
else:
post_frame = None

regressor_kwargs = dict(n_estimators=256, max_leaf_nodes=10000,
regressor_kwargs = dict(n_estimators=256, max_leaf_nodes=5000,
max_features=0.2, n_jobs=-1, verbose=1,
random_state=42)

Expand Down

0 comments on commit dd11a20

Please sign in to comment.