Python package for domain adaptation in multivariate regression
Project description
Domain-invariant partial least squares regression (di-PLS)
Python implementation of (m)di-PLS for domain adaptation in multivariate regression problems.
Installation
pip install diPLSlib
Usage
How to apply di-PLS
Train regression model
from diPLSlib.models import DIPLS
from diPLSlib.utils import misc
l = [100000] # Regularization
m = DIPLS(A=2, l=l)
m.fit(X, y, X_source, X_target)
# Typically X=X_source and y are the corresponding response values
Apply the model
yhat_dipls = m.predict(X_test)
err = misc.rmse(y_test, yhat_dipls)
How to apply mdi-PLS
from diPLSlib.models import DIPLS
l = [100000] # Regularization
m = DIPLS(A=2, l=l, target_domain=2)
m.fit(X, y, X_source, X_target)
# X_target = [X1, X2, ... , Xk] is a list of target domain data
# The parameter target_domain specifies for which domain the model should be trained (here X2).
How to apply GCT-PLS
from diPLSlib.models import GCTPLS
# Training
l = [10] # Regularization
m = GCTPLS(A=2, l=l)
m.fit(X, y, X_source, X_target)
# X_source and X_target hold the same samples measured in the source and target domain, respectively.
Documentation
The documentation can be found here.
Acknowledgements
The first version of di-PLS was developed by Ramin Nikzad-Langerodi, Werner Zellinger, Edwin Lughofer, Bernhard Moser and Susanne Saminger-Platz and published in:
- Ramin Nikzad-Langerodi, Werner Zellinger, Edwin Lughofer, and Susanne Saminger-Platz Analytical Chemistry 2018 90 (11), 6693-6701 https://doi.org/10.1021/acs.analchem.8b00498
Further refinements to the initial algorithm were published in:
-
R. Nikzad-Langerodi, W. Zellinger, S. Saminger-Platz and B. Moser, "Domain-Invariant Regression Under Beer-Lambert's Law," 2019 18th IEEE International Conference On Machine Learning And Applications (ICMLA), Boca Raton, FL, USA, 2019, pp. 581-586, https://doi.org/10.1109/ICMLA.2019.00108.
-
Ramin Nikzad-Langerodi, Werner Zellinger, Susanne Saminger-Platz, Bernhard A. Moser, Domain adaptation for regression under Beer–Lambert’s law, Knowledge-Based Systems, Volume 210, 2020, https://doi.org/10.1016/j.knosys.2020.106447.
-
Bianca Mikulasek, Valeria Fonseca Diaz, David Gabauer, Christoph Herwig, Ramin Nikzad-Langerodi, "Partial least squares regression with multiple domains" Journal of Chemometrics 2023 37 (5), e3477, https://doi.org/10.13140/RG.2.2.23750.75845
-
Ramin Nikzad-Langerodi & Florian Sobieczky (2021). Graph‐based calibration transfer. Journal of Chemometrics, 35(4), e3319. https://doi.org/10.1002/cem.3319
Contact us
Bottleneck Analytics GmbH
info@bottleneck-analytics.com
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 Distributions
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 diPLSlib-2.2.1-py3-none-any.whl.
File metadata
- Download URL: diPLSlib-2.2.1-py3-none-any.whl
- Upload date:
- Size: 27.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0001403346370a001ef59a95f74e692679f01786f6d7e46a80b46674a2351b2
|
|
| MD5 |
4614bc18eec51c86f2fb5903e91e7c66
|
|
| BLAKE2b-256 |
a79be2d924b5928161149ba722d60899e2fbd06ff926ddb686d9477e96d6c1cd
|