A Robust ML toolbox
Project description
| CI | Test |
|
| Style |
|
|
| Doc |
|
|
| Doc | Readthedocs |
|
| Checks | Code style |
|
| Types |
|
|
| Build |
|
|
| Install | Pip |
|
| Conda |
|
|
| Github |
|
|
| Cite |
|
|
SkWDRO - Wasserstein Distributionaly Robust Optimization
Model robustification with thin interface
You can make pigs fly, [Kolter&Madry, 2018]
skwdro is a Python package that offers WDRO versions for a large range of estimators, either by extending scikit-learn estimator or by providing a wrapper for pytorch modules.
Have a look at skwdro documentation!
Getting started with skwdro
Installation
Development mode with hatch
First install hatch and clone the archive. In the root folder, make shell gives you an interactive shell in the correct environment and make test runs the tests (it can be launched from both an interactive shell and a normal shell).
make reset_env removes installed environments (useful in case of troubles).
With pip
skwdro will be available on PyPi soon, for now only the development mode is available.
First steps with skwdro
scikit-learn interface
Robust estimators from skwdro can be used as drop-in replacements for scikit-learn estimators (they actually inherit from scikit-learn estimators and classifier classes.). skwdro provides robust estimators for standard problems such as linear regression or logistic regression. LinearRegression from skwdro.linear_model is a robust version of LinearRegression from scikit-learn and be used in the same way. The only difference is that now an uncertainty radius rho is required.
We assume that we are given X_train of shape (n_train, n_features) and y_train of shape (n_train,) as training data and X_test of shape (n_test, n_features) as test data.
from skwdro.linear_model import LinearRegression
# Uncertainty radius
rho = 0.1
# Fit the model
robust_model = LinearRegression(rho=rho)
robust_model.fit(X_train, y_train)
# Predict the target values
y_pred = robust_model.predict(X_test)
You can refer to the documentation to explore the list of skwdro's already-made estimators.
pytorch interface
Didn't find a estimator that suits you? You can compose your own using the pytorch interface: it allows more flexibility, custom models and optimizers.
Assume now that the data is given as a dataloader train_loader.
import torch
import torch.nn as nn
import torch.optim as optim
from skwdro.torch import robustify
# Uncertainty radius
rho = 0.1
# Define the model
model = nn.Linear(n_features, 1)
# Define the loss function
loss_fn = nn.MSELoss()
# Define a sample batch for initialization
sample_batch_x, sample_batch_y = next(iter(train_loader))
# Robust loss
robust_loss = robustify(loss_fn, model, rho, sample_batch_x, sample_batch_y)
# Define the optimizer
optimizer = optim.Adam(model.parameters(), lr=0.01)
# Training loop
for epoch in range(100):
for batch_x, batch_y in train_loader:
optimizer.zero_grad()
loss = robust_loss(model(batch_x), batch_y)
loss.backward()
optimizer.step()
You will find detailed description on how to robustify modules in the documentation.
Cite
skwdro is the result of a research project. It is licensed under BSD 3-Clause. You are free to use it and if you do so, please cite
@article{vincent2024skwdro,
title={skwdro: a library for Wasserstein distributionally robust machine learning},
author={Vincent, Florian and Azizian, Wa{\"\i}ss and Iutzeler, Franck and Malick, J{\'e}r{\^o}me},
journal={arXiv preprint arXiv:2410.21231},
year={2024}
}
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 skwdro-1.1.1.tar.gz.
File metadata
- Download URL: skwdro-1.1.1.tar.gz
- Upload date:
- Size: 48.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
566f2c15407c4071ed31ae5d2a5eae6ce05b58d2324a1fb575562ae8824ce502
|
|
| MD5 |
48ef8bcbc9efb53e7bc784b902eac6ed
|
|
| BLAKE2b-256 |
41934f209b7ebfd7dc4393e9b85e4ea30369208eb53d7aad5becced4fb66d020
|
File details
Details for the file skwdro-1.1.1-py2.py3-none-any.whl.
File metadata
- Download URL: skwdro-1.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 76.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
844c2c29c171e81c8c55bfd3d2720718fc826d3e9175bb278ed20c536b8f949f
|
|
| MD5 |
c92f298901eede18f94819007b65ad97
|
|
| BLAKE2b-256 |
9de9e7c80fc2d4bb772efd05d4299a7ce843a8aeb6f4bd7caa05fa8c769486c8
|