├── README.md ├── captions ├── cap.dress.test.json ├── cap.dress.train.json ├── cap.dress.val.json ├── cap.shirt.test.json ├── cap.shirt.train.json ├── cap.shirt.val.json ├── cap.toptee.test.json ├── cap.toptee.train.json └── cap.toptee.val.json ├── image_splits ├── split.dress.test.json ├── split.dress.train.json ├── split.dress.val.json ├── split.shirt.test.json ├── split.shirt.train.json ├── split.shirt.val.json ├── split.toptee.test.json ├── split.toptee.train.json └── split.toptee.val.json ├── start_kit ├── README.md ├── build_vocab.py ├── data │ ├── .DS_Store │ ├── captions │ │ └── download_the_caption_data │ ├── data_splits │ │ └── download_the_data_split │ └── resized_images │ │ └── download_and_resize_the_images_via_url ├── data_loader.py ├── eval.py ├── models.py ├── models │ └── models_will_be_saved_here ├── resize_images.py ├── train.py └── utils.py └── transformer ├── attribute_prediction ├── attribute_loader.py ├── finetune.py ├── readme.txt └── test.py ├── interactive_retrieval ├── Beam.py ├── Ranker.py ├── UserModel.py ├── Vocabulary.py ├── data_loader.py ├── eval.py ├── glove_embedding.py ├── models.py ├── readme.txt ├── train.py ├── user_model.py └── utils.py ├── readme.txt └── user_modeling ├── Beam.py ├── Embed.py ├── Layers.py ├── Models.py ├── Optim.py ├── Sublayers.py ├── build_vocab.py ├── dataset.py ├── download_image.py ├── preprocess.py ├── preprocess_fashionIQ.py ├── pytorchtools.py ├── readme.txt ├── resize_image.py ├── test.py └── train.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/README.md -------------------------------------------------------------------------------- /captions/cap.dress.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/captions/cap.dress.test.json -------------------------------------------------------------------------------- /captions/cap.dress.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/captions/cap.dress.train.json -------------------------------------------------------------------------------- /captions/cap.dress.val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/captions/cap.dress.val.json -------------------------------------------------------------------------------- /captions/cap.shirt.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/captions/cap.shirt.test.json -------------------------------------------------------------------------------- /captions/cap.shirt.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/captions/cap.shirt.train.json -------------------------------------------------------------------------------- /captions/cap.shirt.val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/captions/cap.shirt.val.json -------------------------------------------------------------------------------- /captions/cap.toptee.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/captions/cap.toptee.test.json -------------------------------------------------------------------------------- /captions/cap.toptee.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/captions/cap.toptee.train.json -------------------------------------------------------------------------------- /captions/cap.toptee.val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/captions/cap.toptee.val.json -------------------------------------------------------------------------------- /image_splits/split.dress.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/image_splits/split.dress.test.json -------------------------------------------------------------------------------- /image_splits/split.dress.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/image_splits/split.dress.train.json -------------------------------------------------------------------------------- /image_splits/split.dress.val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/image_splits/split.dress.val.json -------------------------------------------------------------------------------- /image_splits/split.shirt.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/image_splits/split.shirt.test.json -------------------------------------------------------------------------------- /image_splits/split.shirt.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/image_splits/split.shirt.train.json -------------------------------------------------------------------------------- /image_splits/split.shirt.val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/image_splits/split.shirt.val.json -------------------------------------------------------------------------------- /image_splits/split.toptee.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/image_splits/split.toptee.test.json -------------------------------------------------------------------------------- /image_splits/split.toptee.train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/image_splits/split.toptee.train.json -------------------------------------------------------------------------------- /image_splits/split.toptee.val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/image_splits/split.toptee.val.json -------------------------------------------------------------------------------- /start_kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/start_kit/README.md -------------------------------------------------------------------------------- /start_kit/build_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/start_kit/build_vocab.py -------------------------------------------------------------------------------- /start_kit/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/start_kit/data/.DS_Store -------------------------------------------------------------------------------- /start_kit/data/captions/download_the_caption_data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start_kit/data/data_splits/download_the_data_split: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start_kit/data/resized_images/download_and_resize_the_images_via_url: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start_kit/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/start_kit/data_loader.py -------------------------------------------------------------------------------- /start_kit/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/start_kit/eval.py -------------------------------------------------------------------------------- /start_kit/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/start_kit/models.py -------------------------------------------------------------------------------- /start_kit/models/models_will_be_saved_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start_kit/resize_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/start_kit/resize_images.py -------------------------------------------------------------------------------- /start_kit/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/start_kit/train.py -------------------------------------------------------------------------------- /start_kit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/start_kit/utils.py -------------------------------------------------------------------------------- /transformer/attribute_prediction/attribute_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/attribute_prediction/attribute_loader.py -------------------------------------------------------------------------------- /transformer/attribute_prediction/finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/attribute_prediction/finetune.py -------------------------------------------------------------------------------- /transformer/attribute_prediction/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /transformer/attribute_prediction/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/attribute_prediction/test.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/Beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/Beam.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/Ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/Ranker.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/UserModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/UserModel.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/Vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/Vocabulary.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/data_loader.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/eval.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/glove_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/glove_embedding.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/models.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /transformer/interactive_retrieval/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/train.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/user_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/user_model.py -------------------------------------------------------------------------------- /transformer/interactive_retrieval/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/interactive_retrieval/utils.py -------------------------------------------------------------------------------- /transformer/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /transformer/user_modeling/Beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/Beam.py -------------------------------------------------------------------------------- /transformer/user_modeling/Embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/Embed.py -------------------------------------------------------------------------------- /transformer/user_modeling/Layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/Layers.py -------------------------------------------------------------------------------- /transformer/user_modeling/Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/Models.py -------------------------------------------------------------------------------- /transformer/user_modeling/Optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/Optim.py -------------------------------------------------------------------------------- /transformer/user_modeling/Sublayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/Sublayers.py -------------------------------------------------------------------------------- /transformer/user_modeling/build_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/build_vocab.py -------------------------------------------------------------------------------- /transformer/user_modeling/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/dataset.py -------------------------------------------------------------------------------- /transformer/user_modeling/download_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/download_image.py -------------------------------------------------------------------------------- /transformer/user_modeling/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/preprocess.py -------------------------------------------------------------------------------- /transformer/user_modeling/preprocess_fashionIQ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/preprocess_fashionIQ.py -------------------------------------------------------------------------------- /transformer/user_modeling/pytorchtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/pytorchtools.py -------------------------------------------------------------------------------- /transformer/user_modeling/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /transformer/user_modeling/resize_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/resize_image.py -------------------------------------------------------------------------------- /transformer/user_modeling/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/test.py -------------------------------------------------------------------------------- /transformer/user_modeling/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XiaoxiaoGuo/fashion-iq/HEAD/transformer/user_modeling/train.py --------------------------------------------------------------------------------