I need to implement CAM for a model trained on the base model ssd_mobilenet_v2_320x320_coco17_tpu-8 in the pre-trained Object Detection Zoo.
How could I accesses the layers and other fields necessary to implement Grad-CAM?
I tried converting the model to other model formats (eg. Keras), where I know how to access model layers. I did not have any success with this.
DetectionModeldirectly by calling the API'smodel_builder.build()function with yourpipeline.configand.ckptcheckpoint. This method provides full programmatic access to the_feature_extractorand its layers. Please provide the minimum reproducible code if you are still running into any issues.