PyPARC is a package for solving multivariate regression and classification problems using piecewise linear (affine) predictors over a polyhedral partition of the feature space. The underlying algorithm is called PARC (Piecewise Affine Regression and Classification) and is described in the following paper:
[1] A. Bemporad, "A piecewise linear regression and classification algorithm with application to learning and model predictive control of hybrid systems," IEEE Transactions on Automatic Control, vol. 68, pp. 3194–3209, June 2023. [bib entry]
The algorithm alternates between:
- Solving ridge regression problems (for numeric targets) and softmax regression problems (for categorical targets), and either softmax regression or cluster centroid computation for piecewise linear separation
- Assigning the training points to different clusters on the basis of a criterion that balances prediction accuracy and piecewise-linear separability.
For earlier Python versions of the code, see here.
pip install pyparc
Say we want to fit a piecewise affine model on a dataset of 1000 samples
We use 80% of the data for training (X_train
,Y_train
) and 20% for testing the model (X_test
,Y_test
).
We want to train a piecewise affine model on a polyhedral partition with maximum 10 regions, with
from parc.parc import PARC
predictor = PARC(K=10, alpha=1.0e-4, maxiter=15) # initialize PARC object
categorical = False # targets are numeric
# fit piecewise linear predictor
predictor.fit(X_train, Y_train)
# make predictions on test data
Yhtest, _ = predictor.predict(X_test)
# compute R2 scores
score_train = predictor.score(X_train, Y_train)
score_test = predictor.score(X_test, Y_test)
The resulting PWA model leads to the following partition
and PWA function
This package was coded by Alberto Bemporad.
This software is distributed without any warranty. Please cite the above papers if you use this software.
@article{Bem23,
author={A. Bemporad},
title={A Piecewise Linear Regression and Classification Algorithm with Application to Learning and Model Predictive Control of Hybrid Systems},
journal={IEEE Transactions on Automatic Control},
year=2023,
month=jun,
volume=68,
number=6,
pages={3194--3209},
}
Apache 2.0
(C) 2021-2023 A. Bemporad