-
Notifications
You must be signed in to change notification settings - Fork 792
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
Image shape changed to 352 from 360 in FRRN camvid #250
Comments
I'm also trying to work with CamVid. Have you also been having trouble with the I'm trying to use the DataLoader but it gives me this error:
|
Yeah there were some issues. I rewrote the code and now it works fine. I also used opencv to load the image. It saves me some computation and eleminated the error. I am not sure how you are loading the image. the scipy method is taken down so i used opencv. You can check out my reposetory fot the code that i wrote. https://github.com/akshatgarg99/FRR-Net/blob/master/utils/dataLoader.py |
Thanks a lot! That's exactly what I was looking for. |
In Frrn for camvid, the size of the input image is 360. This is changed to 352 after up sampling at the end of encoder part mainly because it pools an image of size 45 to 22 and then upsamples it. This gives an error while adding the z of shape 360 with y having shape 352 in FRRU layer.
I guess the input dimension should be a multiple of 16
The text was updated successfully, but these errors were encountered: