https://github.com/oke-aditya/pytorch_fasterrcnn
Fine-Tune Pytorch Faster RCNN for your own task.
https://github.com/oke-aditya/pytorch_fasterrcnn
deep-learning detection pytorch pytorch-rcnn torchvision
Last synced: over 1 year ago
JSON representation
Fine-Tune Pytorch Faster RCNN for your own task.
- Host: GitHub
- URL: https://github.com/oke-aditya/pytorch_fasterrcnn
- Owner: oke-aditya
- License: gpl-3.0
- Created: 2020-05-24T16:03:50.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-02T08:34:28.000Z (over 5 years ago)
- Last Synced: 2024-10-12T11:06:41.944Z (over 1 year ago)
- Topics: deep-learning, detection, pytorch, pytorch-rcnn, torchvision
- Language: Python
- Homepage: https://oke-aditya.github.io/pytorch_fasterrcnn/
- Size: 545 KB
- Stars: 17
- Watchers: 2
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Pytorch Faster RCNN
- Note that this PyPi package is no longer maintained. It will work fine upto this release, but I won't do bug fixes.
- The entire code and API is migrated to [Quickvison](https://github.com/Quick-AI/quickvision), it has similar API and is maintained actively.






Faster RCNN Fine-Tune Implementation in Pytorch.
## How to use ?
1. git clone the repo
```
git clone https://github.com/oke-aditya/pytorch_fasterrcnn.git
```
2. Install PyTorch and torchvision for your system.
Simply edit the config file to set your hyper parameters.
3. Keep the training and validation csv file as follows
NOTE
Do not use target as 0 class. It is reserved as background.
```
image_id xtl ytl xbr ybr target
1 xmin ymin xmax ymax 1
1 xmin ymin xmax ymax 2
2 xmin ymin xmax ymax 3
```
4. Simply edit the config file to set your hyper parameters
5. Run the train.py file
# Features: -
- It works for multiple class object detection.
## Backbones Supported: -
- Note that backbones are pretrained on imagenet.
- Following backbones are supported
1. vgg11, vgg13, vgg16, vgg19
2. resnet18, resnet34, resnet50, resnet101, resnet152
3. renext101
4. mobilenet_v2
Sample Outputs
# Helmet Detector

# Mask Detector

If you like the implemenation or have taken an inspiration do give a star :-)