Ahsen Khaliq commited on
Commit
f2d8ee6
1 Parent(s): 6bc07fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -19,9 +19,10 @@ def inference(img):
19
  return "./_samples/character_pose_estim.png"
20
 
21
 
22
- title = "Anime2Sketch"
23
- description = "demo for Anime2Sketch. To use it, simply upload your image, or click one of the examples to load them. Read more at the links below."
24
- article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2104.05703'>Adversarial Open Domain Adaption for Sketch-to-Photo Synthesis</a> | <a href='https://github.com/Mukosame/Anime2Sketch'>Github Repo</a></p>"
 
25
 
26
  gr.Interface(
27
  inference,
@@ -29,6 +30,7 @@ gr.Interface(
29
  gr.outputs.Image(type="file", label="Output"),
30
  title=title,
31
  description=description,
32
- article=article
33
- ).launch(debug=True)
 
34
 
 
19
  return "./_samples/character_pose_estim.png"
20
 
21
 
22
+ title = "bizarre-pose-estimator"
23
+ description = "Gradio demo for Transfer Learning for Pose Estimation of Illustrated Characters. To use it, simply upload your image, or click one of the examples to load them. Read more at the links below."
24
+
25
+ article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2108.01819'>Transfer Learning for Pose Estimation of Illustrated Characters</a> | <a href='https://github.com/ShuhongChen/bizarre-pose-estimator'>Github Repo</a></p>"
26
 
27
  gr.Interface(
28
  inference,
 
30
  gr.outputs.Image(type="file", label="Output"),
31
  title=title,
32
  description=description,
33
+ article=article,
34
+ allow_flagging="never"
35
+ ).launch(enable_queue=True)
36