Jonny001 commited on
Commit
434846f
1 Parent(s): b151ca8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -1,7 +1,11 @@
1
  import gradio as gr
2
 
3
- theme="NoCrypt/miku"
4
 
5
- text_imagen = gr.Interface.load("models/Purz/face-projection")
 
 
 
 
6
 
7
- text_imagen.launch(text_imagen, theme=theme, debug=True)
 
1
  import gradio as gr
2
 
3
+ model = gr.load("models/Purz/face-projection")
4
 
5
+ interface = gr.Interface(
6
+ model,
7
+ theme="NoCrypt/miku",
8
+ debug=True
9
+ )
10
 
11
+ interface.launch()