HSOM icon indicating copy to clipboard operation
HSOM copied to clipboard

Hierarchical self-organizing maps for unsupervised pattern recognition

Results 2 HSOM issues
Sort by recently updated
recently updated
newest added

This looks like it could be very powerful, but the examples given are trivial, which is great for showing how to use it, but begs the question, can it actually...

`wij` is unused https://github.com/CarsonScott/HSOM/blob/master/hsom/self_organizing_map.py ``` def compute_weights(self, sample): for winner in self.winners: W = self.nodes[winner] h = self.thresholds[winner] y = self.outputs[winner] x = self.inputs[winner] dh = self.learning_rate * (x -...