File size: 531 Bytes
4b24692 63399bb adf1c79 40c7d40 97f1cf3 d9f024f 0420f0c 63399bb aab7fc6 8c1a379 32294f6 |
1 2 3 4 5 6 7 8 9 10 11 12 |
#### ignore these lines
import os
os.system("pip uninstall -y gradio")
os.system("pip install gradio==2.5.8a0")
### -------------------------
import gradio as gr
HF_TOKEN = os.getenv('HF_TOKEN')
description = "Translate something from English to German. Flag to add to this dataset: https://huggingface.co/datasets/abidlabs/test-translation-dataset."
hf_saver = gr.HuggingFaceDatasetSaver(HF_TOKEN, "test-translation-dataset")
gr.Interface.load("huggingface/t5-base", flagging_callback=hf_saver, description=description).launch()
|