BlackTrade commited on
Commit
273f50f
·
1 Parent(s): fc91a69

fix text_area

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -7,7 +7,8 @@ from utils import init_model, custom_predict
7
  def main():
8
  st.title("Crypto Market Sentiment Analyzer")
9
 
10
- raw_text = st.text_area("The cryptocurrency market is down today due to Trump's latest restrictions on Nvidia")
 
11
 
12
  if st.button("Analyze"):
13
  pipe = init_model(settings.TASK, settings.MODEL_NAME)
 
7
  def main():
8
  st.title("Crypto Market Sentiment Analyzer")
9
 
10
+ raw_text = st.text_area("Enter Text Here",
11
+ "The cryptocurrency market is down today due to Trump's latest restrictions on Nvidia")
12
 
13
  if st.button("Analyze"):
14
  pipe = init_model(settings.TASK, settings.MODEL_NAME)