Generative Topographic Mapping (GTM) for Python: GTM classification and regression
Project description
GTM (Generative Topographic Mapping) is a dimensionality reduction algorithm (like t-SNE, LLE, etc.) created by Bishop et al. and a probabilistic counterpart of Kohonen maps. ugtm implements GTM and GTM-based prediction algorithms, including a kernel variant (kGTM), classification (GTC) and regression (GTR) maps, sklearn-compatible estimators, and repeated cross-validation.
Full documentation: https://ugtm.readthedocs.io/
Quick start
import ugtm import numpy as np data = np.random.randn(100, 50) labels = np.random.choice([1, 2], size=100) gtm = ugtm.runGTM(data=data) coordinates = gtm.matMeans # mean positions (n_samples, 2) modes = gtm.matModes # mode positions (n_samples, 2) resp = gtm.matR # responsibilities (n_samples, n_nodes)
sklearn-compatible estimators
from ugtm import eGTM, eGTC, eGTR transformed = eGTM().fit(X_train).transform(X_test) predicted_labels = eGTC().fit(X_train, y_train).predict(X_test) predicted_values = eGTR().fit(X_train, y_train).predict(X_test)
Visualisation
ugtm outputs are plain NumPy arrays — use any plotting library:
import matplotlib.pyplot as plt gtm = ugtm.runGTM(data=data) coords = gtm.matMeans plt.scatter(coords[:, 0], coords[:, 1], c=labels, cmap="Spectral_r") plt.colorbar() plt.show()
See https://ugtm.readthedocs.io/ for richer examples.
Predictions and cross-validation
# GTM classification / regression predicted = ugtm.GTC(train=train, test=test, labels=labels) predicted = ugtm.GTR(train=train, test=test, labels=activity) # Repeated cross-validation ugtm.crossvalidateGTC(data=train, labels=labels, s=1, regul=1) ugtm.crossvalidateGTR(data=train, labels=activity, s=1, regul=1)
References
GTM algorithm — Bishop et al. (1998)
Kernel GTM — https://www.elen.ucl.ac.be/Proceedings/esann/esannpdf/es2010-44.pdf
GTM classification models — https://www.ncbi.nlm.nih.gov/pubmed/24320683
GTM regression models — https://www.ncbi.nlm.nih.gov/pubmed/27490381
ugtm paper — https://openresearchsoftware.metajnl.com/articles/10.5334/jors.235/
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ugtm-2.2.0.tar.gz.
File metadata
- Download URL: ugtm-2.2.0.tar.gz
- Upload date:
- Size: 41.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca9800e4d1a3719efaaedf129770af527e920d8ac35ed89eb2c38cf931da33f3
|
|
| MD5 |
0c32fb4d8d0fb3cc3698adca7f4dd37c
|
|
| BLAKE2b-256 |
c555372e0f89af8cde00ee9d3da0d324596dc48787b4332937ae543ee901d71d
|
File details
Details for the file ugtm-2.2.0-py3-none-any.whl.
File metadata
- Download URL: ugtm-2.2.0-py3-none-any.whl
- Upload date:
- Size: 32.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d9dfb8614504ceedb124cd0d0d4556ebed8c8d2dd2d7aa5097b16b57cd510cf
|
|
| MD5 |
e713a9ce9eb1c0a9059b6f3969429a94
|
|
| BLAKE2b-256 |
12e18a70e37980c176bdbe6d7e2c8a9f96c28cb95162219ad85c78b1029b7403
|