Spaces:
Sleeping
Sleeping
File size: 692 Bytes
732315d 215422a 732315d 997db33 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import gradio as gr
from transformers import pipeline
# Load sentiment analysis pipeline
classifier = pipeline("sentiment-analysis")
# Gradio interface function
def analyze_sentiment(text):
result = classifier(text)
sentiment_label = result[0]['label']
confidence_score = result[0]['score']
return f"Sentiment: {sentiment_label}, Confidence: {confidence_score:.4f}"
# Create Gradio interface
iface = gr.Interface(
fn=analyze_sentiment,
inputs=gr.Textbox(),
outputs=gr.Textbox(),
live=True,
title="Sentiment Analysis App ππ‘ππ",
description="Enter a text to analyze its sentiment."
)
# Launch the Gradio app
iface.launch(share=True)
|