Skip to content

Instantly share code, notes, and snippets.

@aagnone3
Created July 7, 2020 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aagnone3/d635f00243a065f0c2b25e4da03ac9c9 to your computer and use it in GitHub Desktop.
Save aagnone3/d635f00243a065f0c2b25e4da03ac9c9 to your computer and use it in GitHub Desktop.
hummingbird-deepnote_5.py
X_train, y_train = make_data(n_samples=1e3)
X_test, y_test = make_data(n_samples=1e4)
clf = RandomForestRegressor(n_estimators=250, max_depth=10)
clf.fit(X_train, y_train)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment