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

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

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.