For a medical application I am retraining the pretrained Inception-v3 network using TensorFlow.
This network has a final layer:
pool_3:0 (2048 features)
Using TF's classify_image, I figured out which of these features are most important for each sample. So there is an array with the indexes of the top-N features, sorted on weights.
The next step is to visualize the feature vector to better understand the results.
How would I go about doing this? Is TensorBoard capable of this? I am at a bit of a loss. Any suggestion/help is appreciated!