fixed scuffed format
Browse files
app.py
CHANGED
@@ -104,8 +104,8 @@ st.markdown(f"__Labels:__ {', '.join(labels)}")
|
|
104 |
|
105 |
# Model selection
|
106 |
left, right = st.columns([4, 2])
|
107 |
-
inputs = left.text_area('', max_chars=4096,
|
108 |
-
|
109 |
model_path = right.selectbox('', options=[k for k in ids], index=0, help='Model to use. ')
|
110 |
split = right.checkbox('Split into sentences')
|
111 |
model = load_model(model_path=f"model/{model_path}.pt")
|
|
|
104 |
|
105 |
# Model selection
|
106 |
left, right = st.columns([4, 2])
|
107 |
+
inputs = left.text_area('', max_chars=4096, value='This is a space about multiclass emotion classification. Write '
|
108 |
+
'something here to see what happens!')
|
109 |
model_path = right.selectbox('', options=[k for k in ids], index=0, help='Model to use. ')
|
110 |
split = right.checkbox('Split into sentences')
|
111 |
model = load_model(model_path=f"model/{model_path}.pt")
|