All Projects → felixriese → Susi

felixriese / Susi

Licence: bsd-3-clause
SuSi: Python package for unsupervised, supervised and semi-supervised self-organizing maps (SOM)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Susi

Mlxtend
A library of extension and helper modules for Python's data analysis and machine learning libraries.
Stars: ✭ 3,729 (+8778.57%)
Mutual labels:  data-science, unsupervised-learning, supervised-learning
L2c
Learning to Cluster. A deep clustering strategy.
Stars: ✭ 262 (+523.81%)
Mutual labels:  unsupervised-learning, semi-supervised-learning, supervised-learning
Homlr
Supplementary material for Hands-On Machine Learning with R, an applied book covering the fundamentals of machine learning with R.
Stars: ✭ 185 (+340.48%)
Mutual labels:  data-science, unsupervised-learning, supervised-learning
Php Ml
PHP-ML - Machine Learning library for PHP
Stars: ✭ 7,900 (+18709.52%)
Mutual labels:  data-science, unsupervised-learning, supervised-learning
Complete Life Cycle Of A Data Science Project
Complete-Life-Cycle-of-a-Data-Science-Project
Stars: ✭ 140 (+233.33%)
Mutual labels:  data-science, unsupervised-learning, supervised-learning
Stanford Cs 229 Machine Learning
VIP cheatsheets for Stanford's CS 229 Machine Learning
Stars: ✭ 12,827 (+30440.48%)
Mutual labels:  data-science, unsupervised-learning, supervised-learning
Free Ai Resources
🚀 FREE AI Resources - 🎓 Courses, 👷 Jobs, 📝 Blogs, 🔬 AI Research, and many more - for everyone!
Stars: ✭ 192 (+357.14%)
Mutual labels:  data-science, unsupervised-learning, supervised-learning
ml-ai
ML-AI Community | Open Source | Built in Bharat for the World | Data science problem statements and solutions
Stars: ✭ 32 (-23.81%)
Mutual labels:  supervised-learning, unsupervised-learning
machine learning from scratch matlab python
Vectorized Machine Learning in Python 🐍 From Scratch
Stars: ✭ 28 (-33.33%)
Mutual labels:  supervised-learning, unsupervised-learning
spear
SPEAR: Programmatically label and build training data quickly.
Stars: ✭ 81 (+92.86%)
Mutual labels:  semi-supervised-learning, unsupervised-learning
catgan pytorch
Unsupervised and Semi-supervised Learning with Categorical Generative Adversarial Networks
Stars: ✭ 50 (+19.05%)
Mutual labels:  semi-supervised-learning, unsupervised-learning
sutton-barto-rl-exercises
📖Learning reinforcement learning by implementing the algorithms from reinforcement learning an introduction
Stars: ✭ 77 (+83.33%)
Mutual labels:  supervised-learning, unsupervised-learning
deepOF
TensorFlow implementation for "Guided Optical Flow Learning"
Stars: ✭ 26 (-38.1%)
Mutual labels:  semi-supervised-learning, unsupervised-learning
machine-learning
Programming Assignments and Lectures for Andrew Ng's "Machine Learning" Coursera course
Stars: ✭ 83 (+97.62%)
Mutual labels:  supervised-learning, unsupervised-learning
metric-transfer.pytorch
Deep Metric Transfer for Label Propagation with Limited Annotated Data
Stars: ✭ 49 (+16.67%)
Mutual labels:  semi-supervised-learning, unsupervised-learning
Data Science Free
Free Resources For Data Science created by Shubham Kumar
Stars: ✭ 232 (+452.38%)
Mutual labels:  data-science, supervised-learning
machine-learning-course
Machine Learning Course @ Santa Clara University
Stars: ✭ 17 (-59.52%)
Mutual labels:  supervised-learning, unsupervised-learning
Sealion
The first machine learning framework that encourages learning ML concepts instead of memorizing class functions.
Stars: ✭ 278 (+561.9%)
Mutual labels:  data-science, unsupervised-learning
Machine Learning Algorithms From Scratch
Implementing machine learning algorithms from scratch.
Stars: ✭ 297 (+607.14%)
Mutual labels:  unsupervised-learning, supervised-learning
Pyod
A Python Toolbox for Scalable Outlier Detection (Anomaly Detection)
Stars: ✭ 5,083 (+12002.38%)
Mutual labels:  data-science, unsupervised-learning

.. image:: https://badge.fury.io/py/susi.svg :target: https://pypi.org/project/susi/ :alt: PyPi - Code Version

.. image:: https://img.shields.io/pypi/pyversions/susi.svg :target: https://pypi.org/project/susi/ :alt: PyPI - Python Version

.. image:: https://travis-ci.com/felixriese/susi.svg?branch=master :target: https://travis-ci.com/felixriese/susi :alt: Travis.CI Status

.. image:: https://readthedocs.org/projects/susi/badge/?version=latest :target: https://susi.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

.. image:: https://codecov.io/gh/felixriese/susi/branch/master/graph/badge.svg :target: https://codecov.io/gh/felixriese/susi :alt: Codecov

