Created
July 10, 2019 11:50
-
-
Save risenW/08e15910f0358c94449d5cf4bbc158d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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