Update app.py
Browse files
    	
        app.py
    CHANGED
    
    | 
         @@ -257,12 +257,11 @@ for ex_human in human_list_path: 
     | 
|
| 257 | 
         | 
| 258 | 
         
             
            ##default human
         
     | 
| 259 | 
         | 
| 260 | 
         
            -
            _description = """\
         
     | 
| 261 | 
         
            -
            Virtual Try-on with human image and garment image. Check out the model [here](https://huggingface.co/yisol/IDM-VTON) and the source code [here](https://github.com/yisol/IDM-VTON).
         
     | 
| 262 | 
         
            -
            """
         
     | 
| 263 | 
         | 
| 264 | 
         
             
            image_blocks = gr.Blocks().queue()
         
     | 
| 265 | 
         
             
            with image_blocks as demo:
         
     | 
| 
         | 
|
| 
         | 
|
| 266 | 
         
             
                with gr.Row():
         
     | 
| 267 | 
         
             
                    with gr.Column():
         
     | 
| 268 | 
         
             
                        imgs = gr.ImageEditor(sources='upload', type="pil", label='Human. Mask with pen or use auto-masking', interactive=True)
         
     | 
| 
         | 
|
| 257 | 
         | 
| 258 | 
         
             
            ##default human
         
     | 
| 259 | 
         | 
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 260 | 
         | 
| 261 | 
         
             
            image_blocks = gr.Blocks().queue()
         
     | 
| 262 | 
         
             
            with image_blocks as demo:
         
     | 
| 263 | 
         
            +
                gr.Markdown("## IDM-VTON πππ")
         
     | 
| 264 | 
         
            +
                gr.Markdown("Virtual Try-on with your image and garment image. Check out the [source codes](https://github.com/yisol/IDM-VTON) and the [model](https://huggingface.co/yisol/IDM-VTON)")
         
     | 
| 265 | 
         
             
                with gr.Row():
         
     | 
| 266 | 
         
             
                    with gr.Column():
         
     | 
| 267 | 
         
             
                        imgs = gr.ImageEditor(sources='upload', type="pil", label='Human. Mask with pen or use auto-masking', interactive=True)
         
     |