.. image:: https://api.codacy.com/project/badge/Grade/d304689a7364437db1ef998cf7765f5a :target: https://app.codacy.com/app/felixriese/susi :alt: Codacy Badge

|

.. image:: https://raw.githubusercontent.com/felixriese/susi/master/docs/_static/susi_logo_small.png :target: https://github.com/felixriese/susi :align: right :alt: SuSi logo

SuSi: Supervised Self-organizing maps in Python

Python package for unsupervised, supervised and semi-supervised self-organizing maps (SOM)

Description

We present the SuSi package for Python. It includes a fully functional SOM for unsupervised, supervised and semi-supervised tasks:

  • SOMClustering: Unsupervised SOM for clustering
  • SOMRegressor: (Semi-)Supervised Regression SOM
  • SOMClassifier: (Semi-)Supervised Classification SOM

:License: 3-Clause BSD license <LICENSE>_

:Author: Felix M. Riese <mailto:[email protected]>_

:Citation: see Citation_ and in the bibtex <https://github.com/felixriese/susi/blob/master/bibliography.bib>_ file

:Documentation: Documentation <https://susi.readthedocs.io/en/latest/index.html>_

:Installation: Installation guidelines <https://susi.readthedocs.io/en/latest/install.html>_

:Paper: F. M. Riese, S. Keller and S. Hinz in Remote Sensing, 2020 <https://www.mdpi.com/2072-4292/12/1/7>_

Installation

.. code:: bash

pip3 install susi

More information can be found in the installation guidelines <https://susi.readthedocs.io/en/latest/install.html>_.

.. image:: https://static.pepy.tech/personalized-badge/susi?period=total&units=international_system&left_color=black&right_color=blue&left_text=Downloads :target: https://pepy.tech/project/susi :alt: Downloads

Examples

A collection of code examples can be found in the documentation <https://susi.readthedocs.io/en/latest/examples.html>_. Code examples as Jupyter Notebooks can be found here:

  • examples/SOMClustering <https://github.com/felixriese/susi/blob/master/examples/SOMClustering.ipynb>_
  • examples/SOMRegressor <https://github.com/felixriese/susi/blob/master/examples/SOMRegressor.ipynb>_
  • examples/SOMRegressor_semisupervised <https://github.com/felixriese/susi/blob/master/examples/SOMRegressor_semisupervised.ipynb>_
  • examples/SOMClassifier <https://github.com/felixriese/susi/blob/master/examples/SOMClassifier.ipynb>_
  • examples/SOMClassifier_semisupervised <https://github.com/felixriese/susi/blob/master/examples/SOMClassifier_semisupervised.ipynb>_

FAQs

  • How should I set the initial hyperparameters of a SOM? For more details on the hyperparameters, see in documentation/hyperparameters <https://susi.readthedocs.io/en/latest/hyperparameters.html>_.
  • How can I optimize the hyperparameters? The SuSi hyperparameters can be optimized, for example, with scikit-learn.model_selection.GridSearchCV <https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html>_, since the SuSi package is developed according to several scikit-learn guidelines.

Citation

The bibtex file including both references is available in bibliography.bib <https://github.com/felixriese/susi/blob/master/bibliography.bib>_.

Paper:

F. M. Riese, S. Keller and S. Hinz, "Supervised and Semi-Supervised Self-Organizing Maps for Regression and Classification Focusing on Hyperspectral Data", Remote Sensing, vol. 12, no. 1, 2020. DOI:10.3390/rs12010007 <https://doi.org/10.3390/rs12010007>_

.. code:: bibtex

@article{riese2020supervised,
    author = {Riese, Felix~M. and Keller, Sina and Hinz, Stefan},
    title = {{Supervised and Semi-Supervised Self-Organizing Maps for
              Regression and Classification Focusing on Hyperspectral Data}},
    journal = {Remote Sensing},
    year = {2020},
    volume = {12},
    number = {1},
    article-number = {7},
    URL = {https://www.mdpi.com/2072-4292/12/1/7},
    ISSN = {2072-4292},
    DOI = {10.3390/rs12010007}
}

Code:

Felix M. Riese, "SuSi: SUpervised Self-organIzing maps in Python", Zenodo, 2019. DOI:10.5281/zenodo.2609130 <https://doi.org/10.5281/zenodo.2609130>_

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.2609130.svg :target: https://doi.org/10.5281/zenodo.2609130

.. code:: bibtex

@misc{riese2019susicode,
    author = {Riese, Felix~M.},
    title = {{SuSi: Supervised Self-Organizing Maps in Python}},
    year = {2019},
    DOI = {10.5281/zenodo.2609130},
    publisher = {Zenodo},
    howpublished = {\href{https://doi.org/10.5281/zenodo.2609130}{doi.org/10.5281/zenodo.2609130}}
}

License

This project is published under the 3-Clause BSD <LICENSE>_ license.

.. image:: https://img.shields.io/pypi/l/susi.svg :target: https://github.com/felixriese/susi/blob/master/LICENSE :alt: PyPI - License

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].