Spaces:
Sleeping
Sleeping
File size: 361 Bytes
448535b c1d00b2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import gradio as gr
from transformers import pipeline
pipe = pipeline("sentiment-analysis")
def get_sentiment(input):
return pipe(input)
gr.Interface(
fn=get_sentiment,
inputs="text",
outputs=["text"],
title="AI Workshop Sentiment Analysis with Transformers",
description="Get Sentiment (Positive/Negative) for your input",
).launch() |