Image regression: How to visualize the feature importance of an image in convolutional neural networks
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
To investigate trained networks, we can use visualization techniques such as Grad-CAM, occlusion sensitivity, LIME, and deep dream.
But the input of these functions require to be string, char, categorical, cell.
For example, map = occlusionSensitivity(net,img,Y), where Y was the predicted value for img, however, this function shows error: Expected input number 3 to be one of these types: string, char, categorical, cell.
Could anyone tell me how to use these functions for regression analysis?
0 Commenti
Risposte (1)
Aditya Patil
il 31 Mar 2021
the third parameter for occlusionSensitivity is label which was predicted for the model. For example,
label = classify(net,X);
scoreMap = occlusionSensitivity(net,X,label);
0 Commenti
Vedere anche
Categorie
Scopri di più su Image Data Workflows in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!