import gradio as gr from transformers import pipeline pipe = pipeline(task="sentiment-analysis", model="amaldevc/nlp_sentiment") def predict(review): pipe.predict(review) iface = gr.Interface(fn=predict, inputs="text", outputs="text") iface.launch()