Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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")
|
|
|
|
|
|
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()
|