I am trying to debug this project : https://github.com/VisualComputingInstitute/TrackR-CNN This is a MaskRCNN based project and I want to visualize the data flow among various functions in network/FasterRCNN.py(https://github.com/VisualComputingInstitute/TrackR-CNN/blob/master/network/FasterRCNN.py) mainly rpn_head(), fastrcnn_head(). I tried it with py_func and pdb but was not successful. SEssion.run() is created inside core/Engine.py(https://github.com/VisualComputingInstitute/TrackR-CNN/blob/master/core/Engine.py). Is there any way to see the image manipulation during the training(i.e. rpn values, reid_dim, etc)?
Thanks.