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

A faster pytorch implementation of faster r-cnn

Results 123 faster-rcnn.pytorch issues
Sort by recently updated
recently updated
newest added

Hi, Which torch version is used here? I don't see any details about it in the requirements file. Thanks

hi,i am using pytorch1.0,python3.6 and when i try to train on my on data,when it run at this line: https://github.com/jwyang/faster-rcnn.pytorch/blob/aec4244532cd7affbc1f0cdbed81900ee8cacf3c/lib/model/rpn/proposal_layer.py#L147 it just stop running, and the stdout shows: Process finished...

Dear Jian Wei I've tried to build this project in conda envs with python3.6 and pytorch1.0.0 . But encountered failure when compiling the cuda dependencies using commands "python setup.py build...

I was trainig using multiple GPUs on my own dataset, but when resuming training, I got this error ``` Loading pretrained weights from data/pretrained_model/vgg16_caffe.pth loading checkpoint models/vgg16/virtual_sign_2019/faster_rcnn_1_3_1124.pth loaded checkpoint models/vgg16/virtual_sign_2019/faster_rcnn_1_3_1124.pth...

It has error: RuntimeError: Only tuples, lists and Variables are supported as JIT inputs/outputs. Dictionaries and strings are also accepted, but their usage is not recommended. Here, received an input...

I wanna convert pth to onnx format. This is my code: import torch from model.faster_rcnn.vgg16 import vgg16 from model.faster_rcnn.resnet import resnet import numpy as np from torch.autograd import Variable def...

Traceback (most recent call last): File "/faster-rcnn.pytorch-pytorch-1.0/lib/datasets/voc_eval.py", line 124, in voc_eval recs = pickle.load(f) EOFError: Ran out of input During handling of the above exception, another exception occurred: Traceback (most...

Hi, I am trying to train my own dataset. I have already created my dataset similar to VOC2007. Annotations (in xml format), ImageSets etc. are also prepared according to VOC2007....

hi,jwyang. Have u ever translate ur model to onnx format?