You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I wish to set the ratio of the map dimensions to be the ratio of the first two eigenvalues from PCA, should the larger value be n_rows or n_columns? I think this tidbit would be useful to add in to the Python user guide, and perhaps others.
The text was updated successfully, but these errors were encountered:
More fundamentally, my question boils down to this: is the first principal component projected across the columns or down the rows of the initialised map? In the first case, n_columns should be larger than n_rows, and vice-versa for the second case.
The codebook is initialized with the mean value of each dimension. Then this loop shifts the mean with both eigenvectors, where the scaling factor is given by the coord array, which introduces larger coefficients further away from the centre of the map. So I don't think the shape of the map actually matters.
If I wish to set the ratio of the map dimensions to be the ratio of the first two eigenvalues from PCA, should the larger value be
n_rows
orn_columns
? I think this tidbit would be useful to add in to the Python user guide, and perhaps others.The text was updated successfully, but these errors were encountered: