Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/Harick1/caffe-yolo

Caffe for YOLO
https://github.com/Harick1/caffe-yolo

Last synced: 3 months ago
JSON representation

Caffe for YOLO

Awesome Lists containing this project

README

        

# CAFFE for YOLO

## Reference

> You Only Look Once: Unified, Real-Time Object detection

> http://arxiv.org/abs/1506.02640

> http://www.yeahkun.com/2016/09/06/object-detection-you-only-look-once-caffe-shi-xian/

## Usage

### Data preparation
```Shell
cd data/yolo
ln -s /your/path/to/VOCdevkit/ .
python ./get_list.py
# change related path in script convert.sh
./convert.sh
```

### Train
```Shell
cd examples/yolo
# change related path in script train.sh
mkdir models
nohup ./train.sh &
```

### Test
```Shell
# if everything goes well, the map of gnet_yolo_iter_32000.caffemodel may reach ~56.
cd examples/yolo
./test.sh model_path gpu_id
The model is here (link: https://pan.baidu.com/s/1jHAN6xK password: kvee)
```