- ์ ์ฒด ์ด๋ฏธ์ง ๊ฐ์ : 9754์ฅ (train 4883 + test 4871 ์ฅ)
- ๋ถ๋ฅ class(10๊ฐ) : General trash, Paper, Paper pack, Metal, Glass, Plastic, Styrofoam, Plastic bag, Battery, Clothing
- ์ด๋ฏธ์ง ํฌ๊ธฐ : (1024, 1024)
- annotation file : image ์ ๋ณด (id, height, width, file name) + annotation ์ ๋ณด (id, Bbox, area, category id, image id)
- Input : ์ฐ๋ ๊ธฐ ๊ฐ์ฒด๊ฐ ๋ด๊ธด ์ด๋ฏธ์ง, Bbox (์ขํ, ์นดํ ๊ณ ๋ฆฌ) annotation file (COCO format)
- Output : Bbox ์ขํ, ์นดํ ๊ณ ๋ฆฌ, score ๊ฐ (Pascal VOC format)
- Evaluation : Test set์ mAP50(Mean Average Precision)๋ก ํ๊ฐ
- Object Detection์์ ์ฌ์ฉํ๋ ๋ํ์ ์ธ ์ฑ๋ฅ ์ธก์ ๋ฐฉ๋ฒ
- Ground Truth ๋ฐ์ค์ Prediction ๋ฐ์ค ๊ฐ IoU(Intersection Over Union, Detector์ ์ ํ๋๋ฅผ ํ๊ฐํ๋ ์งํ)๊ฐ 50์ด ๋๋ ์์ธก์ ๋ํด True๋ผ๊ณ ํ๋จ
![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|
๊น์ฉ์ฐ | ๋ฐ์ข ์ | ์์๋ | ์ ํ์ค | ์กฐ์ํ |
- Bbox ๋ Medium, ์์ Large๊ฐ ๊ฐ์ฅ ๋ง์
- Bbox ํฌ๊ธฐ์ ๋ํ class ๋ณ imbalance๋ ์กด์ฌํ์ง ์์์
- ๊ฐ class ์ฌ์ด์ ๊ฐ์๋ imbalance๊ฐ ์กด์ฌ
- Train Set์ annotation์ ์ด์ฉํ์ฌ ์ง์ labeling์ ํ์ธํ ๊ฒฐ๊ณผ ๋๋ถ๋ถ์ Bbox๊ฐ ๊ท์น์ฑ์ด ์กด์ฌํ์ง ์์๊ณ , ์๋ชป labeling๋์ด์๋ ๊ฒ์ด ์๋นํ ๋ง์ด ์กด์ฌ(์ค์ ์ด๋ฏธ์ง๋ ์์ด ๋ง์ ์ฒจ๋ถ ์๋ต)
- relabeling์ ํ์์ฑ ์๊ฐ
โโโ codebook : EDA, ensemble, visualize๋ฑ์ ์ฝ๋๋ฅผ ์์ฑ
โ โโโ EDA.ipynb
โ โโโ ensemble_WBF.py
โ โโโ groupKfold.ipynb
โ โโโ pseudo_labeling.ipynb
โ โโโ pyproject.toml
โโโ mmdetection : mmdetection library baseline code
โ โโโ configs
โ โโโ custom_configs
โ โโโ train.py
โ โโโ train_p.py
โ โโโ pyproject.toml
โโโ .gitignore
- mmdetection ํด๋ ๋ด์ README.md ์ฐธ๊ณ
- EDA.ipynb : train dataset EDA code
- ensemble_WBF.py : ensemble-boxes๋ฅผ ํ์ฉํ object detection ensemble code
- groupKfold.ipynb : train dataset์ stratified-groupKfold๋ก ๋๋๊ธฐ ์ํด ์ฌ์ฉํ code
- pseudo_labeling.ipynb : test dataset์ 0.6 mAP์ ๋ชจ๋ธ๋ก pseudo labeling ํ๊ธฐ ์ํ code
- visualize_test_image.ipynb : submission file visualize code
- softNMS_WBF_1 : ๋ชจ๋ธ 7๊ฐ (mAP : 0.6610 โ 0.6420)
- softNMS_WBF_2 : ๋ชจ๋ธ 4๊ฐ (mAP : 0.6604 โ 0.6400)
- ๊ฐ๋ณ ๋ชจ๋ธ ์ค ์ต๊ณ ์ ์(mAP : 0.6283 โ 0.6128, Cascade faster rcnn(backbone : swin transformer base))
- ๊ฐ์ ๋ชจ๋ธ์์๋ soft-nms ๋ฐฉ์์ด ๊ฒฐ๊ณผ๊ฐ ์ข์๊ณ , ์๋ก ๋ค๋ฅธ ๋ชจ๋ธ์ WBF ๋ฐฉ์์ ์ฑ๋ฅ์ด ์ข๊ฒ ๋ํ๋จ
- ๊ฐ๊ฐ์ ๋ชจ๋ธ์ ๋ํด์ soft-nms๋ฅผ ์ ์ฉํ ์ด์ ๋ ๊ฐ์ ๊ณณ์ ๋ฐ์ค๋ฅผ ์ฌ๋ฌ ๋ฒ ์น๋ ํ์์ด ๋ํ๋ ์ํฅ๋ ฅ์ ์ค์ด๊ธฐ ์ํด์ ์งํ
-
dataset : โ๋ถ์คํธ์บ ํ AI Techโ
-
mmdetection
-
UniverseNet
-
ensemble-boxes

