├── FIDscore └── FIDscore.ipynb ├── HR-VITON ├── Preprocessing.md ├── README.md ├── README.txt ├── cp_dataset.py ├── cp_dataset_test.py ├── data │ ├── test │ │ ├── agnostic-v3.2 │ │ │ ├── 00017_00.jpg │ │ │ └── 14274_00.jpg │ │ ├── cloth-mask │ │ │ ├── 00017_00.jpg │ │ │ ├── 14274_00.jpg │ │ │ ├── leaves-1.jpg │ │ │ ├── leaves-2.jpg │ │ │ ├── leaves-3.jpg │ │ │ ├── leaves-4.jpg │ │ │ ├── leaves-5.jpg │ │ │ ├── rabbit-1.jpg │ │ │ ├── rabbit-2.jpg │ │ │ ├── rabbit-3.jpg │ │ │ ├── rabbit-4.jpg │ │ │ └── rabbit-5.jpg │ │ ├── cloth │ │ │ ├── 00017_00.jpg │ │ │ ├── 14274_00.jpg │ │ │ ├── leaves-1.jpg │ │ │ ├── leaves-2.jpg │ │ │ ├── leaves-3.jpg │ │ │ ├── leaves-4.jpg │ │ │ ├── leaves-5.jpg │ │ │ ├── rabbit-1.jpg │ │ │ ├── rabbit-2.jpg │ │ │ ├── rabbit-3.jpg │ │ │ ├── rabbit-4.jpg │ │ │ └── rabbit-5.jpg │ │ ├── image-densepose │ │ │ ├── 00017_00.jpg │ │ │ └── 14274_00.jpg │ │ ├── image-parse-agnostic-v3.2 │ │ │ ├── 00017_00.png │ │ │ └── 14274_00.png │ │ ├── image-parse-v3 │ │ │ ├── 00017_00.png │ │ │ └── 14274_00.png │ │ ├── image │ │ │ ├── 00017_00.jpg │ │ │ └── 14274_00.jpg │ │ ├── openpose_img │ │ │ ├── 00017_00_rendered.png │ │ │ └── 14274_00_rendered.png │ │ ├── openpose_json │ │ │ ├── 00017_00_keypoints.json │ │ │ └── 14274_00_keypoints.json │ │ └── test_pairs.txt │ └── test_pairs.txt ├── eval_models │ ├── __init__.py │ ├── base_model.py │ ├── dist_model.py │ ├── networks_basic.py │ ├── pretrained_networks.py │ └── weights │ │ └── v0.1 │ │ └── alex.pth ├── evaluate.py ├── figures │ └── fig.jpg ├── get_norm_const.py ├── get_parse_agnostic.py ├── network_generator.py ├── networks.py ├── sync_batchnorm │ ├── __init__.py │ ├── batchnorm.py │ ├── batchnorm_reimpl.py │ ├── comm.py │ ├── replicate.py │ └── unittest.py ├── test_condition.py ├── test_generator.py └── train_condition.py ├── LICENSE ├── README.md ├── T恤图案设计生成 ├── leaves1.png ├── leaves2.png ├── leaves3.png ├── leaves4.png ├── leaves5.png ├── leaves512-1.jpg ├── leaves512-2.jpg ├── leaves512-3.jpg ├── leaves512-4.jpg ├── leaves512-5.jpg ├── leaves512-6.jpg ├── nike1.png ├── nike2.png ├── nike3.png ├── nike4.png ├── nike5.png ├── nike512-1.jpg ├── nike512-2.jpg ├── nike512-3.jpg ├── painting512-1.jpg ├── painting512-2.jpg ├── painting512-3.jpg ├── painting512-4.jpg ├── painting512-5.jpg ├── rabbit1.png ├── rabbit2.png ├── rabbit3.png ├── rabbit4.png ├── rabbit512-1.jpg ├── rabbit512-2.jpg ├── rabbit512-3.jpg ├── rabbit512-4.jpg ├── rabbit512-5.jpg ├── test512-1.jpg ├── test512-4.jpg ├── test512-7.jpg ├── test512-8.jpg └── test512-9.jpg ├── cloth_mask ├── README.txt ├── data │ ├── aligned_dataset.py │ ├── base_data_loader.py │ ├── base_dataset.py │ ├── custom_dataset_data_loader.py │ ├── data_loader.py │ └── image_folder.py ├── infer.py ├── model_surgery.py ├── networks │ ├── __init__.py │ └── u2net.py ├── options │ └── base_options.py ├── train.py └── utils │ ├── distributed.py │ ├── saving_utils.py │ └── tensorboard_utils.py ├── clothes_generator ├── README.txt ├── my_train_object.sh ├── my_train_style.sh ├── test_model.py ├── test_prompts_object.txt ├── test_prompts_style.txt └── tools │ ├── ckpt2diffusers.py │ ├── ckpt2diffusers_old.py │ ├── ckpt_prune.py │ ├── diagnose_tensorboard.py │ ├── diffusers2ckpt.py │ ├── handle_images.py │ ├── label_images.py │ ├── test_cuda.py │ ├── train_dreambooth.py │ ├── train_textual_inversion.py │ └── upload_cos.py ├── detail.pdf └── 图片筛选与标签创建 └── create_label.ipynb /FIDscore/FIDscore.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/FIDscore/FIDscore.ipynb -------------------------------------------------------------------------------- /HR-VITON/Preprocessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/Preprocessing.md -------------------------------------------------------------------------------- /HR-VITON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/README.md -------------------------------------------------------------------------------- /HR-VITON/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/README.txt -------------------------------------------------------------------------------- /HR-VITON/cp_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/cp_dataset.py -------------------------------------------------------------------------------- /HR-VITON/cp_dataset_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/cp_dataset_test.py -------------------------------------------------------------------------------- /HR-VITON/data/test/agnostic-v3.2/00017_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/agnostic-v3.2/00017_00.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/agnostic-v3.2/14274_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/agnostic-v3.2/14274_00.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/00017_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/00017_00.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/14274_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/14274_00.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/leaves-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/leaves-1.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/leaves-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/leaves-2.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/leaves-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/leaves-3.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/leaves-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/leaves-4.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/leaves-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/leaves-5.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/rabbit-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/rabbit-1.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/rabbit-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/rabbit-2.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/rabbit-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/rabbit-3.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/rabbit-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/rabbit-4.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth-mask/rabbit-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth-mask/rabbit-5.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/00017_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/00017_00.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/14274_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/14274_00.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/leaves-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/leaves-1.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/leaves-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/leaves-2.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/leaves-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/leaves-3.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/leaves-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/leaves-4.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/leaves-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/leaves-5.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/rabbit-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/rabbit-1.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/rabbit-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/rabbit-2.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/rabbit-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/rabbit-3.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/rabbit-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/rabbit-4.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/cloth/rabbit-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/cloth/rabbit-5.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/image-densepose/00017_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/image-densepose/00017_00.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/image-densepose/14274_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/image-densepose/14274_00.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/image-parse-agnostic-v3.2/00017_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/image-parse-agnostic-v3.2/00017_00.png -------------------------------------------------------------------------------- /HR-VITON/data/test/image-parse-agnostic-v3.2/14274_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/image-parse-agnostic-v3.2/14274_00.png -------------------------------------------------------------------------------- /HR-VITON/data/test/image-parse-v3/00017_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/image-parse-v3/00017_00.png -------------------------------------------------------------------------------- /HR-VITON/data/test/image-parse-v3/14274_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/image-parse-v3/14274_00.png -------------------------------------------------------------------------------- /HR-VITON/data/test/image/00017_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/image/00017_00.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/image/14274_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/image/14274_00.jpg -------------------------------------------------------------------------------- /HR-VITON/data/test/openpose_img/00017_00_rendered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/openpose_img/00017_00_rendered.png -------------------------------------------------------------------------------- /HR-VITON/data/test/openpose_img/14274_00_rendered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/openpose_img/14274_00_rendered.png -------------------------------------------------------------------------------- /HR-VITON/data/test/openpose_json/00017_00_keypoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/openpose_json/00017_00_keypoints.json -------------------------------------------------------------------------------- /HR-VITON/data/test/openpose_json/14274_00_keypoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/openpose_json/14274_00_keypoints.json -------------------------------------------------------------------------------- /HR-VITON/data/test/test_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test/test_pairs.txt -------------------------------------------------------------------------------- /HR-VITON/data/test_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/data/test_pairs.txt -------------------------------------------------------------------------------- /HR-VITON/eval_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/eval_models/__init__.py -------------------------------------------------------------------------------- /HR-VITON/eval_models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/eval_models/base_model.py -------------------------------------------------------------------------------- /HR-VITON/eval_models/dist_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/eval_models/dist_model.py -------------------------------------------------------------------------------- /HR-VITON/eval_models/networks_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/eval_models/networks_basic.py -------------------------------------------------------------------------------- /HR-VITON/eval_models/pretrained_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/eval_models/pretrained_networks.py -------------------------------------------------------------------------------- /HR-VITON/eval_models/weights/v0.1/alex.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/eval_models/weights/v0.1/alex.pth -------------------------------------------------------------------------------- /HR-VITON/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/evaluate.py -------------------------------------------------------------------------------- /HR-VITON/figures/fig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/figures/fig.jpg -------------------------------------------------------------------------------- /HR-VITON/get_norm_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/get_norm_const.py -------------------------------------------------------------------------------- /HR-VITON/get_parse_agnostic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/get_parse_agnostic.py -------------------------------------------------------------------------------- /HR-VITON/network_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/network_generator.py -------------------------------------------------------------------------------- /HR-VITON/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/networks.py -------------------------------------------------------------------------------- /HR-VITON/sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /HR-VITON/sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /HR-VITON/sync_batchnorm/batchnorm_reimpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/sync_batchnorm/batchnorm_reimpl.py -------------------------------------------------------------------------------- /HR-VITON/sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /HR-VITON/sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /HR-VITON/sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /HR-VITON/test_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/test_condition.py -------------------------------------------------------------------------------- /HR-VITON/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/test_generator.py -------------------------------------------------------------------------------- /HR-VITON/train_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/HR-VITON/train_condition.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/README.md -------------------------------------------------------------------------------- /T恤图案设计生成/leaves1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves1.png -------------------------------------------------------------------------------- /T恤图案设计生成/leaves2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves2.png -------------------------------------------------------------------------------- /T恤图案设计生成/leaves3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves3.png -------------------------------------------------------------------------------- /T恤图案设计生成/leaves4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves4.png -------------------------------------------------------------------------------- /T恤图案设计生成/leaves5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves5.png -------------------------------------------------------------------------------- /T恤图案设计生成/leaves512-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves512-1.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/leaves512-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves512-2.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/leaves512-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves512-3.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/leaves512-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves512-4.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/leaves512-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves512-5.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/leaves512-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/leaves512-6.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/nike1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/nike1.png -------------------------------------------------------------------------------- /T恤图案设计生成/nike2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/nike2.png -------------------------------------------------------------------------------- /T恤图案设计生成/nike3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/nike3.png -------------------------------------------------------------------------------- /T恤图案设计生成/nike4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/nike4.png -------------------------------------------------------------------------------- /T恤图案设计生成/nike5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/nike5.png -------------------------------------------------------------------------------- /T恤图案设计生成/nike512-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/nike512-1.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/nike512-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/nike512-2.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/nike512-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/nike512-3.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/painting512-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/painting512-1.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/painting512-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/painting512-2.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/painting512-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/painting512-3.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/painting512-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/painting512-4.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/painting512-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/painting512-5.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/rabbit1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/rabbit1.png -------------------------------------------------------------------------------- /T恤图案设计生成/rabbit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/rabbit2.png -------------------------------------------------------------------------------- /T恤图案设计生成/rabbit3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/rabbit3.png -------------------------------------------------------------------------------- /T恤图案设计生成/rabbit4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/rabbit4.png -------------------------------------------------------------------------------- /T恤图案设计生成/rabbit512-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/rabbit512-1.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/rabbit512-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/rabbit512-2.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/rabbit512-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/rabbit512-3.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/rabbit512-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/rabbit512-4.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/rabbit512-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/rabbit512-5.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/test512-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/test512-1.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/test512-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/test512-4.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/test512-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/test512-7.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/test512-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/test512-8.jpg -------------------------------------------------------------------------------- /T恤图案设计生成/test512-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/T恤图案设计生成/test512-9.jpg -------------------------------------------------------------------------------- /cloth_mask/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/README.txt -------------------------------------------------------------------------------- /cloth_mask/data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/data/aligned_dataset.py -------------------------------------------------------------------------------- /cloth_mask/data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/data/base_data_loader.py -------------------------------------------------------------------------------- /cloth_mask/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/data/base_dataset.py -------------------------------------------------------------------------------- /cloth_mask/data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /cloth_mask/data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/data/data_loader.py -------------------------------------------------------------------------------- /cloth_mask/data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/data/image_folder.py -------------------------------------------------------------------------------- /cloth_mask/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/infer.py -------------------------------------------------------------------------------- /cloth_mask/model_surgery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/model_surgery.py -------------------------------------------------------------------------------- /cloth_mask/networks/__init__.py: -------------------------------------------------------------------------------- 1 | from .u2net import U2NET 2 | -------------------------------------------------------------------------------- /cloth_mask/networks/u2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/networks/u2net.py -------------------------------------------------------------------------------- /cloth_mask/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/options/base_options.py -------------------------------------------------------------------------------- /cloth_mask/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/train.py -------------------------------------------------------------------------------- /cloth_mask/utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/utils/distributed.py -------------------------------------------------------------------------------- /cloth_mask/utils/saving_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/utils/saving_utils.py -------------------------------------------------------------------------------- /cloth_mask/utils/tensorboard_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/cloth_mask/utils/tensorboard_utils.py -------------------------------------------------------------------------------- /clothes_generator/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/README.txt -------------------------------------------------------------------------------- /clothes_generator/my_train_object.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/my_train_object.sh -------------------------------------------------------------------------------- /clothes_generator/my_train_style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/my_train_style.sh -------------------------------------------------------------------------------- /clothes_generator/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/test_model.py -------------------------------------------------------------------------------- /clothes_generator/test_prompts_object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/test_prompts_object.txt -------------------------------------------------------------------------------- /clothes_generator/test_prompts_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/test_prompts_style.txt -------------------------------------------------------------------------------- /clothes_generator/tools/ckpt2diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/ckpt2diffusers.py -------------------------------------------------------------------------------- /clothes_generator/tools/ckpt2diffusers_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/ckpt2diffusers_old.py -------------------------------------------------------------------------------- /clothes_generator/tools/ckpt_prune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/ckpt_prune.py -------------------------------------------------------------------------------- /clothes_generator/tools/diagnose_tensorboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/diagnose_tensorboard.py -------------------------------------------------------------------------------- /clothes_generator/tools/diffusers2ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/diffusers2ckpt.py -------------------------------------------------------------------------------- /clothes_generator/tools/handle_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/handle_images.py -------------------------------------------------------------------------------- /clothes_generator/tools/label_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/label_images.py -------------------------------------------------------------------------------- /clothes_generator/tools/test_cuda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/test_cuda.py -------------------------------------------------------------------------------- /clothes_generator/tools/train_dreambooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/train_dreambooth.py -------------------------------------------------------------------------------- /clothes_generator/tools/train_textual_inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/train_textual_inversion.py -------------------------------------------------------------------------------- /clothes_generator/tools/upload_cos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/clothes_generator/tools/upload_cos.py -------------------------------------------------------------------------------- /detail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/detail.pdf -------------------------------------------------------------------------------- /图片筛选与标签创建/create_label.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blilang/Stable-diffusion-with-HR-VITON/HEAD/图片筛选与标签创建/create_label.ipynb --------------------------------------------------------------------------------