Peter Wittek
Peter Wittek
The R version of Somoclu is really just a computational back-end to `kohonen`, so visualization is left to that library. This is a fundamental difference to the Python version, where...
I am sorry I don't understand the question. If you want to continue training the map with the test examples, just pass the current codebook to `Rsomoclu.train` with the new...
The assemblage would be something like this: ``` python from numpy import array, sqrt, hstack, kron from qutip import tensor, sigmax, sigmay, sigmaz, qeye, Qobj, ptrace w = 1 #...
Which interface are you using? Can you define topographical and quantization error?
Related questions keep popping up, but there is no function implemented to calculate these two quantities. If you want to give it a shot, I would be very happy to...
I also use it mainly for visualization, so the scientific way of evaluating the result has always been eyeballing it. Occasionally, I was interested in clustering, and then I measured...
That would be great, thanks.
Columns, I guess, unless you prefer vertically elongated maps. If you find this important, I would welcome a PR to the Python documentation.
The actual 'projection' is this loop: ```python for j in range(n_columns * n_rows): for i in range(eigvec.shape[0]): codebook[j, :] = codebook[j, :] + \ coord[j, i] * eigvec[i, :] ```...
Just rebuild it from git. I don't think there will be a new release this year. The code is very much in maintenance mode.