Dok Mbini
Dok Mbini

Reputation: 31

How to install MiniSom package in Python

Does anyone know how to install MiniSom package (or any other Self Organizing Map package) in Python?

Kind regards.

Upvotes: -1

Views: 8955

Answers (4)

Nowshin1077
Nowshin1077

Reputation: 1

Command To install MiniSom:

pip install minisom (terminal)
!pip install minisom (google colab)

Upvotes: 0

Mehrnoush Haghighat
Mehrnoush Haghighat

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

Gathide
Gathide

Reputation: 1157

See https://pypkg.com/pypi/minisom/

To install MiniSom, enter the following at the terminal:

pip install minisom

Upvotes: 2

Ari Cooper-Davis
Ari Cooper-Davis

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

Related Questions