How to use from the
Use from the
Diffusers library
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
from diffusers.utils import load_image

# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("ixarchakos/tryOffAnyone", dtype=torch.bfloat16, device_map="cuda")

prompt = "Turn this cat into a dog"
input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png")

image = pipe(image=input_image, prompt=prompt).images[0]

TryOffAnyone

teaser.png

The models proposed in the paper "TryOffAnyone: Tiled Cloth Generation from a Dressed Person" [paper_arxiv] [github]:

Citation

If you find this repository useful in your research, please consider giving a star โญ and a citation:

@misc{xarchakos2024tryoffanyonetiledclothgeneration,
      title={TryOffAnyone: Tiled Cloth Generation from a Dressed Person}, 
      author={Ioannis Xarchakos and Theodoros Koukopoulos},
      year={2024},
      eprint={2412.08573},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={https://arxiv.org/abs/2412.08573}, 
}
Downloads last month
67
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for ixarchakos/tryOffAnyone

Finetuned
(3)
this model

Spaces using ixarchakos/tryOffAnyone 2

Paper for ixarchakos/tryOffAnyone