All Projects → sevamoo → Sompy

sevamoo / Sompy

Licence: apache-2.0
A Python Library for Self Organizing Map (SOM)

Projects that are alternatives of or similar to Sompy

Steal
STEAL - Learning Semantic Boundaries from Noisy Annotations (CVPR 2019)
Stars: ✭ 424 (-1.4%)
Mutual labels:  jupyter-notebook
Cortx
CORTX Community Object Storage is 100% open source object storage uniquely optimized for mass capacity storage devices.
Stars: ✭ 426 (-0.93%)
Mutual labels:  jupyter-notebook
Py d3
D3 block magic for Jupyter notebook.
Stars: ✭ 428 (-0.47%)
Mutual labels:  jupyter-notebook
Self Driving Car Nd
Udacity's Self-Driving Car Nanodegree project files and notes.
Stars: ✭ 424 (-1.4%)
Mutual labels:  jupyter-notebook
Ssd Tensorflow
Single Shot MultiBox Detector in TensorFlow
Stars: ✭ 4,066 (+845.58%)
Mutual labels:  jupyter-notebook
Iclr2020 Openreviewdata
Script that crawls meta data from ICLR OpenReview webpage. Tutorials on installing and using Selenium and ChromeDriver on Ubuntu.
Stars: ✭ 426 (-0.93%)
Mutual labels:  jupyter-notebook
Deep Learning Resources
由淺入深的深度學習資源 Collection of deep learning materials for everyone
Stars: ✭ 422 (-1.86%)
Mutual labels:  jupyter-notebook
Opensource Roadmap Datascience
¡Camino a una educación autodidacta en Ciencia de Datos!
Stars: ✭ 429 (-0.23%)
Mutual labels:  jupyter-notebook
Deep Learning V2 Pytorch
Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101
Stars: ✭ 4,457 (+936.51%)
Mutual labels:  jupyter-notebook
Mli Resources
H2O.ai Machine Learning Interpretability Resources
Stars: ✭ 428 (-0.47%)
Mutual labels:  jupyter-notebook
Reinspect
End to end detection in crowded scenes
Stars: ✭ 424 (-1.4%)
Mutual labels:  jupyter-notebook
Bilispider
开发 bilibili 网站爬虫,大数据分析研究
Stars: ✭ 426 (-0.93%)
Mutual labels:  jupyter-notebook
Mobilepose Pytorch
Light-weight Single Person Pose Estimator
Stars: ✭ 427 (-0.7%)
Mutual labels:  jupyter-notebook
Cn Deep Learning
Stars: ✭ 423 (-1.63%)
Mutual labels:  jupyter-notebook
Jupyter pivottablejs
Drag’n’drop Pivot Tables and Charts for Jupyter/IPython Notebook, care of PivotTable.js
Stars: ✭ 428 (-0.47%)
Mutual labels:  jupyter-notebook
Random Forest Importances
Code to compute permutation and drop-column importances in Python scikit-learn models
Stars: ✭ 422 (-1.86%)
Mutual labels:  jupyter-notebook
Vilbert Multi Task
Multi Task Vision and Language
Stars: ✭ 421 (-2.09%)
Mutual labels:  jupyter-notebook
Gnn review
GNN综述阅读报告
Stars: ✭ 427 (-0.7%)
Mutual labels:  jupyter-notebook
Sklearn Bayes
Python package for Bayesian Machine Learning with scikit-learn API
Stars: ✭ 428 (-0.47%)
Mutual labels:  jupyter-notebook
Probabilistic unet
A U-Net combined with a variational auto-encoder that is able to learn conditional distributions over semantic segmentations.
Stars: ✭ 427 (-0.7%)
Mutual labels:  jupyter-notebook

SOMPY

A Python Library for Self Organizing Map (SOM)

As much as possible, the structure of SOM is similar to somtoolbox in Matlab. It has the following functionalities:

  1. Only Batch training, which is faster than online training. It has parallel processing option similar to sklearn format and it speeds up the training procedure, but it depends on the data size and mainly the size of the SOM grid.I couldn't manage the memory problem and therefore, I recommend single core processing at the moment. But nevertheless, the implementation of the algorithm is carefully done for all those important matrix calculations, such as scipy sparse matrix and numexpr for calculation of Euclidean distance.
  2. PCA (or RandomPCA (default)) initialization, using sklearn or random initialization.
  3. component plane visualization (different modes).
  4. Hitmap.
  5. U-Matrix visualization.
  6. 1-d or 2-d SOM with only rectangular, planar grid. (works well in comparison with hexagonal shape, when I was checking in Matlab with somtoolbox).
  7. Different methods for function approximation and predictions (mostly using Sklearn).

Dependencies:

SOMPY has the following dependencies:

  • numpy
  • scipy
  • scikit-learn
  • numexpr
  • matplotlib
  • pandas
  • ipdb

Installation:

python setup.py install

Many thanks to @sebastiandev, the library is now standardized in a pythonic tradition. Below you can see some basic examples, showing how to use the library. But I recommend you to go through the codes. There are several functionalities already implemented, but not documented. I would be very happy to add your new examples here.

Basic Example

Citation

There is no published paper about this library. However if possible, please cite the library as follows:

@misc{moosavi2014sompy,
  title={SOMPY: A Python Library for Self Organizing Map (SOM)},
  author={Moosavi, V and Packmann, S and Vall{\'e}s, I},
  note={GitHub.[Online]. Available: https://github. com/sevamoo/SOMPY},
  year={2014}
}

For more information, you can contact me via [email protected] or [email protected], but please report an issue first.

Thanks a lot. Best Vahid Moosavi

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].