You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 2.8 kB

2 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # DeepFashion
  2. <!-- [DATASET] -->
  3. [MMFashion](https://github.com/open-mmlab/mmfashion) develops "fashion parsing and segmentation" module
  4. based on the dataset
  5. [DeepFashion-Inshop](https://drive.google.com/drive/folders/0B7EVK8r0v71pVDZFQXRsMDZCX1E?usp=sharing).
  6. Its annotation follows COCO style.
  7. To use it, you need to first download the data. Note that we only use "img_highres" in this task.
  8. The file tree should be like this:
  9. ```sh
  10. mmdetection
  11. ├── mmdet
  12. ├── tools
  13. ├── configs
  14. ├── data
  15. │ ├── DeepFashion
  16. │ │ ├── In-shop
  17. │ │ ├── Anno
  18. │ │ │   ├── segmentation
  19. │ │ │   | ├── DeepFashion_segmentation_train.json
  20. │ │ │   | ├── DeepFashion_segmentation_query.json
  21. │ │ │   | ├── DeepFashion_segmentation_gallery.json
  22. │ │ │   ├── list_bbox_inshop.txt
  23. │ │ │   ├── list_description_inshop.json
  24. │ │ │   ├── list_item_inshop.txt
  25. │ │ │   └── list_landmarks_inshop.txt
  26. │ │ ├── Eval
  27. │ │ │ └── list_eval_partition.txt
  28. │ │ ├── Img
  29. │ │ │ ├── img
  30. │ │ │ │ ├──XXX.jpg
  31. │ │ │ ├── img_highres
  32. │ │ │ └── ├──XXX.jpg
  33. ```
  34. After that you can train the Mask RCNN r50 on DeepFashion-In-shop dataset by launching training with the `mask_rcnn_r50_fpn_1x.py` config
  35. or creating your own config file.
  36. ```
  37. @inproceedings{liuLQWTcvpr16DeepFashion,
  38. author = {Liu, Ziwei and Luo, Ping and Qiu, Shi and Wang, Xiaogang and Tang, Xiaoou},
  39. title = {DeepFashion: Powering Robust Clothes Recognition and Retrieval with Rich Annotations},
  40. booktitle = {Proceedings of IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
  41. month = {June},
  42. year = {2016}
  43. }
  44. ```
  45. ## Model Zoo
  46. | Backbone | Model type | Dataset | bbox detection Average Precision | segmentation Average Precision | Config | Download (Google) |
  47. | :---------: | :----------: | :-----------------: | :--------------------------------: | :----------------------------: | :---------:| :-------------------------: |
  48. | ResNet50 | Mask RCNN | DeepFashion-In-shop | 0.599 | 0.584 |[config](https://github.com/open-mmlab/mmdetection/blob/master/configs/deepfashion/mask_rcnn_r50_fpn_15e_deepfashion.py)| [model](https://download.openmmlab.com/mmdetection/v2.0/deepfashion/mask_rcnn_r50_fpn_15e_deepfashion/mask_rcnn_r50_fpn_15e_deepfashion_20200329_192752.pth) &#124; [log](https://download.openmmlab.com/mmdetection/v2.0/deepfashion/mask_rcnn_r50_fpn_15e_deepfashion/20200329_192752.log.json) |

No Description

Contributors (2)