https://github.com/kentaroy47/over-the-counter-faster-rcnn.pytorch
a easy to use faster-rcnn in pytorch
https://github.com/kentaroy47/over-the-counter-faster-rcnn.pytorch
Last synced: 7 months ago
JSON representation
a easy to use faster-rcnn in pytorch
- Host: GitHub
- URL: https://github.com/kentaroy47/over-the-counter-faster-rcnn.pytorch
- Owner: kentaroy47
- License: mit
- Created: 2019-07-24T07:39:02.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-21T23:07:17.000Z (almost 6 years ago)
- Last Synced: 2025-02-01T02:46:18.097Z (9 months ago)
- Language: Python
- Size: 87.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# what's this?
- Faster rcnn with run with least efforts, just follow the instructions :)
- Works with pytorch 1.0
- Models distributed# Install
clone the repo.
```
git clone https://github.com/kentaroy47/over-the-counter-faster-rcnn.pytorch.git
```install requirements.
```
pip install -r requirements.txt
```Install the repo.
```
cd lib
python setup.py build develop
```# Inference
This will do a res18 inference of your images.
The model is trained by MS-COCO.
```
python inference.py --image_dir images
```