EnzoBustos commited on
Commit
1c07b94
1 Parent(s): 567bb6c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -86,7 +86,7 @@ with model_1:
86
  submit = st.button('Gerar!')
87
 
88
  with model_2:
89
- if submit:
90
  with st.spinner('Aguarde enquanto estamos processando...'):
91
  if translator == "TextBlob":
92
  text_en = translate_text_blob(text)
@@ -99,12 +99,9 @@ with model_2:
99
  sentiment = sentiment_vader(text_en, sid_obj)
100
  elif sentimentor == "FinBERT":
101
  sentiment = sentiment_finbert(text_en, finbert_pipeline)
102
-
103
  st.write(text_en)
104
  st.write(sentiment)
105
-
106
-
107
-
108
  with model:
109
  st.header("Modelo para Tradução e Classificação!")
110
  text = st.text_area("Coloque seu texto sobre mercado financeiro em português!")
 
86
  submit = st.button('Gerar!')
87
 
88
  with model_2:
89
+ if submit:
90
  with st.spinner('Aguarde enquanto estamos processando...'):
91
  if translator == "TextBlob":
92
  text_en = translate_text_blob(text)
 
99
  sentiment = sentiment_vader(text_en, sid_obj)
100
  elif sentimentor == "FinBERT":
101
  sentiment = sentiment_finbert(text_en, finbert_pipeline)
 
102
  st.write(text_en)
103
  st.write(sentiment)
104
+
 
 
105
  with model:
106
  st.header("Modelo para Tradução e Classificação!")
107
  text = st.text_area("Coloque seu texto sobre mercado financeiro em português!")