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

fix text_area

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -7,8 +7,7 @@ from utils import init_model, custom_predict
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)
 
7
  def main():
8
  st.title("Crypto Market Sentiment Analyzer")
9
 
10
+ raw_text = st.text_area("Enter Text Here", "Type Here, for example - 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)