Skip to main content

Gaussian Mixture Model clustering in size-and-shape space using PyTorch

Project description

shapeGMMTorch

Overview

This is a package to perform Gaussian Mixture Model (GMM) clustering on particle positions (in ). Like other GMM schemes, the user must specify the number of clusters and a cluster initialization scheme (defaults to random). This is specified in the object initialization line, analagous to how it is done for the sklearn GaussianMixture package. There are two choices for the form of the covariance specified by the covar_type keyword in the object initialization. See paper (Klem et al JCTC 2022, https://pubs.acs.org/doi/abs/10.1021/acs.jctc.1c01290) for additional details.

Dependencies

This package is dependent on the following packages:

  1. Python>=3.6
  2. numpy
  3. torch>=1.11 (==1.11 if option 4 is used)
  4. Optional: torch_batch_svd available from https://github.com/KinglittleQ/torch-batch-svd

The last package is for the SVD part of the alignment and is much faster than the native batch torch library. It is, however, not compatible with the current version of torch (1.12) thus the requirement of torch 1.11.

The examples are also dependent on:

  1. MDAnalysis
  2. matplotlib
  3. pyemma
  4. shapeGMM

Installation

After the dependencies have been installed, the package can be installed from pip

pip install shapeGMMTorch

or by downloading from github and then running

python setup.py install

Usage

This package is designed to mimic the usage of the sklearn package. You first initiliaze the object and then fit. Predict can be done once the model is fit. Fit and ppredict functions take particle position trajectories as input in the form of a (n_frames, n_atoms, 3) numpy array.

Initialize:

from shapeGMMTorch import torch_sgmm

Uniform (spherical, uncorrelated) covariance:

usgmm = torch_sgmm.ShapeGMMTorch(n_clusters, covar_type = 'uniform', verbose=True)

Weighted (Kronecker product) covariance:

wsgmm = torch_sgmm.ShapeGMMTorch(n_clusters, covar_type = 'kronecker', verbose=True)

During initialization, the following options are availble:

- n_clusters (required)   - integer number of clusters must be input
- covar_type              - string defining the covariance type.  Options are 'kronecker' and 'uniform'.  Defualt is 'uniform'.
- log_thresh              - float threshold in log likelihood difference to determine convergence. Default value is 1e-3.
- max_steps               - integer maximum number of steps that the GMM procedure will do.  Default is 200.
- init_cluster_method     - string dictating how to initialize clusters.  Understood values are 'chunk', 'read' and 'random'.  Default is 'random'.
- sort                    - boolean dictating whether to sort the object by cluster population after fitting.  Default is True.
- kabsch_thresh           - float dictating convergence criteria for each iterative alignment (Maximization step).  Default value is 1e-1.
- dtype                   - Torch data type to be used.  Default is torch.float32.
- device                  - Torch device to be used.  Default is torch.device('cuda:0') device.
- verbose                 - boolean dictating whether to print various things at every step. Defualt is False.

Fit:

uniform_aligned_trajectory = usgmm.fit(training_set_positions)

kronecker_aligned_trajectory = wsgmm.fit(training_set_positions)

Predict:

clusters, aligned_traj, log_likelihood = usgmm.predict(full_trajectory_positions)

clusters, aligned_traj, log_likelihood = wsgmm.predict(full_trajectory_positions)

Attributes

After being properly fit, a shapeGMM object will have the following attributes:

- n_clusters		- integer of how many clusters were used in training
- n_atoms           	- integer of how many atoms were in the training data
- clusters              - integer array of cluster ids for training data
- log_likelihood        - float log likelihood of training set
- weights               - (n_clusters) float array of cluster weights
- centers	      	- (n_clusters, n_atoms, 3) float array of cluster centers/averages

Uniform covariance specific attributes

- vars		       	- (n_clusters) float array of cluster variances

Kronecker covariance specific attributes

- precisions	   	- (n_clusters, n_atoms, n_atoms) float array of cluster precisions (inverse covariances)
- lpdets	    	- (n_clusters) float array of ln(det(covar))

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

shapeGMMTorch-0.0.8.tar.gz (13.7 kB view details)

Uploaded Source

Built Distribution

shapeGMMTorch-0.0.8-py3-none-any.whl (15.3 kB view details)

Uploaded Python 3

File details

Details for the file shapeGMMTorch-0.0.8.tar.gz.

File metadata

  • Download URL: shapeGMMTorch-0.0.8.tar.gz
  • Upload date:
  • Size: 13.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.3

File hashes

Hashes for shapeGMMTorch-0.0.8.tar.gz
Algorithm Hash digest
SHA256 ac52eff26a34599ae1d9b29050d0942e0adf80a001125422e389247c36139174
MD5 631eac6a810810b287a2088a4542ec0d
BLAKE2b-256 bfe6d0e32e5b41554fc7799ad7478f9e173a50435ac8f6b33100cc3442aa2d96

See more details on using hashes here.

File details

Details for the file shapeGMMTorch-0.0.8-py3-none-any.whl.

File metadata

File hashes

Hashes for shapeGMMTorch-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 964b819315659b986d999fefacea6660396e9262795a40a441fd7baf85954444
MD5 2c4e073abe2ef0df995f9cb128f5994a
BLAKE2b-256 7a4471a8337edf283f1e2308d30a4f92172b445efd4b0ee72279973ac3b44e05

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page