Skip to content

TypeError: crop_and_resize_forward expected 7 arguments, got 8 when running on cpu #126

Description

@themantalope

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):

void crop_and_resize_forward(
    THFloatTensor * image,
    THFloatTensor * boxes,      // [y1, x1, y2, x2]
    THIntTensor * box_index,    // range in [0, batch_size)
    const float extrapolation_value,
    const int crop_height,
    const int crop_width,
    THFloatTensor * crops
);

Likewise for the GPU:

void crop_and_resize_gpu_forward(
    THCudaTensor * image,
    THCudaTensor * boxes,           // [y1, x1, y2, x2]
    THCudaIntTensor * box_index,    // range in [0, batch_size)
    const float extrapolation_value,
    const int crop_height,
    const int crop_width,
    const int crop_zdepth,
    THCudaTensor * crops
);

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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions