Gyufyjk commited on
Commit
eb7db39
1 Parent(s): bf77fa9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -2,4 +2,6 @@ import gradio as gr
2
 
3
  description = "This is a tool for coloring black and white images."
4
 
5
- gr.load("models/artificialguybr/ColoringBookRedmond-V2").launch(description=description)
 
 
 
2
 
3
  description = "This is a tool for coloring black and white images."
4
 
5
+ model = gr.load("models/artificialguybr/ColoringBookRedmond-V2")
6
+ interface = gr.Interface(fn=model, inputs="text", outputs="text", title="Coloring Book Redmond", description=description)
7
+ interface.launch()