thov commited on
Commit
b2327d1
1 Parent(s): 3b95acd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -8
app.py CHANGED
@@ -9,12 +9,7 @@ from autoML import autoML
9
  st.set_page_config(layout="wide")
10
 
11
  # add categorical features
12
- # handle missing values with automl
13
-
14
- # fix the unnamed 0 problem
15
-
16
- # add animated graphs
17
- # improve layout between components
18
 
19
  with st.sidebar:
20
 
@@ -34,9 +29,9 @@ with st.sidebar:
34
  metric_to_minimize_class = st.selectbox(label='Metric to minimize', options=['accuracy', 'f1'])
35
  metric_to_minimize_reg = None
36
  if task == 'Regression':
37
- metric_to_minimize_reg = st.selectbox(label='Metric to minimize', options=['r2', 'mse'])
38
  metric_to_minimize_class = None
39
-
40
  if csv:
41
  lst_features = csv_to_featuers_list(csv)
42
  label = st.selectbox(label='Label', options=lst_features)
 
9
  st.set_page_config(layout="wide")
10
 
11
  # add categorical features
12
+ # handle missing values with automl (not possible)
 
 
 
 
 
13
 
14
  with st.sidebar:
15
 
 
29
  metric_to_minimize_class = st.selectbox(label='Metric to minimize', options=['accuracy', 'f1'])
30
  metric_to_minimize_reg = None
31
  if task == 'Regression':
32
+ metric_to_minimize_reg = st.selectbox(label='Metric to minimize', options=['r2', 'mse', 'rmse'])
33
  metric_to_minimize_class = None
34
+
35
  if csv:
36
  lst_features = csv_to_featuers_list(csv)
37
  label = st.selectbox(label='Label', options=lst_features)