Skip to content

Releases: peterwittek/somoclu

1.7.6

31 Oct 08:33
Compare
Choose a tag to compare

new release for easier installation

What's Changed

New Contributors

Full Changelog: 1.7.5...1.7.6

1.7.5

01 Mar 21:46
Compare
Choose a tag to compare
  • New: A Makefile for mingw to build on Windows.
  • Changed: PR #94 added a much more efficient sparse kernel.
  • Changed: boilerplate code for Julia greatly improved.
  • Changed: Code cleanup, pre-processor macros simplified.
  • Changed: Adapted to Seaborn API changes in plotting heatmaps.

1.7.4

06 Jun 13:44
Compare
Choose a tag to compare
  • Fixed: The random seed was set to 0 for testing purposes. This is now changed to a wall-time based initialization.

1.7.3

25 Apr 07:56
Compare
Choose a tag to compare
  • New: Verbosity parameter in the command-line, Python, MATLAB, and Julia interfaces.
  • Changed: Calculation of U-matrix parallelized.
  • Changed: Moved feeding data to train method in the Python interface.
  • Fixed: Sparse matrix reader made more robust.
  • Fixed: Compatibility with kohonen 3 resolved.
  • Fixed: Compatibility with Matplotlib 2 resolved.

1.7.2

24 Nov 10:23
Compare
Choose a tag to compare
  • New: The coefficient of the Gaussian neighborhood function exp(-||x-y||^2/(2*(coeff*radius)^2)) is now exposed in all interfaces as a parameter.
  • New: get_bmu function in the Python interface to get the best matching units given an activation map.
  • Changed: Updated PCA initialization in the Python interface to work with sk-learn 0.18 onwards.
  • Changed: Radii can be float values.
  • Fixed: Only positive values were written back to codebook during update.
  • Fixed: Sparse data is read correctly when there are class labels.

1.7.1

02 Oct 08:39
Compare
Choose a tag to compare
  • Fixed: macOS build works again.

1.7.0

30 Sep 10:22
Compare
Choose a tag to compare
  • New: Julia interface is available (https://github.com/peterwittek/Somoclu.jl).
  • New: Method get_surface_state of the Somoclu object in Python calculates the activation map for all data instances.
  • New: Method view_activation_map of the Somoclu object in Python allows plotting the activation map for the training data instances or for a new data instance.
  • New: Method view_similarity_matrix of the Somoclu object in Python visualizes the similarity matrix of data points according to their distance to the nodes in the map.
  • Fixed: CRAN-friendliness improved.

1.6.2

09 Aug 12:27
Compare
Choose a tag to compare
  • Changed: In-place codebook updates when compiled without MPI. This improves update speed and substantially cuts memory use.
  • Changed: Compatible with Visual Studio 15.
  • Fixed: The BMUs returned after training were from before the last epoch. Now another round of BMU search is done.
  • Fixed: Training can continue on the same data in the Python wrapper.
  • Fixed: GPU memory allocation problem on Windows.

1.6.1

22 Feb 09:23
Compare
Choose a tag to compare
  • New: Option for PCA initialization is added to the Python interface.
  • New: Clustering of the codebook with arbitrary clustering algorithm in scikit-learn is now possible in the Python interface.

1.6

10 Jan 14:06
Compare
Choose a tag to compare
1.6
  • New: R wrapper integrates with kohonen package.
  • New: MATLAB wrapper integrates with soomtoolbox.
  • New: Better handling of CUDA compilation in the Python interface.
  • Changed: Throws an exception if GPU kernel is requested, but it was compiled without it. The earlier behaviour quietly defaulted to the CPU kernel.