Test2 / app.py
CarlosMF's picture
CarlosMF HF staff
Update app.py
e58c21f
raw
history blame
404 Bytes
import gradio as gr
from transformers import pipeline
pipeline = pipeline(task="translation", 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(num_top_classes=2),
title="Translation",
).launch()