Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
title = "papuGaPT2 Demo"
|
4 |
+
description = "Demo for polish GPT2 for text generation. To use it, simply add your text, or click one of the examples to load them."
|
5 |
+
examples = [
|
6 |
+
['The tower is 324 metres (1,063 ft) tall,'],
|
7 |
+
["The Moon's orbit around Earth has"],
|
8 |
+
["The smooth Borealis basin in the Northern Hemisphere covers 40%"]
|
9 |
+
]
|
10 |
+
|
11 |
+
gr.Interface.load("huggingface/flax-community/papuGaPT2", inputs=gr.inputs.Textbox(lines=5, label="Input Text"),title=title,description=description, examples=examples).launch()
|