Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/Harick1/caffe-yolo
- Owner: Harick1
- License: other
- Created: 2016-06-28T09:16:41.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-07T13:22:24.000Z (about 8 years ago)
- Last Synced: 2024-08-02T01:16:50.054Z (7 months ago)
- Language: C++
- Size: 7.95 MB
- Stars: 231
- Watchers: 23
- Forks: 160
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-yolo-object-detection - Harick1/caffe-yolo - yolo?style=social"/> : Caffe for YOLO. (Other Versions of YOLO)
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)
```