Views
No views yet
| File | Description |
|---|---|
model.ckpt | Model checkpoint |
config.yaml | Model architecture config |
1git clone https://github.com/takesukeDS/SIFT-VTON
2cd SIFT-VTON
3
4conda create -n siftvton python==3.12.8 -y
5conda activate siftvton
6
7pip install torch==2.7.1 torchvision==0.22.1 --index-url https://download.pytorch.org/whl/cu128
8pip install matplotlib einops omegaconf yacs
9pip install pytorch-lightning==2.5.2
10pip install open-clip-torch==3.1.0
11pip install diffusers==0.34.0
12pip install scipy==1.16.1
13pip install transformers==4.55.0
14conda install -c anaconda ipython -y
15pip install scikit-image clean-fid albumentations==2.0.8
16pip3 install -U xformers==0.0.31.post1
17pip install tensorboard
18pip install accelerate==1.10.0
19pip install numpy==2.2.6[data_root_dir]
└── test
|-- image
|-- image-densepose
|-- agnostic-v3.2
|-- agnostic-mask
|-- cloth
|-- cloth-maskyahavton_test_pairs.txt is also required under [data_root_dir], listing image and cloth filenames one pair per line:image_00001.jpg cloth_00001.jpg
image_00002.jpg cloth_00002.jpg
...1python inference_hf.py \
2 --repo_id takesukeDS/SIFT-VTON \
3 --data_root_dir [data_root_dir] \
4 --save_dir [output_dir] \
5 --phase test \
6 --batch_size 4 \
7 --start_from_noised_agn \
8 --cfg_scale 1.5 \
9 --repaint~/.cache/huggingface/hub/.| Argument | Default | Description |
|---|---|---|
--repo_id | — | This Hub repo (takesukeDS/SIFT-VTON) |
--phase | test | test for the test split, train for the training split |
--cfg_scale | 1.0 | Classifier-free guidance scale |
--denoise_steps | 50 | Number of PLMS denoising steps |
--start_from_noised_agn | off | Start denoising from noised agnostic image instead of pure noise (recommended) |
--repaint | off | Paste back the unmasked region from the original image after generation (recommended) |
--unpair | off | Run unpaired inference (person and garment from different samples) |
--batch_size | 16 | Batch size |
--seed | 1235 | Random seed |
1@misc{takemoto2026siftvton,
2 title = {{SIFT-VTON}: Geometric Correspondence Supervision on Cross-Attention for Virtual Try-On},
3 author = {Takemoto, Kosuke and Koshinaka, Takafumi},
4 year = {2026},
5 eprint = {2605.01296},
6 archivePrefix = {arXiv},
7 primaryClass = {cs.CV},
8 url = {https://arxiv.org/abs/2605.01296}
9}