sunwaee commited on
Commit
df775cc
1 Parent(s): 1bdad83

removed placeholder

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -104,7 +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, placeholder='Write something here to see what happens! ')
 
108
  model_path = right.selectbox('', options=[k for k in ids], index=0, help='Model to use. ')
109
  split = right.checkbox('Split into sentences')
110
  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,
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")