Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
from transformers import pipeline
|
| 3 |
+
|
| 4 |
+
def main():
|
| 5 |
+
sentiment_pipeline = pipeline(model="distilbert/distilbert-base-uncased-finetuned-sst-2-english")
|
| 6 |
+
|
| 7 |
+
st.title("Sentiment Analysis with HuggingFace Spaces")
|
| 8 |
+
st.write("Enter a sentence to analyze its sentiment:")
|
| 9 |
+
|
| 10 |
+
user_input = st.text_input("")
|
| 11 |
+
if user_input:
|
| 12 |
+
result = sentiment_pipeline(user_input)
|
| 13 |
+
sentiment = result[0]["label"]
|
| 14 |
+
confidence = result[0]["score"]
|
| 15 |
+
|
| 16 |
+
st.write(f"Sentiment: {sentiment}")
|
| 17 |
+
st.write(f"Confidence: {confidence:.2f}")
|
| 18 |
+
|
| 19 |
+
if __name__ == "__main__":
|
| 20 |
+
main()
|