We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As per mask RCNN documentation, the predicted masks have the shape: masks (Tensor[N, H, W]):
however as per the tutorial, https://colab.research.google.com/github/pytorch/vision/blob/temp-tutorial/tutorials/torchvision_finetuning_instance_segmentation.ipynb#scrollTo=M58J3O9OtT1G, and the results/output i see from the model, the masks have the shape: [N, 1, H, W]
The masks are predicted as [N, 1, H, W] i.e. i output masks have 4 dim, whereas documentation has 3dim..
The text was updated successfully, but these errors were encountered:
Yes, this is a problem with the documentation.
Could you send a PR fixing it?
Sorry, something went wrong.
Fix Mask R-CNN docs (#1089)
9dfca9a
Fixes #1047.
Successfully merging a pull request may close this issue.
As per mask RCNN documentation, the predicted masks have the shape:
masks (Tensor[N, H, W]):
however as per the tutorial, https://colab.research.google.com/github/pytorch/vision/blob/temp-tutorial/tutorials/torchvision_finetuning_instance_segmentation.ipynb#scrollTo=M58J3O9OtT1G,
and the results/output i see from the model, the masks have the shape: [N, 1, H, W]
The masks are predicted as [N, 1, H, W]
i.e. i output masks have 4 dim, whereas documentation has 3dim..
The text was updated successfully, but these errors were encountered: