stasguy commited on
Commit
58757bb
·
1 Parent(s): 0c989ba

Create new file

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def update(name):
4
+ return f"Welcome to Gradio, {name}!"
5
+
6
+
7
+ gr.Interface.load('huggingface/distilgpt2').launch()
8
+
9
+