fix bug
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ sb1,sb2 = st.columns([2,4])
|
|
27 |
with sb1:
|
28 |
option = st.selectbox('Pilih Mode Pencarian',('Simple','Advanced'))
|
29 |
with sb2:
|
30 |
-
option_model = st.selectbox('Pilih Model',("IndoBERT (Accurate,Slow)
|
31 |
|
32 |
if option == 'Simple':
|
33 |
# create col1 and col2
|
|
|
27 |
with sb1:
|
28 |
option = st.selectbox('Pilih Mode Pencarian',('Simple','Advanced'))
|
29 |
with sb2:
|
30 |
+
option_model = st.selectbox('Pilih Model',("IndoBERT (Accurate,Slow)",'Naive Bayes','Logistic Regression (Less Accurate,Fast)','XGBoost','Catboost','SVM','Random Forest'))
|
31 |
|
32 |
if option == 'Simple':
|
33 |
# create col1 and col2
|