Skip to main content

No project description provided

Project description

PyPI Version License Documentation Status Build Status

Fast CPU, GPU, and TPU Python implementations of Improved Kernel PLS Algorithm #1 and Algorithm #2 by Dayal and MacGregor [1]. Improved Kernel PLS is both fast [2] and numerically stable [3]. The CPU implementations use NumPy [4] and subclass BaseEstimator from scikit-learn [5], allowing integration into scikit-learn’s ecosystem of machine learning algorithms and pipelines. For example, the CPU implementations can be used with scikit-learn’s cross_validate. The GPU and TPU implementations use Google’s JAX [6]. JAX supports automatic differentiation while allowing CPU, GPU, and TPU execution. This implies that the JAX implementations can be combined with deep learning approaches, as the PLS fit is differentiable.

The documentation is available at https://ikpls.readthedocs.io/en/latest/; examples can be found at https://github.com/Sm00thix/IKPLS/tree/main/examples.

Extremely Fast Cross-Validation

In addition to the implementations mentioned above, this package contains the novel, fast cross-validation algorithms mentioned in [7] using both IKPLS algorithms. The fast cross-validation algorithms benefit both IKPLS Algorithms and especially Algorithm #2. The fast cross-validation algorithms are mathematically equivalent to the classical cross-validation algorithm. Still, they are much quicker if cross-validation splits exceed 3. The fast cross-validation algorithms correctly handle (column-wise) centering and scaling of the X and Y input matrices using training set means and standard deviations to avoid data leakage from the validation set. This centering and scaling can be enabled by setting the center parameter to True and the scale parameter to True, respectively.

Pre-requisites

The JAX implementations support running on both CPU, GPU, and TPU. To use the GPU or TPU, follow the instructions from the JAX Installation Guide.

To ensure that JAX implementations use Float64, set the environment variable JAX_ENABLE_X64=True as per the Current Gotchas.

Installation

  • Install the package for Python3 using the following command:
    $ pip3 install ikpls
  • Now you can import the NumPy and JAX implementations with:
    from ikpls.numpy_ikpls import PLS as NpPLS
    from ikpls.jax_ikpls_alg_1 import PLS as JAXPLS_Alg_1
    from ikpls.jax_ikpls_alg_2 import PLS as JAXPLS_Alg_2
    from ikpls.fast_cross_validation.numpy_ikpls import PLS as NpPLS_FastCV

Quick Start

Use the ikpls package for PLS modeling

import numpy as np

from ikpls.numpy_ikpls import PLS

N = 100  # Number of samples.
K = 50  # Number of features.
M = 10  # Number of targets.
A = 20  # Number of latent variables (PLS components).

X = np.random.uniform(size=(N, K)).astype(np.float64)
Y = np.random.uniform(size=(N, M)).astype(np.float64)

# The other PLS algorithms and implementations, except for NpPLS_FastCV, have the same interface for fit() and predict().
np_ikpls_alg_1 = PLS(algorithm=1)
np_ikpls_alg_1.fit(X, Y, A)

y_pred = np_ikpls_alg_1.predict(X) # Has shape (A, N, M) = (20, 100, 10). Contains a prediction for all possible numbers of components up to and including A.
y_pred_20_components = np_ikpls_alg_1.predict(X, n_components=20) # Has shape (N, M) = (100, 10).
(y_pred_20_components == y_pred[19]).all() # True

# The internal model parameters can be accessed as follows:
np_ikpls_alg_1.B  # Regression coefficients tensor of shape (A, K, M) = (20, 50, 10).
np_ikpls_alg_1.W  # X weights matrix of shape (K, A) = (50, 20).
np_ikpls_alg_1.P  # X loadings matrix of shape (K, A) = (50, 20).
np_ikpls_alg_1.Q  # Y loadings matrix of shape (M, A) = (10, 20).
np_ikpls_alg_1.R  # X rotations matrix of shape (K, A) = (50, 20).
np_ikpls_alg_1.T  # X scores matrix of shape (N, A) = (100, 20). This is only computed for IKPLS Algorithm #1.

Examples

In examples you will find:

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

ikpls-1.1.1.tar.gz (22.7 kB view hashes)

Uploaded Source

Built Distribution

ikpls-1.1.1-py3-none-any.whl (28.1 kB view hashes)

Uploaded Python 3

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