Skip to content

Instantly share code, notes, and snippets.

@risenW
Created July 10, 2019 11:50
Show Gist options
  • Save risenW/08e15910f0358c94449d5cf4bbc158d4 to your computer and use it in GitHub Desktop.
Save risenW/08e15910f0358c94449d5cf4bbc158d4 to your computer and use it in GitHub Desktop.
#Classification
for model in classification_models:
model_train(model, features=german_cred, target_name='bad_credit')
#Regression
for model in regression_models:
model_train(model, features=german_cred, target_name='age_yrs', task='reg')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment