ZRLTMU commited on
Commit
15c089f
·
1 Parent(s): db29e77

adapted to model

Browse files
Files changed (1) hide show
  1. app.py +3 -8
app.py CHANGED
@@ -1,13 +1,8 @@
1
  import gradio as gr
2
 
3
- description = "Story generation with GPT-2"
4
- title = "Generate your own story"
5
- examples = [["Adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
6
-
7
- interface = gr.Interface.load("huggingface.co/tCode16/pokemon_kia",
8
- description=description,
9
- examples=examples
10
- )
11
 
12
  interface.launch()
13
 
 
1
  import gradio as gr
2
 
3
+ title = "Detect Pokemon"
4
+
5
+ interface = gr.Interface.load("huggingface.co/tCode16/pokemon_kia")
 
 
 
 
 
6
 
7
  interface.launch()
8