simple-faster-rcnn-pytorch icon indicating copy to clipboard operation
simple-faster-rcnn-pytorch copied to clipboard

A simplified implemention of Faster R-CNN that replicate performance from origin paper

Results 112 simple-faster-rcnn-pytorch issues
Sort by recently updated
recently updated
newest added
trafficstars

When I run `python3 train.py train --env='fasterrcnn_caffe' --plot_every=100 --caffe_pretrain`,an error occured like this: ``` Traceback (most recent call last): File "/home/htu/anaconda3/lib/python3.6/site-packages/cupy/__init__.py", line 11, in from cupy import core # NOQA...

in the demo it says: ```# it failed to find the dog, but if you set threshold from 0.7 to 0.6, you'll find it``` How can we change the threshold?...

Traceback (most recent call last): File "train.py", line 10, in from model import FasterRCNNVGG16 File "/home/lxt/cvpr2019-video/simple-faster-rcnn-pytorch/model/__init__.py", line 1, in from model.faster_rcnn_vgg16 import FasterRCNNVGG16 File "/home/lxt/cvpr2019-video/simple-faster-rcnn-pytorch/model/faster_rcnn_vgg16.py", line 5, in from model.region_proposal_network...

Hey, I've already download the pretrained model, but when i run the demo.ipynb, it still download the vgg16-397923af.pth. Why ?

Hello, I am trying to use your repository on Google Colab. But it's giving me > Connection Refused error at 8097. Port 8097 is port of visdom server. So i...

### **I changed two parts:** **The first part is to change VGG16 to VGG16_BN.** `from model.vgg import vgg16_bn` **The second part is the changes to decom_vgg16 in faster_rcnn_vgg16.py** ``` def...

I find the AnchorTargetCreator and ProposalTargetCreator will sample too many negitive samples when use the defalut iou_threshold, is it correct? in my code, when inference, the rois always be judged...

> 1)run this command before run your train code: > > ``` > nohup python -m visdom.server & > ``` > > 2)Environment:select 'faster-rcnn', not 'main' hey bro,i use the...