Spaces:
Runtime error
Runtime error
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, | |
theme = "peach" | |
) | |
interface.launch() |