https://github.com/coreyjs/yolo-books
Implementation of YOLO Algorithm
https://github.com/coreyjs/yolo-books
computer-vision machine-learning yolov3
Last synced: about 1 year ago
JSON representation
Implementation of YOLO Algorithm
- Host: GitHub
- URL: https://github.com/coreyjs/yolo-books
- Owner: coreyjs
- Created: 2022-03-12T15:46:25.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-17T13:25:03.000Z (about 4 years ago)
- Last Synced: 2025-02-14T21:26:02.979Z (over 1 year ago)
- Topics: computer-vision, machine-learning, yolov3
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# YOLO
This is an implemenation of the YOLOv3 image detection algorithm. We are specificially using `YOLOv3-320` from [Darknet](https://pjreddie.com/darknet/yolo/)
---
### Configuration
Filename: `yolov3-320.cfg`
Download: [Here](https://github.com/pjreddie/darknet/blob/master/cfg/yolov3.cfg)
### Weights
Filename: `yolov3.weights`
Download: [Here](https://pjreddie.com/media/files/yolov3.weights)
---
### Run
To run, download the above configuration and weights to the project directory. This env was built using Anaconda.
```bash
python main.py
```
## Example output

Why is it called yolo-books? Well the goal is to expand upon this for doing a bunch of cool stuff around book detection, integrated title searching, view ratings, etc.