An open API service indexing awesome lists of open source software.

https://github.com/davianyang/yolo.ai

Yolo Implementation (v1, v2, v3)
https://github.com/davianyang/yolo.ai

darknet darknet19 darknet53 efficientnet pascal-voc python pytorch voc yolo yolov1 yolov2 yolov3

Last synced: 6 months ago
JSON representation

Yolo Implementation (v1, v2, v3)

Awesome Lists containing this project

README

          

# Introduction
## Models:
- [YOLOv1](https://arxiv.org/abs/1506.02640)
- [YOLOv2](https://arxiv.org/abs/1612.08242)
- [YOLOv3](https://arxiv.org/abs/1804.02767)

## Backbone:
- DarkNet
- EfficientNet

## Custom Data Enchancement method:
- Normalize
- Resize
- RandomHorizontalFlip
- RandomVerticalFlip

# Code structure description
```
yolo.ai
├── cfg # The directory where model config file is located (darknet, efficientnet, etc)
├── tests # Implmentation test cases
├── yolo # YOLO implementation code bases
│ ├── data # Base data directory
│ │ ├── datasets # Contain datasets such as pascal-voc
│ │ └── transforms # Custom transforms for Dataset
│ ├── models # Base model directory
│ │ ├── arch # YOLO model assembly place
│ │ ├── backbones # All backbone network gathering here
│ │ ├── detectors # Assembly of all types of detectors
│ │ ├── losses # The gathering place of all loss functions
│ │ ├── metrics # Metrics functions for bounding boxes and losses
│ │ └── modules # Individuals modules for network building
│ └── utils # Utilites file for visualization and network
```