├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── data ├── build_polyvore_data.py ├── features │ └── README.md ├── final_word_dict.txt ├── label │ └── README.md └── tf_records │ └── README.md ├── extract_feature.sh ├── fill_in_blank.sh ├── model └── README.md ├── outfit_generation.sh ├── polyvore ├── configuration.py ├── fashion_compatibility.py ├── fill_in_blank.py ├── fill_in_blank_siamese.py ├── ops │ ├── __init__.py │ ├── image_embedding.py │ ├── image_embedding_test.py │ ├── image_processing.py │ └── inputs.py ├── polyvore_model_bi.py ├── polyvore_model_siamese.py ├── polyvore_model_vse.py ├── run_inference.py ├── run_inference_siamese.py ├── run_inference_vse.py ├── set_generation.py ├── train.py └── train_siamese.py ├── predict_compatibility.sh ├── query.json ├── results ├── README.md └── outfit.png └── train.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/README.md -------------------------------------------------------------------------------- /data/build_polyvore_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/data/build_polyvore_data.py -------------------------------------------------------------------------------- /data/features/README.md: -------------------------------------------------------------------------------- 1 | Extracted image features go here. 2 | -------------------------------------------------------------------------------- /data/final_word_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/data/final_word_dict.txt -------------------------------------------------------------------------------- /data/label/README.md: -------------------------------------------------------------------------------- 1 | The files in polyvore.tar.gz go here. 2 | -------------------------------------------------------------------------------- /data/tf_records/README.md: -------------------------------------------------------------------------------- 1 | TFRecords are stored in this folder. 2 | -------------------------------------------------------------------------------- /extract_feature.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/extract_feature.sh -------------------------------------------------------------------------------- /fill_in_blank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/fill_in_blank.sh -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/model/README.md -------------------------------------------------------------------------------- /outfit_generation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/outfit_generation.sh -------------------------------------------------------------------------------- /polyvore/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/configuration.py -------------------------------------------------------------------------------- /polyvore/fashion_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/fashion_compatibility.py -------------------------------------------------------------------------------- /polyvore/fill_in_blank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/fill_in_blank.py -------------------------------------------------------------------------------- /polyvore/fill_in_blank_siamese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/fill_in_blank_siamese.py -------------------------------------------------------------------------------- /polyvore/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /polyvore/ops/image_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/ops/image_embedding.py -------------------------------------------------------------------------------- /polyvore/ops/image_embedding_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/ops/image_embedding_test.py -------------------------------------------------------------------------------- /polyvore/ops/image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/ops/image_processing.py -------------------------------------------------------------------------------- /polyvore/ops/inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/ops/inputs.py -------------------------------------------------------------------------------- /polyvore/polyvore_model_bi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/polyvore_model_bi.py -------------------------------------------------------------------------------- /polyvore/polyvore_model_siamese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/polyvore_model_siamese.py -------------------------------------------------------------------------------- /polyvore/polyvore_model_vse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/polyvore_model_vse.py -------------------------------------------------------------------------------- /polyvore/run_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/run_inference.py -------------------------------------------------------------------------------- /polyvore/run_inference_siamese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/run_inference_siamese.py -------------------------------------------------------------------------------- /polyvore/run_inference_vse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/run_inference_vse.py -------------------------------------------------------------------------------- /polyvore/set_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/set_generation.py -------------------------------------------------------------------------------- /polyvore/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/train.py -------------------------------------------------------------------------------- /polyvore/train_siamese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/polyvore/train_siamese.py -------------------------------------------------------------------------------- /predict_compatibility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/predict_compatibility.sh -------------------------------------------------------------------------------- /query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/query.json -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- 1 | The generated outfit goes here. 2 | -------------------------------------------------------------------------------- /results/outfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/results/outfit.png -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xthan/polyvore/HEAD/train.sh --------------------------------------------------------------------------------