miwojc commited on
Commit
742180e
·
1 Parent(s): f0945d6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -1,3 +1,11 @@
1
  import gradio as gr
2
 
3
- gr.Interface.load("huggingface/flax-community/papuGaPT2").launch()
 
 
 
 
 
 
 
 
 
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()