-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
About the input image size #32
Comments
You have to make sure that |
Thanks a lot. I know the number 6 what means, but what's the mean of the number 16? |
If you set last conv stride of ResNet-50 to 1, the final feature map size is |
I see, thank you very much. I will take a careful look. |
Hello,If the input image size resized to 512×256,it will report an error. So the height to width ratio is can only be 3:1? If I want a size of 512×256,what should I do?
The error:
Traceback (most recent call last):
File "script/experiment/train_pcb.py", line 498, in
main()
File "script/experiment/train_pcb.py", line 436, in main
_, logits_list = model_w(ims_var)
File "/home/xiaozhenzhen/anaconda2/envs/pytorch-PCB/lib/python2.7/site-packages/torch/nn/modules/module.py", line 325, in call
result = self.forward(*input, **kwargs)
File "/home/xiaozhenzhen/anaconda2/envs/pytorch-PCB/lib/python2.7/site-packages/torch/nn/parallel/data_parallel.py", line 68, in forward
outputs = self.parallel_apply(replicas, inputs, kwargs)
File "/home/xiaozhenzhen/anaconda2/envs/pytorch-PCB/lib/python2.7/site-packages/torch/nn/parallel/data_parallel.py", line 78, in parallel_apply
return parallel_apply(replicas, inputs, kwargs, self.device_ids[:len(replicas)])
File "/home/xiaozhenzhen/anaconda2/envs/pytorch-PCB/lib/python2.7/site-packages/torch/nn/parallel/parallel_apply.py", line 67, in parallel_apply
raise output
AssertionError
The text was updated successfully, but these errors were encountered: