Merge branch 'main' of https://huggingface.co/spaces/carolineec/informativedrawings into main
Browse files
app.py
CHANGED
@@ -101,10 +101,10 @@ def predict(input_img):
|
|
101 |
|
102 |
title="informative-drawings"
|
103 |
description="Gradio Demo for line drawing generation. "
|
104 |
-
article = "<p style='text-align: center'><a href='TODO' target='_blank'>Project Page</a> | <a href='codelink' target='_blank'>Github</a></p>"
|
105 |
examples=[['cat.png']]
|
106 |
|
107 |
|
108 |
-
iface = gr.Interface(predict, gr.inputs.Image(type='filepath'), "image", title=title,description=description,
|
109 |
|
110 |
iface.launch()
|
|
|
101 |
|
102 |
title="informative-drawings"
|
103 |
description="Gradio Demo for line drawing generation. "
|
104 |
+
# article = "<p style='text-align: center'><a href='TODO' target='_blank'>Project Page</a> | <a href='codelink' target='_blank'>Github</a></p>"
|
105 |
examples=[['cat.png']]
|
106 |
|
107 |
|
108 |
+
iface = gr.Interface(predict, gr.inputs.Image(type='filepath'), "image", title=title,description=description,examples=examples)
|
109 |
|
110 |
iface.launch()
|