li commited on
Commit ·
43439c5
1
Parent(s): c8080dc
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
demo.launch(share=True)
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
descriptions = "GPT 牛逼"
|
| 3 |
+
example = [["I am king."]]
|
| 4 |
+
gr.Interface.load("models/bert-base-uncased", description=descriptions, examples=example).launch(share=True)
|
|
|