in build_model.MODELS_TYPE_DICT.items()
if issubclass(model_class, sklearn.base.ClassifierMixin)]
for model_type in classifier_types:
model = build_model.create_and_pickle_model("test", model_type, "test")
pred_results_dict = predict.predict_data_file(
pjoin(cfg.UPLOAD_FOLDER, "dotastro_215153.dat"),
"test", model_type, "test",
metadata_path=pjoin(cfg.UPLOAD_FOLDER,
After Change
if issubclass(model_class,
sklearn.base.ClassifierMixin)]
for model_type in classifier_types:
build_model.create_and_pickle_model("test", model_type, "test")
pred_results_dict = predict.predict_data_file(
pjoin(cfg.UPLOAD_FOLDER, "dotastro_215153.dat"),
"test", model_type, "test",
metadata_path=pjoin(cfg.UPLOAD_FOLDER,