Spaces:
Running
Running
File size: 677 Bytes
2cec43b a3eeec7 2cec43b 552acce 2cec43b a3eeec7 2cec43b 552acce a3eeec7 2cec43b e8cf19c a3eeec7 2cec43b a3eeec7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import streamlit as st
from transformers import pipeline
# Buat title pada web apps
st.title("Sentiment Analysis App")
st.markdown("You can input 8 different language: arabic, english, french, german, hindi, italian, portuguese, spanish")
# Buat text input dari user
text = st.text_input("Enter text here", "I love you")
# Model initiate
pipeline = pipeline(task='text-classification', model='cardiffnlp/twitter-xlm-roberta-base-sentiment-multilingual')
if st.button("Analyze"):
result = pipeline(text)[0]
sentiment = result['label']
score = result['score']
st.write(f"Sentiment: {sentiment}")
if score is not None:
st.write(f"Score: {score}")
|