The Green Magic library of the Green-Machine
Project description
Green Magic is a library containing class models allowing users to train machine learning models as well as visualize cannabis strain data. It has functionality for encoding raw cannabis strain data into features usefull for visualization and cluster analysis. It contains implementations for model evaluation and methods for data exploration.
Key features of the Library:
Data cleaning
Seemless dataset creation
Extendable feature extraction system
Usage of the Somoclu library [1] as the backend, which allows for ‘fast execution of Self-Organizing Maps by parallelization: OpenMP and CUDA are supported’.
Visualization of maps
Kmeans and Affinity-propagation based clustering
Formatted print of statistics and distributions
Usage
A simple example is below.
from green_magic import WeedMaster from green_magic.clustering import ClusteringFactory, DistroReporter, get_model_quality_reporter all_vars = ['type', 'effects', 'medical', 'negatives', 'flavors'] active_vars = ['type', 'effects', 'medical', 'negatives', 'flavors'] wd = 'pd' wm = WeedMaster() dt = wm.create_weedataset(dt_path, wd) dt.use_variables(active_vars) dt.clean() vectors = wm.get_feature_vectors(dt) print(dt) wm.save_dataset(wd) som = wm.map_manager.get_som('toroid.rectangular.30.30.pca') wm.map_manager.show_mmap(som) clf = ClusteringFactory(wm) cls = clf.create_clusters(som, 'kmeans', nb_clusters=10, vars=all_vars, ngrams=1) print(cls) cls.print_map() r = DistroReporter() r.print_distros(cls0, 'type', prec=3) qr = get_model_quality_reporter(wm, wd) print(qr.measure(cls, metric='silhouette')) print(qr.measure(cls, metric='cali-hara'))
Installation
The code is available on PyPI, hence it can be installed by
$ pip install green_magic
Citation
Peter Wittek, Shi Chao Gao, Ik Soo Lim, Li Zhao (2017). Somoclu: An Efficient Parallel Library for Self-Organizing Maps. Journal of Statistical Software, 78(9), pp.1–21. DOI:10.18637/jss.v078.i09. arXiv:1305.1422.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file green_magic-0.5.6.tar.gz
.
File metadata
- Download URL: green_magic-0.5.6.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87de63eafff96da100b9ee1fd585b05bc0c3c8d5cb2b641db172b21b2cbf7884 |
|
MD5 | f41c840678c1adc5ff17911c88459cab |
|
BLAKE2b-256 | e239dfde853020070b4db2b16265bdcaf915da744b58eb4f8418a8a7d8b64a68 |