-
Notifications
You must be signed in to change notification settings - Fork 36
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
What happen when I use vgg16 as backbone. #12
Comments
Addictional |
1: vgg16 vs. vgg16_torch: a bit confusing but the first one is my "hand-coded" version. I define the VGG-16 network from scratch using layers. The second one uses torchvision's built-in VGG-16 model, If you use vgg16_torch, the weights should be downloaded automatically because torchvision provides them. If you use my vgg16 implementation, you'll need torchvision already contains many common CNNs, including Faster R-CNN. Obviously, I wanted to implemented Faster R-CNN from scratch, so I did all the work myself, including the VGG-16 backbone initially, but then I included the option to use the torchvision version just to demonstrate how to do so. I then later went ahead and added torchvision's ResNet backbones. To download the 2: I'm still not sure why you want to pass 4 channel images in. What is inside this 4th channel? |
No.1 I see. |
@trzy
Thank you your good work.
I've affirmed your pytorch version codes. Then, I have quessions.
I want to use your good programs for my task. So, Please let me know.
Regards.
The text was updated successfully, but these errors were encountered: