-
Notifications
You must be signed in to change notification settings - Fork 924
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nothing about mnist's visualization #136
Comments
Hi, could you please explain a little more about how did you visualize the LeNet on mnist? I am trying to visualize the VGG16 train on Cifar10. How should I set the label path? |
@ZhuweiQin when I have trained a mnist model with caffe, I am wondering what the feature would look like, for example, when I visualize caffenet-yos, I can see different channel focus different part of the object, but on mnist I can see nothing, why? |
The deconv visualization and activation (feature map) visualization explain the filters from different perspectives. Through your implementation, we can clearly see the activation of each lenet filters on mnist. It's hard to interpret the activations as the caffenet on imagenet dataset since the filter resolution is too small. Basically, the deconv projects the activation(feature map) back to the input image, showing which part of the input image activate the corresponding filter. I do not know why you can not see the deconv visualization result. The reason must be the code problem not the feature. BTW, there are some other open source projects about the deconv. Maybe you can try. |
this is the problem
https://stackoverflow.com/questions/48368441/mnists-deep-feature-visualizations-is-nothing
The text was updated successfully, but these errors were encountered: