gaur3009 commited on
Commit
da7331c
·
verified ·
1 Parent(s): b61f3f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -15,8 +15,8 @@ def gradio_tryon(dress_img, design_img):
15
 
16
  result_path = run_design_warp_on_dress(
17
  dress_path, design_path,
18
- gmm_ckpt="checkpoints/gmm_final.pth",
19
- tom_ckpt="checkpoints/tom_final.pth",
20
  output_dir="output"
21
  )
22
 
@@ -29,6 +29,6 @@ gr.Interface(
29
  gr.Image(label="Design to Warp", type="pil")
30
  ],
31
  outputs=gr.Image(label="Warped Design Output"),
32
- title="🎨 Design Warping on Dress using CP-VTON+",
33
  description="Upload a dress photo and a design. The model warps and blends the design onto the dress realistically."
34
  ).launch()
 
15
 
16
  result_path = run_design_warp_on_dress(
17
  dress_path, design_path,
18
+ gmm_ckpt="checkpoints/GMM/gmm_final.pth",
19
+ tom_ckpt="checkpoints/TOM/tom_final.pth",
20
  output_dir="output"
21
  )
22
 
 
29
  gr.Image(label="Design to Warp", type="pil")
30
  ],
31
  outputs=gr.Image(label="Warped Design Output"),
32
+ title="🎨 Design Warping on Dress",
33
  description="Upload a dress photo and a design. The model warps and blends the design onto the dress realistically."
34
  ).launch()