inst-inpaint / constants.py
abyildirim's picture
gradio files are synced with the github repo
2d42726
raw
history blame
No virus
1.17 kB
TITLE = "Inst-Inpaint: Instructing to Remove Objects with Diffusion Models"
DESCRIPTION = """
<p style='text-align: center'>
<a href='http://instinpaint.abyildirim.com' target='_blank'>Project Page</a> |
<a href='https://arxiv.org/abs/2304.03246' target='_blank'>Paper</a> |
<a href='https://github.com/abyildirim/inst-inpaint' target='_blank'>GitHub Repo</a> |
</p>
<p style='text-align: center'>
This demo demonstrates the Inst-Inpaint's abilities for instruction-based image inpainting.
</p>
"""
EXAMPLES = [
["examples/kite-boy.png", "Remove the colorful kite", True],
["examples/cat-car.jpg", "Remove the car", True],
["examples/bus-tree.jpg", "Remove the red bus", True],
["examples/cups.webp", "Remove the cup at the left", True],
["examples/woman-fantasy.jpg", "Remove the woman", True],
["examples/clock.png", "Remove the round clock at the center", True],
["examples/woman.png", "Remove the woman at the left", True],
["examples/men.png", "Remove the man at the right", True],
["examples/tree.png", "Remove the tree", True],
["examples/birds.png", "Remove the bird at the right of the bird", True]
]