How to get the exact samples inside SOM neurons
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
NCA
le 18 Avr 2023
Réponse apportée : Priyank Pandey
le 26 Avr 2023
I have abalysed my data using neural clustering for Self Otganising Maps from the Neural Net Clustering from Machine Learning and Deep Learning app in MATLAB. I am not sure how to know the exact samples inside the neurons after clustering as shown on the sample hits map. For example, I have 7 samples inside one neuron, how do I identify the samples from my original data.The sampe hits are as per attached
0 commentaires
Réponse acceptée
Priyank Pandey
le 26 Avr 2023
Hi,
To identify the samples from your original data set that are assigned to a particular neuron in your self-organizing map (SOM), you can use the 'vec2ind' function in MATLAB.
The 'vec2ind' function takes as input a matrix of neuron outputs, where each row corresponds to the output of a neuron for a particular input sample. The output of the function is a vector of indices that indicates which neuron had the highest output for each input sample.
To use 'vec2ind' to identify the samples associated with a particular neuron, you need to find the index of the neuron you are interested in on your SOM's hit map, and then find the corresponding row in the output matrix that represents that neuron's output for each input sample. The indices of the input samples that are associated with that neuron can then be obtained from the output of 'vec2ind'.
To know more about how to use vec2ind function refer to the following code:
I hope this helps.
Regards
Priyank
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Define Shallow Neural Network Architectures dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!