Created
June 23, 2020 04:31
-
-
Save taylorplumer/2b9e18cac895e449ae16bc23a6a33088 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
from sklearn.naive_bayes import GaussianNB | |
from sklearn.linear_model import LogisticRegression | |
from sklearn.ensemble import GradientBoostingClassifier, RandomForestClassifier | |
# modify depending on needs for sklearn classifiers and yellowbrick visualizers | |
MODELS = [GradientBoostingClassifier(), RandomForestClassifier(), LogisticRegression(max_iter=1000), GaussianNB() ] | |
VISUALIZERS = ['ROCAUC','PrecisionRecallCurve', 'ClassificationReport','ConfusionMatrix'] | |
# modify depending on needs for filesystem structure | |
INPUT_DATA_FILEPATH = 'Data/Input/' | |
OUTPUT_DATA_FILEPATH = 'Data/Output/' | |
IMG_OUTPUT_FILEPATH = 'Data/img/' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment