Spaces:
Runtime error
Runtime error
app.py
CHANGED
@@ -1,4 +1,9 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
best = compare_models(sort = 'AUC', n_select = 15)
|
4 |
compare_model_results = pull()
|
|
|
1 |
import gradio as gr
|
2 |
+
import pycaret
|
3 |
+
from pycaret.classification import *
|
4 |
+
|
5 |
+
|
6 |
+
modelvalue= setup(data = healthcare_stroke_data, target = 'stroke', normalize = True, normalize_method = 'zscore', transformation=True, fix_imbalance = True, session_id=123, fold = 60, remove_outliers= True, outliers_threshold = 0.05, remove_multicollinearity=True, multicollinearity_threshold = 0.9)
|
7 |
|
8 |
best = compare_models(sort = 'AUC', n_select = 15)
|
9 |
compare_model_results = pull()
|