Spaces:
Runtime error
Runtime error
abhilash1910
commited on
Commit
·
b7c4948
1
Parent(s):
42bab40
Initial commit
Browse files
app.py
CHANGED
@@ -13,8 +13,5 @@ def infer(img):
|
|
13 |
|
14 |
|
15 |
title = "CartoonGAN"
|
16 |
-
description = "Gradio Demo for
|
17 |
-
|
18 |
-
#description = "Gradio Demo for AnimeGanv2 Face Portrait. To use it, simply upload your image, or click one of the examples to load them. Read more at the links below. Please use a cropped portrait picture for best results similar to the examples below."
|
19 |
-
iface = gr.Interface(infer, gr.inputs.Image(type="pil"), "image",title=title,description=description)
|
20 |
-
iface.launch()
|
|
|
13 |
|
14 |
|
15 |
title = "CartoonGAN"
|
16 |
+
description = "Gradio Demo for CartoonGAN. To use it, simply upload an image."
|
17 |
+
iface = gr.Interface(infer, gr.inputs.Image(type="pil"), "image",title=title,description=description).launch(share=True)
|
|
|
|
|
|