sevamoo / SOMPY

A Python Library for Self Organizing Map (SOM)
Apache License 2.0
532 stars 241 forks source link

bug with calculate bmus in last step on train ( sompy.py ) #103

Open Dizzman opened 5 years ago

Dizzman commented 5 years ago

logging.info(" Final quantization error: %f" % np.mean(self._bmu[1])) self._bmu not updated!

need add before logging.info(" Final quantization error: %f" % np.mean(self._bmu[1])) this self._bmu=self.find_bmu(self._data)

dfhssilva commented 3 years ago

Duplicate of #83