I want to print the summary of Mask RCNN model but using 'print(model.summary())' is giving error 'MASKRCNN have no attribute 'summary''. I want to use my own trained resNet based classifier but in order to use this as backbone I will need the architecture details of Mask RCNN. How can i get the architecture details?
@waleedka @cclauss
if you use MaskRCNN class, use this
model.keras_model.summary()
Most helpful comment
if you use MaskRCNN class, use this
model.keras_model.summary()