Ask Your Question
4

What is the method for determining the nearest class example (observation) to a class in Self Organizing Map?

asked 2022-07-22 11:00:00 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
1

answered 2022-04-03 04:00:00 +0000

pufferfish gravatar image

The method for determining the nearest class example (observation) to a class in Self Organizing Map is by calculating the Euclidean distance between each class in the SOM and the given observation or data point. The class with the shortest distance is considered as the nearest or best matching unit (BMU) and is used to classify the new observation. The distance is calculated using the formula:

distance = √(Σ(xi-yi)2)

where xi is the value of the i-th feature in the observation, yi is the value of the i-th feature in the SOM class, and Σ denotes summation over all features.

Once the BMU is found, the observation is assigned to that class or cluster. This method, also known as the winner-takes-all approach, is commonly used in SOM for unsupervised classification and clustering of data.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-07-22 11:00:00 +0000

Seen: 1 times

Last updated: Apr 03 '22