This repo contains a tool to visualize your models and all the hidden layers.
You can inspect the feature maps and all the layers output in real time.
There are 2 ways of using this tool, from your program or as CLI.
import modelinspector
model = ...
x = ... # 1 element batched tensor
inspector = modelinspector.ModelInspector(model, x)
inspector.run()
You will then open your browser (normally at 127.0.0.1:8050 unless changed config).
python -mmodelinspector <path_to_model> <path_to_saved_tensor>

