Missing Value Imputation using Deep Gaussian Processes with a scikit-learn compatible API.
Project description
MGP-Imputer: Missing Value Imputation with Deep Gaussian Processes
A PyTorch-based implementation of Missing Gaussian Processes (MGP) for missing value imputation, wrapped in a user-friendly scikit-learn compatible API.
This package allows you to seamlessly integrate Deep Gaussian Process models into your data preprocessing pipelines for robust and uncertainty-aware imputation. It is based on the paper "Gaussian processes for missing value imputation".
Features
- Scikit-learn Compatible: Use
fit,predict, andfit_transformmethods just like any other scikit-learn transformer. - Two Imputation Strategies:
chained(Default): Builds a separate GP layer for each feature with missing values, modeling dependencies in a chained fashion (MGP).holistic: Builds a single, multi-output Deep GP to model all features simultaneously.
- Probabilistic Imputation: Returns both the imputed values and the standard deviation, giving you a measure of uncertainty for each imputed value.
- GPU Accelerated: Leverages PyTorch to run on CUDA devices for significant speedups.
Installation
You can install mgp-imputer directly from PyPI:
pip install mgp-imputer
Quick Start
Here's how to use MGPImputer to fill in missing values (np.nan) in your dataset.
import numpy as np
import pandas as pd
from mgp import MGPImputer
# 1. Create a synthetic dataset with 20% missing values
np.random.seed(42)
n_samples, n_features = 200, 5
X_true = np.random.rand(n_samples, n_features) * 10
X_missing = X_true.copy()
missing_mask = np.random.rand(n_samples, n_features) < 0.2
X_missing[missing_mask] = np.nan
print(f"Created a dataset with {np.sum(missing_mask)} missing values.")
# 2. Initialize the MGPImputer
# Strategies can be 'chained' (default) or 'holistic'
imputer = MGPImputer(
imputation_strategy='chained',
n_inducing_points=100,
n_iterations=1000, # Use more iterations for real data
learning_rate=0.01,
batch_size=64,
verbose=True,
seed=42
)
# 3. Fit on the data and transform it to get imputed values
# The imputer returns the imputed data and the standard deviation of the predictions
X_imputed, X_std = imputer.fit_transform(X_missing)
# 4. Evaluate the imputation quality
rmse = np.sqrt(np.mean((X_imputed[missing_mask] - X_true[missing_mask])**2))
print(f"\nImputation complete.")
print(f"RMSE on missing values: {rmse:.4f}")
# The result is a complete numpy array
print("\nImputed data shape:", X_imputed.shape)
print("Number of NaNs in imputed data:", np.isnan(X_imputed).sum())
Citation
If you use this work in your research, please cite the original paper:
Jafrasteh, B., Hernández-Lobato, D., Lubián-López, S. P., & Benavente-Fernández, I. (2023). Gaussian processes for missing value imputation. Knowledge-Based Systems, 273, 110603. Missing GPs
License
This project is licensed under the MIT License.
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
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 mgp_imputer-0.0.3.tar.gz.
File metadata
- Download URL: mgp_imputer-0.0.3.tar.gz
- Upload date:
- Size: 32.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
599411ca996f06b6b9483566274e8bdafdce01ebec3074e0ade8de6fb472ec0e
|
|
| MD5 |
56de5fef69128ad792531c012177dd6e
|
|
| BLAKE2b-256 |
23a1581d552bc32eae90621d32e35b5b337cc91747cc5ab393cf94537aaceeae
|
File details
Details for the file mgp_imputer-0.0.3-py3-none-any.whl.
File metadata
- Download URL: mgp_imputer-0.0.3-py3-none-any.whl
- Upload date:
- Size: 36.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aec3e169c7a7ab8037d6660022586c0aa3b628fdfce52a444bc9600c77561117
|
|
| MD5 |
d41bb9f54dc5a51d31b22479c3ece1fd
|
|
| BLAKE2b-256 |
b944c81149f27f1f7d0ae623583c56ad0240b7ea935d694cbb9270212e5a1b37
|