Andrew Stromme

Results 8 comments of Andrew Stromme

It seems like you may not have downloaded the pretrained model and placed it in the pretrained_models directory. See this part of the readme: > Download pretrained resnet50 model, wget...

I also see this. Looking at the code, I see: From https://github.com/CharlesShang/FastMaskRCNN/blob/a70dcdbb16b75f145cba4a5eda92400935ab863b/libs/nets/pyramid_network.py#L344 ``` ## mask head m = cropped_rois for _ in range(4): m = slim.conv2d(m, 256, [3, 3], stride=1,...

https://github.com/astromme/FastMaskRCNN/commit/24cf5dd043921f735dcd9ea5a620fcdee2661d47 seems to fix it.

+1 We have a situation where we'd like to mock a JNI interface with native methods. These methods are unsupported by the new inline mockmaker according to https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mockito.html, but we...

Thanks for the suggestions! Yep, the profile was for building the entire index, plus a few seconds overhead for loading the original dict file into memory. For others following along...

I'm also experiencing this issue when using `npm run build` in a Next.JS project. @sagardwivedi can you share more about what you changed to make it work?

Good to know. I also decided to switch to an alternative: https://openapi-generator.tech/ which worked better with FastAPI + NextJS