AlejandraVento2 commited on
Commit
addf543
1 Parent(s): ea7cc02

app.py fixed

Browse files
Files changed (1) hide show
  1. app.py +2 -10
app.py CHANGED
@@ -1,6 +1,6 @@
1
  import streamlit as st
2
  from transformers import pipeline
3
- import run_sentiment_analysis from model.py
4
 
5
  st.title("Analisis de Sentimientos")
6
 
@@ -9,12 +9,4 @@ predictions = run_sentiment_analysis(txt)
9
 
10
  for prediction in predictions:
11
  st.write(prediction)
12
- col1, col2 = st.columns(2)
13
-
14
- image = Image.open(file_name)
15
- col1.image(image, use_column_width=True)
16
- predictions = pipeline(image)
17
-
18
- col2.header("Probabilities")
19
- for p in predictions:
20
- col2.subheader(f"{ p['label'] }: { round(p['score'] * 100, 1)}%")
 
1
  import streamlit as st
2
  from transformers import pipeline
3
+ import model.py
4
 
5
  st.title("Analisis de Sentimientos")
6
 
 
9
 
10
  for prediction in predictions:
11
  st.write(prediction)
12
+