Convenience + Insight : 이용자의 편의를 찾는 통찰력
김나영 | 신규범 | 이정수 | 이현홍 | 전수민 |
---|---|---|---|---|
Github | Github | Github | Github | Github |
💻 Object Detection Wrap Up Report.pdf
Data
- Data EDA
- Data Argumentation
- Multilabel Stratifiedkfold
- Oversampling
Model
- Cascade RCNN with Various Backbone
- YOLO (v5, R)
- Soft NMS, NMS
- GIoU, DIoU, CIoU
Ensemble
- Ensemble (WBF)
- Classfication
- tile
📂 detection/
│
├── 📂 baseline
│ │
│ ├── 📂 Swin_Transformer_Object_Detection
│ │ └── 📂 configs
│ │ └── 📂 p-stage
│ │ ├── 📂 __base__
│ │ │ ├── 📑 cascade_rcnn_swin_Base_fpn.py
│ │ │ └── 📑 cascade_rcnn_swin_Large_fpn.py
│ │ └── 📑 setup.py
│ │
│ ├── 📂 custom_configs
│ │ └── 📂 CNN
│ │ └── 📑 detectors_cascade_rcnn_resnext101_fpn.py
│ │
│ ├── 📂 efficientdet
│ │ └── 📂 effdet
│ │ ├── 📂 data
│ │ │ ├── 📑 dataset_config.py
│ │ │ └── 📑 transforms.py
│ │ └── 📑 train.py
│ │
│ ├── 📂 utils
│ │ ├── 📂 Compute_mean_std
│ │ ├── 📂 EDA
│ │ ├── 📂 EfficientDet_utils
│ │ ├── 📂 K-Fold
│ │ ├── 📂 inference
│ │ ├── 📂 multilabel_Kfolds
│ │ ├── 📂 oversampling
│ │ ├── 📂 pseudo_label
│ │ ├── 📑 csv2json.py
│ │ └── 📑 label_cleansing.py
│ │
│ ├── 📂 yolodata
│ ├── 📂 yolor
│ └── 📂 yolov5
│ ├── 📂 models
│ │ └── 📑 yolo.py
│ ├── 📂 utils
│ │ └── 📑 augmentations.py
│ ├── 📑 inference.py
│ └── 📑 train.sh
│
└── 📂 dataset