gitextract_qej34q3x/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 1_bug_report.md │ │ ├── 2_need_help.md │ │ └── 3_feature_request.md │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── config/ │ ├── coco.data │ ├── create_custom_model.sh │ ├── custom.data │ ├── yolov3-tiny.cfg │ └── yolov3.cfg ├── pyproject.toml ├── pytorchyolo/ │ ├── __init__.py │ ├── detect.py │ ├── models.py │ ├── test.py │ ├── train.py │ └── utils/ │ ├── __init__.py │ ├── augmentations.py │ ├── datasets.py │ ├── logger.py │ ├── loss.py │ ├── parse_config.py │ ├── transforms.py │ └── utils.py └── weights/ └── download_weights.sh