You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to troubleshoot some cryptic errors when running on cuda, so I tried to run everything on the CPU. However, there is an issue with the implementation of crop_and_resize for the CPU:
Here is the declaration in crop_and_resize.h (for the cpu):
In the CPU implementation, there is no const int crop_zdepth parameter - thus the rest of the code breaks down when trying to run this with the mrcnn network model. I do not have anywhere near enough experience to fix the cpu function, but I thought I'd bring it up.
The text was updated successfully, but these errors were encountered:
Hi,
I'm trying to troubleshoot some cryptic errors when running on cuda, so I tried to run everything on the CPU. However, there is an issue with the implementation of
crop_and_resize
for the CPU:Here is the declaration in
crop_and_resize.h
(for the cpu):Likewise for the GPU:
In the CPU implementation, there is no
const int crop_zdepth
parameter - thus the rest of the code breaks down when trying to run this with themrcnn
network model. I do not have anywhere near enough experience to fix the cpu function, but I thought I'd bring it up.The text was updated successfully, but these errors were encountered: