sunwaee commited on
Commit
335a8d7
1 Parent(s): df775cc

fixed scuffed format

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- value='This is a space about multiclass emotion classification. Write 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")
 
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")