Test2 / app.py
CarlosMF's picture
CarlosMF HF staff
Update app.py
3a747a3
raw
history blame contribute delete
No virus
396 Bytes
import gradio as gr
from transformers import pipeline
pipeline = pipeline(task="text-generation", model="bigscience/bloom-350m")
def translate(text):
predictions = pipeline(text)
return {p["label"]: p["score"] for p in predictions}
gr.Interface(
predict,
inputs=gr.inputs.Text(label="text", type="filepath"),
outputs=gr.outputs.Label,
title="Middle Earth Tales",
).launch()