Maxwell : scikit-learn

Summary

Sourcehttps://scikit-learn.org

License:  BSD

Path:  part of conda installations

Documentationhttps://scikit-learn.org/stable/tutorial/basic/tutorial.html

scikit-learn is a simple and efficient tools for data mining and data analysis

  • Accessible to everybody, and reusable in various contexts
  • Built on NumPy, SciPy, and matplotlib
  • Open source, commercially usable - BSD license

Using  scikit-learn

 To initialize the environment use the module command:

[elx]% module load maxwell conda # or conda/<version>
[elx]% python
>>> from sklearn import datasets
>>> iris = datasets.load_iris()
>>> digits = datasets.load_digits()