Spaces:
Runtime error
Runtime error
File size: 592 Bytes
c0f3f5f 5200fc9 5379b0e 4f0f1c0 5200fc9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
title = "Metayazar - Turkish AI Writer"
description = "Write something in Turkish and GPT2 will fill up the rest in Turkish. Bir kaç kelime yazın AI kalanını yazsın, daha kapsamlı örneğini www.metayazar.com üzerinde test edebilirsiniz."
examples = [["Çok uzun zaman önce dağların ardında biri yaşarmış."], ["Buralar eskiden hep dutluktu."], ["Otur yeğenim, otur da konuşalım!"]]
interface = gr.Interface.load("huggingface/gorkemgoknar/gpt2-turkish-writer",
description=description,
examples=examples
)
interface.launch()
|