mirror of
https://github.com/webclinic017/drift.git
synced 2026-08-08 16:47:50 +00:00
feat(Reporting): added robustness / correlation test (#138)
* feat(Evaluation): added robustness/correlation test * feat(Reporting): saving correlations * fix(Reporting): record correlations properly * fix(Model): SVC's random seed * feat(CI): store artifacts
This commit is contained in:
committed by
GitHub
parent
b1c04afb13
commit
f5bbc266a4
+1
-1
@@ -53,7 +53,7 @@ model_map = {
|
||||
NB= SKLearnModel(GaussianNB()),
|
||||
AB= SKLearnModel(AdaBoostClassifier(n_estimators=15)),
|
||||
RF= SKLearnModel(RandomForestClassifier(n_jobs=-1, max_depth=20, random_state=1)),
|
||||
SVC = SKLearnModel(SVC(kernel='rbf', C=1e3, probability=True)),
|
||||
SVC = SKLearnModel(SVC(kernel='rbf', C=1e3, probability=True, random_state=1)),
|
||||
XGB_two_class= XGBoostModel(XGBClassifier(n_jobs=-1, max_depth = 20, random_state=1, objective='binary:logistic', use_label_encoder= False, eval_metric='mlogloss')),
|
||||
LGBM = SKLearnModel(LGBMClassifier(n_jobs=-1, max_depth=20, random_state=1)),
|
||||
StaticMom= StaticMomentumModel(allow_short=True),
|
||||
|
||||
Reference in New Issue
Block a user