|
4 | 4 | "cell_type": "markdown", |
5 | 5 | "metadata": {}, |
6 | 6 | "source": [ |
7 | | - "[](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/radix-ai/conformal-tights) [](https://github.com/codespaces/new/radix-ai/conformal-tights)\n", |
| 7 | + "[](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/superlinear-ai/conformal-tights) [](https://github.com/codespaces/new/superlinear-ai/conformal-tights)\n", |
8 | 8 | "\n", |
9 | 9 | "# 👖 Conformal Tights\n", |
10 | 10 | "\n", |
11 | | - "Conformal Tights is a Python package that exports:\n", |
| 11 | + "Conformal Tights is a Python package for Coherent Conformal Prediction<sup>✦</sup> that exports:\n", |
12 | 12 | "\n", |
13 | | - "- a [scikit-learn](https://github.com/scikit-learn/scikit-learn) [meta-estimator](https://scikit-learn.org/stable/glossary.html#term-meta-estimator) that adds [conformal prediction](https://en.wikipedia.org/wiki/Conformal_prediction) of coherent [quantiles](https://en.wikipedia.org/wiki/Quantile) and [intervals](https://en.wikipedia.org/wiki/Prediction_interval) to any [scikit-learn regressor](https://scikit-learn.org/stable/glossary.html#term-regressor)\n", |
14 | | - "- a [Darts](https://github.com/unit8co/darts) [forecaster](https://unit8co.github.io/darts/generated_api/darts.models.forecasting.regression_model.html) that adds conformally calibrated [probabilistic time series forecasting](https://unit8co.github.io/darts/userguide/forecasting_overview.html#probabilistic-forecasts) to any scikit-learn regressor\n", |
| 13 | + "1. 🍬 a scikit-learn [meta-estimator](https://scikit-learn.org/stable/glossary.html#term-meta-estimator) that adds coherent [conformal](https://en.wikipedia.org/wiki/Conformal_prediction) prediction of [quantiles](https://en.wikipedia.org/wiki/Quantile) and [intervals](https://en.wikipedia.org/wiki/Prediction_interval) to any [scikit-learn regressor](https://scikit-learn.org/stable/glossary.html#term-regressor)\n", |
| 14 | + "2. 🔮 a Darts [forecaster](https://unit8co.github.io/darts/generated_api/darts.models.forecasting.regression_model.html) that adds coherent conformal [probabilistic time series forecasting](https://unit8co.github.io/darts/userguide/forecasting_overview.html#probabilistic-forecasts) to any scikit-learn regressor\n", |
15 | 15 | "\n", |
16 | 16 | "## Features\n", |
17 | 17 | "\n", |
18 | | - "1. 🍬 *Sklearn meta-estimator*: add conformal prediction of quantiles and intervals to any scikit-learn regressor\n", |
19 | | - "2. 🔮 *Darts forecaster:* add conformally calibrated probabilistic forecasting to any scikit-learn regressor\n", |
20 | | - "3. 🌡️ *Conformally calibrated:* accurate quantiles, and intervals with reliable [coverage](https://en.wikipedia.org/wiki/Coverage_probability)\n", |
21 | | - "4. 🚦 *Coherent quantiles:* quantiles increase monotonically instead of [crossing](https://github.com/dmlc/xgboost/issues/9848) [each other](https://github.com/microsoft/LightGBM/issues/3447)\n", |
22 | | - "5. 👖 *Tight quantiles:* selects the lowest [dispersion](https://en.wikipedia.org/wiki/Statistical_dispersion) that provides the desired coverage\n", |
23 | | - "6. 🎁 *Data efficient:* requires only a small number of calibration examples to fit\n", |
24 | | - "7. 🐼 *Pandas support:* optionally predict on DataFrames and receive DataFrame output\n", |
| 18 | + "> [!TIP]\n", |
| 19 | + "> <sup>✦</sup>Coherent Conformal Prediction (CCP): what makes Conformal Tights unique is that it produces so-called _coherent_ conformally calibrated quantile predictions. Without coherence, a model's predicted quantiles may cross each other in practice. For instance, the 25th percentile prediction may be higher than the 75th percentile prediction. With coherence, the predicted quantiles increase monotonically as you would expect.\n", |
| 20 | + "\n", |
| 21 | + "1. 🚦 **Coherent:** quantiles increase monotonically instead of [crossing](https://github.com/dmlc/xgboost/issues/9848) [each other](https://github.com/microsoft/LightGBM/issues/3447)\n", |
| 22 | + "2. 🌡️ **Conformal:** prediction intervals with reliable [coverage](https://en.wikipedia.org/wiki/Coverage_probability) and accurate quantile predictions\n", |
| 23 | + "3. 🪜 **Dynamic:** two-level conformal calibration of both absolute and relative residuals\n", |
| 24 | + "4. 👖 **Tight:** selects the lowest [dispersion](https://en.wikipedia.org/wiki/Statistical_dispersion) that provides the desired coverage\n", |
| 25 | + "5. 🎁 **Data efficient:** requires only a small number of calibration examples to fit\n", |
| 26 | + "6. 🐼 **Pandas support:** optionally predict on DataFrames and receive DataFrame output\n", |
25 | 27 | "\n", |
26 | 28 | "## Using\n", |
27 | 29 | "\n", |
|
0 commit comments