conformalguard 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. conformalguard-0.1.0/LICENSE +190 -0
  2. conformalguard-0.1.0/PKG-INFO +202 -0
  3. conformalguard-0.1.0/README.md +167 -0
  4. conformalguard-0.1.0/pyproject.toml +66 -0
  5. conformalguard-0.1.0/setup.cfg +4 -0
  6. conformalguard-0.1.0/src/conformalguard/__init__.py +6 -0
  7. conformalguard-0.1.0/src/conformalguard/__main__.py +6 -0
  8. conformalguard-0.1.0/src/conformalguard/cli.py +139 -0
  9. conformalguard-0.1.0/src/conformalguard/data/__init__.py +19 -0
  10. conformalguard-0.1.0/src/conformalguard/data/datasets.py +16 -0
  11. conformalguard-0.1.0/src/conformalguard/data/magic.py +54 -0
  12. conformalguard-0.1.0/src/conformalguard/data/splits.py +68 -0
  13. conformalguard-0.1.0/src/conformalguard/experiments/__init__.py +122 -0
  14. conformalguard-0.1.0/src/conformalguard/experiments/concept_shift.py +165 -0
  15. conformalguard-0.1.0/src/conformalguard/experiments/concept_shift_grid.py +204 -0
  16. conformalguard-0.1.0/src/conformalguard/experiments/covariate_shift.py +151 -0
  17. conformalguard-0.1.0/src/conformalguard/experiments/covariate_shift_grid.py +195 -0
  18. conformalguard-0.1.0/src/conformalguard/experiments/iid_baseline.py +49 -0
  19. conformalguard-0.1.0/src/conformalguard/experiments/iid_conformal.py +163 -0
  20. conformalguard-0.1.0/src/conformalguard/experiments/iid_grid.py +123 -0
  21. conformalguard-0.1.0/src/conformalguard/experiments/label_shift.py +153 -0
  22. conformalguard-0.1.0/src/conformalguard/experiments/label_shift_grid.py +210 -0
  23. conformalguard-0.1.0/src/conformalguard/experiments/robustness.py +190 -0
  24. conformalguard-0.1.0/src/conformalguard/experiments/robustness_degradation.py +106 -0
  25. conformalguard-0.1.0/src/conformalguard/experiments/robustness_degradation_plotting.py +182 -0
  26. conformalguard-0.1.0/src/conformalguard/experiments/robustness_plotting.py +194 -0
  27. conformalguard-0.1.0/src/conformalguard/experiments/robustness_reporting.py +191 -0
  28. conformalguard-0.1.0/src/conformalguard/guard.py +246 -0
  29. conformalguard-0.1.0/src/conformalguard/html_report.py +130 -0
  30. conformalguard-0.1.0/src/conformalguard/metrics/__init__.py +17 -0
  31. conformalguard-0.1.0/src/conformalguard/metrics/classification.py +29 -0
  32. conformalguard-0.1.0/src/conformalguard/metrics/conformal.py +77 -0
  33. conformalguard-0.1.0/src/conformalguard/models/__init__.py +5 -0
  34. conformalguard-0.1.0/src/conformalguard/models/baselines.py +22 -0
  35. conformalguard-0.1.0/src/conformalguard/shifts/__init__.py +23 -0
  36. conformalguard-0.1.0/src/conformalguard/shifts/concept.py +143 -0
  37. conformalguard-0.1.0/src/conformalguard/shifts/covariate.py +88 -0
  38. conformalguard-0.1.0/src/conformalguard/shifts/label.py +128 -0
  39. conformalguard-0.1.0/src/conformalguard.egg-info/PKG-INFO +202 -0
  40. conformalguard-0.1.0/src/conformalguard.egg-info/SOURCES.txt +68 -0
  41. conformalguard-0.1.0/src/conformalguard.egg-info/dependency_links.txt +1 -0
  42. conformalguard-0.1.0/src/conformalguard.egg-info/entry_points.txt +2 -0
  43. conformalguard-0.1.0/src/conformalguard.egg-info/requires.txt +13 -0
  44. conformalguard-0.1.0/src/conformalguard.egg-info/top_level.txt +1 -0
  45. conformalguard-0.1.0/tests/test_cli.py +34 -0
  46. conformalguard-0.1.0/tests/test_concept_shift.py +169 -0
  47. conformalguard-0.1.0/tests/test_concept_shift_experiment.py +124 -0
  48. conformalguard-0.1.0/tests/test_concept_shift_grid.py +245 -0
  49. conformalguard-0.1.0/tests/test_conformal_metrics.py +78 -0
  50. conformalguard-0.1.0/tests/test_covariate_shift.py +100 -0
  51. conformalguard-0.1.0/tests/test_covariate_shift_experiment.py +105 -0
  52. conformalguard-0.1.0/tests/test_covariate_shift_grid.py +172 -0
  53. conformalguard-0.1.0/tests/test_guard_facade.py +56 -0
  54. conformalguard-0.1.0/tests/test_html_report.py +30 -0
  55. conformalguard-0.1.0/tests/test_iid_baseline.py +56 -0
  56. conformalguard-0.1.0/tests/test_iid_conformal.py +159 -0
  57. conformalguard-0.1.0/tests/test_iid_grid.py +128 -0
  58. conformalguard-0.1.0/tests/test_import.py +5 -0
  59. conformalguard-0.1.0/tests/test_label_shift.py +101 -0
  60. conformalguard-0.1.0/tests/test_label_shift_experiment.py +118 -0
  61. conformalguard-0.1.0/tests/test_label_shift_grid.py +195 -0
  62. conformalguard-0.1.0/tests/test_magic_dataset.py +59 -0
  63. conformalguard-0.1.0/tests/test_models.py +22 -0
  64. conformalguard-0.1.0/tests/test_robustness.py +257 -0
  65. conformalguard-0.1.0/tests/test_robustness_concept_integration.py +74 -0
  66. conformalguard-0.1.0/tests/test_robustness_degradation.py +214 -0
  67. conformalguard-0.1.0/tests/test_robustness_degradation_plotting.py +205 -0
  68. conformalguard-0.1.0/tests/test_robustness_plotting.py +185 -0
  69. conformalguard-0.1.0/tests/test_robustness_reporting.py +197 -0
  70. conformalguard-0.1.0/tests/test_splits.py +54 -0
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2026 Chinmaya Satyam
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
@@ -0,0 +1,202 @@
1
+ Metadata-Version: 2.4
2
+ Name: conformalguard
3
+ Version: 0.1.0
4
+ Summary: Stress-test conformal prediction under controlled distribution shift.
5
+ Author: Chinmaya Satyam
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/chinmaygit-lab/ConformalGuard
8
+ Project-URL: Repository, https://github.com/chinmaygit-lab/ConformalGuard
9
+ Project-URL: Issues, https://github.com/chinmaygit-lab/ConformalGuard/issues
10
+ Keywords: conformal-prediction,uncertainty-quantification,distribution-shift,robustness,machine-learning
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
19
+ Requires-Python: >=3.11
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: numpy
23
+ Requires-Dist: pandas
24
+ Requires-Dist: scipy
25
+ Requires-Dist: scikit-learn
26
+ Requires-Dist: matplotlib
27
+ Requires-Dist: mapie
28
+ Provides-Extra: dev
29
+ Requires-Dist: build; extra == "dev"
30
+ Requires-Dist: pytest; extra == "dev"
31
+ Requires-Dist: pytest-cov; extra == "dev"
32
+ Requires-Dist: ruff; extra == "dev"
33
+ Requires-Dist: twine; extra == "dev"
34
+ Dynamic: license-file
35
+
36
+ # ConformalGuard
37
+
38
+ **Stress-test conformal prediction before distribution shift breaks your coverage.**
39
+
40
+ ConformalGuard is a CPU-friendly Python toolkit for measuring how conformal classification behaves when deployment data no longer matches calibration data. It runs reproducible IID, covariate-shift, label-shift, and concept-shift experiments and produces coverage, accuracy, set-size, empty-set, degradation, CSV/JSON, and plot reports.
41
+
42
+ > Conformal prediction can provide finite-sample coverage under appropriate assumptions. ConformalGuard measures what happens when controlled deployment shifts violate those assumptions; it does not claim guarantees under arbitrary shift.
43
+
44
+ ![Verified example coverage under shift](assets/verified_coverage_example.png)
45
+
46
+ ## Install
47
+
48
+ Once published to PyPI:
49
+
50
+ ```bash
51
+ pip install conformalguard
52
+ ```
53
+
54
+ From source:
55
+
56
+ ```bash
57
+ git clone https://github.com/chinmaygit-lab/ConformalGuard.git
58
+ cd ConformalGuard
59
+ python -m pip install -e ".[dev]"
60
+ ```
61
+
62
+ ## 30-second quickstart
63
+
64
+ Run the built-in reproducible demo:
65
+
66
+ ```bash
67
+ conformalguard demo --out artifacts/demo
68
+ ```
69
+
70
+ Run the same stress test on a numeric CSV dataset:
71
+
72
+ ```bash
73
+ conformalguard benchmark data.csv --target label --out artifacts/my_run
74
+ ```
75
+
76
+ Or use the Python API:
77
+
78
+ ```python
79
+ from sklearn.datasets import load_breast_cancer
80
+ from conformalguard import ConformalGuard
81
+
82
+ X, y = load_breast_cancer(as_frame=True, return_X_y=True)
83
+
84
+ guard = ConformalGuard()
85
+ guard.run(X, y)
86
+
87
+ print(guard.summary())
88
+ print(guard.degradation())
89
+ guard.save_report("artifacts")
90
+ ```
91
+
92
+ The high-level interface automatically runs IID plus controlled covariate, label, and concept shift grids across multiple random seeds. `save_report()` also creates a static `report.html` with summary cards, tables, and plots. Advanced users can still import the lower-level experiment functions directly.
93
+
94
+ ## What gets generated
95
+
96
+ A standard run writes:
97
+
98
+ ```text
99
+ artifacts/
100
+ ├── robustness_summary.csv
101
+ ├── robustness_summary.json
102
+ ├── robustness_degradation.csv
103
+ ├── robustness_degradation.json
104
+ ├── report.html
105
+ ├── robustness_accuracy.png
106
+ ├── robustness_coverage.png
107
+ ├── robustness_accuracy_degradation.png
108
+ └── robustness_coverage_degradation.png
109
+ ```
110
+
111
+ ## Why ConformalGuard?
112
+
113
+ A conformal predictor can look well calibrated on IID data and degrade substantially after deployment shift. ConformalGuard makes that failure mode measurable instead of hiding it behind one aggregate accuracy number.
114
+
115
+ The benchmark tracks:
116
+
117
+ - empirical coverage and coverage gap
118
+ - accuracy and macro F1
119
+ - mean prediction-set size
120
+ - empty-set rate
121
+ - IID-relative degradation
122
+ - mean and standard deviation across seeds
123
+
124
+ ## Supported shift families
125
+
126
+ | Shift | What changes | What it probes |
127
+ |---|---|---|
128
+ | IID | Nothing | Reference condition |
129
+ | Covariate | Feature distribution | Sensitivity to input drift |
130
+ | Label | Class prevalence | Sensitivity to population mix |
131
+ | Concept | Relationship between features and labels | Sensitivity to conditional drift |
132
+
133
+ ## Verified example result
134
+
135
+ One verified run on scikit-learn's breast-cancer dataset produced the following values:
136
+
137
+ | Condition | Mean accuracy | Mean coverage |
138
+ |---|---:|---:|
139
+ | IID | 0.980 | 0.874 |
140
+ | Covariate severity 0.5 | 0.889 | 0.792 |
141
+ | Covariate severity 1.0 | 0.716 | 0.617 |
142
+ | Covariate severity 2.0 | 0.468 | 0.404 |
143
+ | Concept severity 0.25 | 0.854 | 0.760 |
144
+ | Concept severity 0.50 | 0.743 | 0.664 |
145
+ | Concept severity 0.75 | 0.620 | 0.570 |
146
+ | Concept severity 1.00 | 0.509 | 0.468 |
147
+
148
+ These are one reproducible example run, not universal performance claims. Results depend on the dataset, split, classifier, random seeds, conformity score, confidence level, and shift configuration.
149
+
150
+ ## Advanced configuration
151
+
152
+ ```python
153
+ from conformalguard import ConformalGuard, GuardConfig
154
+
155
+ config = GuardConfig(
156
+ confidence_level=0.90,
157
+ conformity_score="lac",
158
+ seeds=(11, 42, 73),
159
+ covariate_severities=(0.0, 0.5, 1.0, 2.0),
160
+ concept_severities=(0.0, 0.25, 0.50, 0.75, 1.0),
161
+ feature_fraction=0.50,
162
+ )
163
+
164
+ guard = ConformalGuard(config)
165
+ guard.run(X, y)
166
+ ```
167
+
168
+ CLI grids use comma-separated values:
169
+
170
+ ```bash
171
+ conformalguard demo \
172
+ --confidence 0.90 \
173
+ --seeds 11,42,73 \
174
+ --covariate-severities 0,0.5,1,2 \
175
+ --concept-severities 0,0.25,0.5,0.75,1
176
+ ```
177
+
178
+ ## Reproducibility and scope
179
+
180
+ ConformalGuard records or controls train/calibration/test splitting, random seeds, confidence level, conformity score, shift severity, feature fraction, label target proportions, concept-shift feature, classification metrics, and conformal metrics.
181
+
182
+ The current benchmark focuses on controlled, synthetic shifts for tabular classification. Those mechanisms isolate failure modes but do not reproduce every production environment. Natural temporal drift, online adaptation, recalibration policies, recovery-cost experiments, and broader multi-dataset evaluation remain important extensions.
183
+
184
+ ## Development
185
+
186
+ ```bash
187
+ python -m pip install -e ".[dev]"
188
+ python -m ruff check src tests examples
189
+ python -m pytest -q
190
+ python -m build
191
+ python -m twine check dist/*
192
+ ```
193
+
194
+ The public repository's latest documented checkpoint before this productization patch reports **116 passing tests** for the experimental core.
195
+
196
+ ## Citation
197
+
198
+ Citation metadata is provided in `CITATION.cff`.
199
+
200
+ ## License
201
+
202
+ Apache-2.0. Review the license choice before publishing the first package release.
@@ -0,0 +1,167 @@
1
+ # ConformalGuard
2
+
3
+ **Stress-test conformal prediction before distribution shift breaks your coverage.**
4
+
5
+ ConformalGuard is a CPU-friendly Python toolkit for measuring how conformal classification behaves when deployment data no longer matches calibration data. It runs reproducible IID, covariate-shift, label-shift, and concept-shift experiments and produces coverage, accuracy, set-size, empty-set, degradation, CSV/JSON, and plot reports.
6
+
7
+ > Conformal prediction can provide finite-sample coverage under appropriate assumptions. ConformalGuard measures what happens when controlled deployment shifts violate those assumptions; it does not claim guarantees under arbitrary shift.
8
+
9
+ ![Verified example coverage under shift](assets/verified_coverage_example.png)
10
+
11
+ ## Install
12
+
13
+ Once published to PyPI:
14
+
15
+ ```bash
16
+ pip install conformalguard
17
+ ```
18
+
19
+ From source:
20
+
21
+ ```bash
22
+ git clone https://github.com/chinmaygit-lab/ConformalGuard.git
23
+ cd ConformalGuard
24
+ python -m pip install -e ".[dev]"
25
+ ```
26
+
27
+ ## 30-second quickstart
28
+
29
+ Run the built-in reproducible demo:
30
+
31
+ ```bash
32
+ conformalguard demo --out artifacts/demo
33
+ ```
34
+
35
+ Run the same stress test on a numeric CSV dataset:
36
+
37
+ ```bash
38
+ conformalguard benchmark data.csv --target label --out artifacts/my_run
39
+ ```
40
+
41
+ Or use the Python API:
42
+
43
+ ```python
44
+ from sklearn.datasets import load_breast_cancer
45
+ from conformalguard import ConformalGuard
46
+
47
+ X, y = load_breast_cancer(as_frame=True, return_X_y=True)
48
+
49
+ guard = ConformalGuard()
50
+ guard.run(X, y)
51
+
52
+ print(guard.summary())
53
+ print(guard.degradation())
54
+ guard.save_report("artifacts")
55
+ ```
56
+
57
+ The high-level interface automatically runs IID plus controlled covariate, label, and concept shift grids across multiple random seeds. `save_report()` also creates a static `report.html` with summary cards, tables, and plots. Advanced users can still import the lower-level experiment functions directly.
58
+
59
+ ## What gets generated
60
+
61
+ A standard run writes:
62
+
63
+ ```text
64
+ artifacts/
65
+ ├── robustness_summary.csv
66
+ ├── robustness_summary.json
67
+ ├── robustness_degradation.csv
68
+ ├── robustness_degradation.json
69
+ ├── report.html
70
+ ├── robustness_accuracy.png
71
+ ├── robustness_coverage.png
72
+ ├── robustness_accuracy_degradation.png
73
+ └── robustness_coverage_degradation.png
74
+ ```
75
+
76
+ ## Why ConformalGuard?
77
+
78
+ A conformal predictor can look well calibrated on IID data and degrade substantially after deployment shift. ConformalGuard makes that failure mode measurable instead of hiding it behind one aggregate accuracy number.
79
+
80
+ The benchmark tracks:
81
+
82
+ - empirical coverage and coverage gap
83
+ - accuracy and macro F1
84
+ - mean prediction-set size
85
+ - empty-set rate
86
+ - IID-relative degradation
87
+ - mean and standard deviation across seeds
88
+
89
+ ## Supported shift families
90
+
91
+ | Shift | What changes | What it probes |
92
+ |---|---|---|
93
+ | IID | Nothing | Reference condition |
94
+ | Covariate | Feature distribution | Sensitivity to input drift |
95
+ | Label | Class prevalence | Sensitivity to population mix |
96
+ | Concept | Relationship between features and labels | Sensitivity to conditional drift |
97
+
98
+ ## Verified example result
99
+
100
+ One verified run on scikit-learn's breast-cancer dataset produced the following values:
101
+
102
+ | Condition | Mean accuracy | Mean coverage |
103
+ |---|---:|---:|
104
+ | IID | 0.980 | 0.874 |
105
+ | Covariate severity 0.5 | 0.889 | 0.792 |
106
+ | Covariate severity 1.0 | 0.716 | 0.617 |
107
+ | Covariate severity 2.0 | 0.468 | 0.404 |
108
+ | Concept severity 0.25 | 0.854 | 0.760 |
109
+ | Concept severity 0.50 | 0.743 | 0.664 |
110
+ | Concept severity 0.75 | 0.620 | 0.570 |
111
+ | Concept severity 1.00 | 0.509 | 0.468 |
112
+
113
+ These are one reproducible example run, not universal performance claims. Results depend on the dataset, split, classifier, random seeds, conformity score, confidence level, and shift configuration.
114
+
115
+ ## Advanced configuration
116
+
117
+ ```python
118
+ from conformalguard import ConformalGuard, GuardConfig
119
+
120
+ config = GuardConfig(
121
+ confidence_level=0.90,
122
+ conformity_score="lac",
123
+ seeds=(11, 42, 73),
124
+ covariate_severities=(0.0, 0.5, 1.0, 2.0),
125
+ concept_severities=(0.0, 0.25, 0.50, 0.75, 1.0),
126
+ feature_fraction=0.50,
127
+ )
128
+
129
+ guard = ConformalGuard(config)
130
+ guard.run(X, y)
131
+ ```
132
+
133
+ CLI grids use comma-separated values:
134
+
135
+ ```bash
136
+ conformalguard demo \
137
+ --confidence 0.90 \
138
+ --seeds 11,42,73 \
139
+ --covariate-severities 0,0.5,1,2 \
140
+ --concept-severities 0,0.25,0.5,0.75,1
141
+ ```
142
+
143
+ ## Reproducibility and scope
144
+
145
+ ConformalGuard records or controls train/calibration/test splitting, random seeds, confidence level, conformity score, shift severity, feature fraction, label target proportions, concept-shift feature, classification metrics, and conformal metrics.
146
+
147
+ The current benchmark focuses on controlled, synthetic shifts for tabular classification. Those mechanisms isolate failure modes but do not reproduce every production environment. Natural temporal drift, online adaptation, recalibration policies, recovery-cost experiments, and broader multi-dataset evaluation remain important extensions.
148
+
149
+ ## Development
150
+
151
+ ```bash
152
+ python -m pip install -e ".[dev]"
153
+ python -m ruff check src tests examples
154
+ python -m pytest -q
155
+ python -m build
156
+ python -m twine check dist/*
157
+ ```
158
+
159
+ The public repository's latest documented checkpoint before this productization patch reports **116 passing tests** for the experimental core.
160
+
161
+ ## Citation
162
+
163
+ Citation metadata is provided in `CITATION.cff`.
164
+
165
+ ## License
166
+
167
+ Apache-2.0. Review the license choice before publishing the first package release.
@@ -0,0 +1,66 @@
1
+ [build-system]
2
+ requires = ["setuptools>=77.0.3"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "conformalguard"
7
+ version = "0.1.0"
8
+ description = "Stress-test conformal prediction under controlled distribution shift."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "Apache-2.0"
12
+ license-files = ["LICENSE"]
13
+ authors = [{name = "Chinmaya Satyam"}]
14
+ keywords = [
15
+ "conformal-prediction",
16
+ "uncertainty-quantification",
17
+ "distribution-shift",
18
+ "robustness",
19
+ "machine-learning",
20
+ ]
21
+ classifiers = [
22
+ "Development Status :: 3 - Alpha",
23
+ "Intended Audience :: Developers",
24
+ "Intended Audience :: Science/Research",
25
+ "Programming Language :: Python :: 3",
26
+ "Programming Language :: Python :: 3.11",
27
+ "Programming Language :: Python :: 3.12",
28
+ "Programming Language :: Python :: 3.13",
29
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
30
+ ]
31
+ dependencies = [
32
+ "numpy",
33
+ "pandas",
34
+ "scipy",
35
+ "scikit-learn",
36
+ "matplotlib",
37
+ "mapie",
38
+ ]
39
+
40
+ [project.optional-dependencies]
41
+ dev = [
42
+ "build",
43
+ "pytest",
44
+ "pytest-cov",
45
+ "ruff",
46
+ "twine",
47
+ ]
48
+
49
+ [project.scripts]
50
+ conformalguard = "conformalguard.cli:main"
51
+
52
+ [project.urls]
53
+ Homepage = "https://github.com/chinmaygit-lab/ConformalGuard"
54
+ Repository = "https://github.com/chinmaygit-lab/ConformalGuard"
55
+ Issues = "https://github.com/chinmaygit-lab/ConformalGuard/issues"
56
+
57
+ [tool.setuptools.packages.find]
58
+ where = ["src"]
59
+
60
+ [tool.pytest.ini_options]
61
+ testpaths = ["tests"]
62
+ addopts = "-ra"
63
+
64
+ [tool.ruff]
65
+ target-version = "py311"
66
+ line-length = 88
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,6 @@
1
+ """ConformalGuard: stress-test conformal prediction under distribution shift."""
2
+
3
+ from conformalguard.guard import ConformalGuard, GuardConfig
4
+
5
+ __all__ = ["ConformalGuard", "GuardConfig", "__version__"]
6
+ __version__ = "0.1.0"
@@ -0,0 +1,6 @@
1
+ """Allow ``python -m conformalguard`` to invoke the CLI."""
2
+
3
+ from conformalguard.cli import main
4
+
5
+ if __name__ == "__main__":
6
+ raise SystemExit(main())