MALSS: MAchine Learning Support System
Project description
malss is a python module to facilitate system development using machine learning algorithms.
Requirements
These are external packages which you will need to install before installing malss.
python (>= 2.7, 3.x’s are not supported)
numpy (>= 1.6.1)
scipy (>= 0.9)
scikit-learn (>= 0.14)
matplotlib (>= 1.3)
pandas (>= 0.13)
jinja2 (>= 2.7)
Windows
If there are no binary packages matching your Python version you might to try to install these dependencies from Christoph Gohlke Unofficial Windows installers.
Example
Classification:
from sklearn.datasets import load_iris
iris = load_iris()
cls = MALSS(iris.data, iris.target, task='classification')
cls.execute()
cls.make_report('classification_result')
Regression:
from sklearn.datasets import load_boston
boston = load_boston()
cls = MALSS(boston.data, boston.target, task='regression')
cls.execute()
cls.make_report('regression_result')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
malss-0.0.1.zip
(9.7 kB
view details)
File details
Details for the file malss-0.0.1.zip.
File metadata
- Download URL: malss-0.0.1.zip
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54c6ed7820ae8b2bf8618ed4df218c690abbd4158c6bb8c36b31b0514936e51e
|
|
| MD5 |
4a2422f40a9babef51af14f4e4f40b34
|
|
| BLAKE2b-256 |
9ecc94863573a1d35df6af3349152e99ad4454c59287ce8cff0b4e9d4488e9b9
|