https://github.com/bowenc0221/mxnet-yolo
mxnet implementation of yolo and darknet2mxnet converter
https://github.com/bowenc0221/mxnet-yolo
darknet mxnet yolo2
Last synced: 7 months ago
JSON representation
mxnet implementation of yolo and darknet2mxnet converter
- Host: GitHub
- URL: https://github.com/bowenc0221/mxnet-yolo
- Owner: bowenc0221
- Created: 2017-08-03T01:30:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-07T03:30:54.000Z (about 8 years ago)
- Last Synced: 2025-03-21T01:41:33.875Z (7 months ago)
- Topics: darknet, mxnet, yolo2
- Language: C
- Size: 67.4 KB
- Stars: 17
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MXNet-YOLO
This repo contains:
* [darknet](##darknet) : source code for darknet
* [darknet2mxnet](##darknet2mxnet) : a converter to convert darknet weights to mxnet params
* [darknet tutorial](##Tutorial) : a tutorial for darknet
* [MXNet YOLO](##MXNet-YOLO-Symbols) : a implementaion of YOLO in MXNet
* [Darknet YOLO](##Darknet-YOLO) : YOLO code in darknet with the function to store parameters and feature map## darknet
contains original darknet source codes. [link](https://github.com/pjreddie/darknet/tree/624a59307568212b7aecd9ae617bbcf4d94b8cec)
## darknet2mxnet
contains code to convert darknet weights to mxnet params. [link](https://github.com/bowenc0221/mxnet-yolo/tree/master/darknet2mxnet)
## Tutorial
contains documentation for darknet. [link](https://github.com/bowenc0221/mxnet-yolo/tree/master/Tutorial)
## MXNet YOLO Symbols
contains mxnet symbol for yolo v2. [link](https://github.com/bowenc0221/mxnet-yolo/tree/master/Symbols)
## Darknet YOLO
contains code to store parameters and feature map of arbitrary layer given a single image as input. [link](https://github.com/bowenc0221/mxnet-yolo/tree/master/Darknet-YOLO)###### This repo is still under development.