Hello all,
I am trying to setup this model for Multi class instance segmentation task on custom dataset. If I closely monitor the results out of 15 classes only 5 classes are showing the very low output AP result and the rest all are showing the value 0.0AP. It seems the model has not learned anything and ran the model for around 450000 iterations with batch size of 16. All the dataset were properly labeled and double checked the configs
here are some of the configs
MODEL.SEM_HEAD: FastInstHead
MODEL.SEM_HEAD.NUM_CLASSES: 15
MODEL.FASTINST.TRANSFORMER_DECODER_NAME: FastInstDecoder
MODEL.FASTINST.TEST.INSTANCE_ON: True
When I load the model and few test images for inference I am only getting box predictions and there are no output mask predictions. If I execute this command after loading the model I get No masks found as the result.
# Check for masks
if instances.has("pred_masks"):
print("Masks found:", instances.pred_masks.shape)
else:
print("No masks found.")
can you guys point me out where the error is stemming out or where I am going wrong?
Hello all,
I am trying to setup this model for Multi class instance segmentation task on custom dataset. If I closely monitor the results out of 15 classes only 5 classes are showing the very low output AP result and the rest all are showing the value 0.0AP. It seems the model has not learned anything and ran the model for around 450000 iterations with batch size of 16. All the dataset were properly labeled and double checked the configs
here are some of the configs
MODEL.SEM_HEAD: FastInstHead
MODEL.SEM_HEAD.NUM_CLASSES: 15
MODEL.FASTINST.TRANSFORMER_DECODER_NAME: FastInstDecoder
MODEL.FASTINST.TEST.INSTANCE_ON: True
When I load the model and few test images for inference I am only getting box predictions and there are no output mask predictions. If I execute this command after loading the model I get No masks found as the result.
can you guys point me out where the error is stemming out or where I am going wrong?