pp3232133 commited on
Commit
fdf845c
·
1 Parent(s): 6d8ffcb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -1,4 +1,7 @@
1
  import gradio as gr
2
 
3
- iface = gr.Interface.load("models/pp3232133/distilgpt2-wikitext2")
4
- iface.launch()
 
 
 
 
1
  import gradio as gr
2
 
3
+ def fake_function(x):
4
+ return x
5
+
6
+ iface = gr.Interface(fake_function, inputs="text", outputs="text")
7
+ iface.launch()