Spaces:
Runtime error
Runtime error
Ahmad-Moiz
commited on
Commit
·
d2d7693
1
Parent(s):
0fd3739
Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,11 @@
|
|
1 |
import streamlit as st
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
model_path = "citizenlab/twitter-xlm-roberta-base-sentiment-
|
5 |
|
6 |
st.set_page_config(page_title="Sentiment Analysis App")
|
7 |
|
|
|
8 |
sentiment_classifier = pipeline("text-classification", model=model_path, tokenizer=model_path)
|
9 |
|
10 |
st.title("Sentiment Analysis App")
|
@@ -22,5 +23,5 @@ if st.button("Analyze Sentiment"):
|
|
22 |
st.write(f"Confidence Score: {sentiment_score:.2f}")
|
23 |
|
24 |
# Run the Streamlit app
|
25 |
-
if
|
26 |
-
st.write("Enter a message and click 'Analyze Sentiment' to classify its
|
|
|
1 |
import streamlit as st
|
2 |
from transformers import pipeline
|
3 |
|
4 |
+
model_path = "citizenlab/twitter-xlm-roberta-base-sentiment-finetunned"
|
5 |
|
6 |
st.set_page_config(page_title="Sentiment Analysis App")
|
7 |
|
8 |
+
|
9 |
sentiment_classifier = pipeline("text-classification", model=model_path, tokenizer=model_path)
|
10 |
|
11 |
st.title("Sentiment Analysis App")
|
|
|
23 |
st.write(f"Confidence Score: {sentiment_score:.2f}")
|
24 |
|
25 |
# Run the Streamlit app
|
26 |
+
if _name_ == "_main_":
|
27 |
+
st.write("Enter a message and click 'Analyze Sentiment' to classify its sentiment.")
|