Spaces:
Runtime error
Runtime error
File size: 519 Bytes
444246f 3483b56 444246f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
description = "Multilingual generation with mGPT"
title = "Generate your own example"
examples = [["""English: The vase with flowers is on the table.\nFinnish translation:"""]]
interface = gr.Interface.load("huggingface/sberbank-ai/mGPT",
description=description,
examples=examples,
thumbnail = 'https://habrastorage.org/r/w1560/getpro/habr/upload_files/26a/fa1/3e1/26afa13e1d1a56f54c7b0356761af7b8.png',
theme = "huggingface"
)
interface.launch() |