AttributerError:module 'model' has no attribute 'resnet101'
When I run the train.py file after I modified the config.py file,there is a AttributerError:module 'model' has no attribute 'resnet101'.If it's convenient ,piease tell me how to solve it.Thank you!
same problem. I don't find the resnet101 definition in the whole code
I meet the same problem,Have you solved this problem? Does this model come from torchvision.models..resnet101 or the author's own definition? in model.py? Can you helpe me?Thank you
@shajie17 No, I think it's a bug.
@chensonglu
Have you successfully run the relation-networks-for-object-pytorch code? Why do I run code based on vgg16 network and get a much lower map value than the faster-rcnn code without relation?
I meet the same problem,Have you solved this problem? Does this model come from torchvision.models..resnet101 or the author's own definition? in model.py? Can you helpe me?Thank you
The reason is that this is an uncompleted code. The experiments.py can run, train.py need to be modified. But I think the Relation-Module was not added in the FasterRCNN. You can see the line 66 in model.py, n_realtions = 0. And when I change it to 2, the code cannot run more. Do u notice this problem?
@chensonglu Have you successfully run the relation-networks-for-object-pytorch code? Why do I run code based on vgg16 network and get a much lower map value than the faster-rcnn code without relation?
I meet the same problem, got the lower map value than faster-rcnn code without relation.Haved you figured out this problem?