├── .gitignore ├── README.md ├── ckpt └── download_checkpoint ├── config.py ├── data └── download_viton_hd ├── main.py ├── references └── teaser.png ├── requirements.txt └── src ├── inference.py ├── model ├── attention.py └── pipeline.py ├── preprocessing.py ├── stats ├── calculate_statistics.py └── metrics.py └── test_vton.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/README.md -------------------------------------------------------------------------------- /ckpt/download_checkpoint: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/config.py -------------------------------------------------------------------------------- /data/download_viton_hd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/main.py -------------------------------------------------------------------------------- /references/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/references/teaser.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/src/inference.py -------------------------------------------------------------------------------- /src/model/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/src/model/attention.py -------------------------------------------------------------------------------- /src/model/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/src/model/pipeline.py -------------------------------------------------------------------------------- /src/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/src/preprocessing.py -------------------------------------------------------------------------------- /src/stats/calculate_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/src/stats/calculate_statistics.py -------------------------------------------------------------------------------- /src/stats/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/src/stats/metrics.py -------------------------------------------------------------------------------- /src/test_vton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixarchakos/try-off-anyone/HEAD/src/test_vton.py --------------------------------------------------------------------------------