Mask Image Classification

Code for solution in Mask Image Classification hosted by Naver Boostcamp AI Tech.

To learn more detail about the competition, please, refer to the AI Stage post

Archive contents

minibatch28/ ├── data/ | ├── image/ | | ├── train/ │ | | ├── 00001_male_Asian_40/ │ | | | ├── mask.jpg │ | | | ├── mask2.jpg │ | | | ├── incorrect.png │ | | | └── normal.jpeg │ | | ├── {Number}_{Gender}_{Race}_{Age}/ │ | | | ├── ... │ | | | └── ... | | | └── 99999_female_Asian_150/ │ | | ├── mask.jpg │ | | ├── incorrect.jpg │ | | └── normal.jpg | | └── eval/ │ | ├── abcde.jpg │ | ├── {Any_image_name}.jpg │ | └── lorem_ipsum.jpeg │ ├── train.csv │ └── info.csv ├── output/ │ └── ensemble/ ├── models/ ├── dataset.py ├── loss.py ├── inference.py ├── train.py └── train.sh

Requirements

You can use the pip install -r requirements.txt to install the necessary packages.