Reputation: 31
Does anyone know how to install MiniSom package (or any other Self Organizing Map package) in Python?
Kind regards.
Upvotes: -1
Views: 8955
Reputation: 1
Command To install MiniSom:
pip install minisom (terminal)
!pip install minisom (google colab)
Upvotes: 0
Reputation: 97
1- Download minisom.py from the below link: https://github.com/JustGlowing/minisom/blob/master/minisom.py
2- Place the file in your working directory
3- in your python program which you want to use minisim enter: from minisom import MiniSom
Upvotes: 3
Reputation: 1157
See https://pypkg.com/pypi/minisom/
To install
MiniSom
, enter the following at the terminal:
pip install minisom
Upvotes: 2
Reputation: 3485
I believe that the PyMVPA package contains self-organising maps functions. You can find detailed installation instructions on their website.
Alternatively if you wish to use MiniSOM you can download it from github where installation instructions are included.
Upvotes: 0