├── .gitignore ├── LICENSE ├── README.md ├── bottleneck ├── train │ └── .gitkeep └── validation │ └── .gitkeep ├── config.py ├── dataset └── .gitkeep ├── dataset_create.py ├── dataset_download.sh ├── dataset_prediction ├── .gitkeep └── images │ └── jeans.jpg ├── extra ├── cnn.py ├── dataset.tar.gz ├── dataset_init_categ.py ├── dataset_init_categ_crop.py ├── dataset_init_categ_selective_search_bk.py ├── dataset_prediction.tar.gz ├── dataset_remove_invlaid_classes.sh ├── finetuning.py ├── finetuning_multi.py ├── info_dataset_categ.txt ├── info_dataset_categ_crop.txt ├── results1.txt ├── selective_search_multi.py ├── test_multi.py ├── train_multi.py ├── train_multi_v2.py ├── train_multi_v3.py └── train_multi_v4.py ├── fashion_data └── .gitkeep ├── fonts ├── Ubuntu-C.ttf └── alterebro-pixel-font.ttf ├── logs └── .gitkeep ├── model.py ├── output └── .gitkeep ├── predict.py ├── requirements.txt ├── results ├── Screenshot from 2017-08-07 22-22-00.png ├── Screenshot from 2017-08-07 22-22-27.png ├── Screenshot from 2017-08-07 22-22-47.png ├── Screenshot from 2017-08-07 22-23-07.png ├── Screenshot from 2017-08-07 22-23-23.png ├── Screenshot from 2017-08-07 22-23-41.png ├── Screenshot from 2017-08-07 22-23-58.png ├── Screenshot from 2017-08-07 22-24-16.png ├── Screenshot from 2017-08-07 22-24-31.png ├── Screenshot from 2017-08-07 22-24-46.png ├── Screenshot from 2017-08-10 12-01-53.png ├── Screenshot from 2017-08-10 12-02-29.png ├── Screenshot from 2017-08-10 12-10-23.png ├── Screenshot from 2017-08-10 12-10-50.png └── res.png ├── run.sh ├── selective_search.py ├── train.py ├── utils.py └── weights └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/README.md -------------------------------------------------------------------------------- /bottleneck/train/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bottleneck/validation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/config.py -------------------------------------------------------------------------------- /dataset/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/dataset_create.py -------------------------------------------------------------------------------- /dataset_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/dataset_download.sh -------------------------------------------------------------------------------- /dataset_prediction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset_prediction/images/jeans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/dataset_prediction/images/jeans.jpg -------------------------------------------------------------------------------- /extra/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/cnn.py -------------------------------------------------------------------------------- /extra/dataset.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/dataset.tar.gz -------------------------------------------------------------------------------- /extra/dataset_init_categ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/dataset_init_categ.py -------------------------------------------------------------------------------- /extra/dataset_init_categ_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/dataset_init_categ_crop.py -------------------------------------------------------------------------------- /extra/dataset_init_categ_selective_search_bk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/dataset_init_categ_selective_search_bk.py -------------------------------------------------------------------------------- /extra/dataset_prediction.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/dataset_prediction.tar.gz -------------------------------------------------------------------------------- /extra/dataset_remove_invlaid_classes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/dataset_remove_invlaid_classes.sh -------------------------------------------------------------------------------- /extra/finetuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/finetuning.py -------------------------------------------------------------------------------- /extra/finetuning_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/finetuning_multi.py -------------------------------------------------------------------------------- /extra/info_dataset_categ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/info_dataset_categ.txt -------------------------------------------------------------------------------- /extra/info_dataset_categ_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/info_dataset_categ_crop.txt -------------------------------------------------------------------------------- /extra/results1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/results1.txt -------------------------------------------------------------------------------- /extra/selective_search_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/selective_search_multi.py -------------------------------------------------------------------------------- /extra/test_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/test_multi.py -------------------------------------------------------------------------------- /extra/train_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/train_multi.py -------------------------------------------------------------------------------- /extra/train_multi_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/train_multi_v2.py -------------------------------------------------------------------------------- /extra/train_multi_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/train_multi_v3.py -------------------------------------------------------------------------------- /extra/train_multi_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/extra/train_multi_v4.py -------------------------------------------------------------------------------- /fashion_data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fonts/Ubuntu-C.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/fonts/Ubuntu-C.ttf -------------------------------------------------------------------------------- /fonts/alterebro-pixel-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/fonts/alterebro-pixel-font.ttf -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/model.py -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-07 22-22-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-07 22-22-00.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-07 22-22-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-07 22-22-27.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-07 22-22-47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-07 22-22-47.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-07 22-23-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-07 22-23-07.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-07 22-23-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-07 22-23-23.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-07 22-23-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-07 22-23-41.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-07 22-23-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-07 22-23-58.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-07 22-24-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-07 22-24-16.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-07 22-24-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-07 22-24-31.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-07 22-24-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-07 22-24-46.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-10 12-01-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-10 12-01-53.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-10 12-02-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-10 12-02-29.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-10 12-10-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-10 12-10-23.png -------------------------------------------------------------------------------- /results/Screenshot from 2017-08-10 12-10-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/Screenshot from 2017-08-10 12-10-50.png -------------------------------------------------------------------------------- /results/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/results/res.png -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/run.sh -------------------------------------------------------------------------------- /selective_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/selective_search.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekrana/DeepFashion/HEAD/utils.py -------------------------------------------------------------------------------- /weights/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------