Initial commit
Browse filesFilled README.md content
README.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
library_name: generic
|
| 4 |
+
tags:
|
| 5 |
+
- fairness
|
| 6 |
+
- calibration
|
| 7 |
+
- multicalibration
|
| 8 |
+
- gradient-boosting
|
| 9 |
+
- gbdt
|
| 10 |
+
- decision-trees
|
| 11 |
+
- trustworthy-ai
|
| 12 |
+
- tabular
|
| 13 |
+
- risk-assessment
|
| 14 |
+
- risk
|
| 15 |
+
arxiv: "2509.19884"
|
| 16 |
+
model-index:
|
| 17 |
+
- name: MCGrad
|
| 18 |
+
results: []
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
# MCGrad: Multicalibration at Web Scale
|
| 22 |
+
|
| 23 |
+
**Paper:** [arXiv:2509.19884](https://arxiv.org/abs/2509.19884)
|
| 24 |
+
**Official Code:** [github.com/facebookincubator/MCGrad](https://github.com/facebookincubator/MCGrad)
|
| 25 |
+
**Documentation:** [mcgrad.dev](https://mcgrad.dev)
|
| 26 |
+
|
| 27 |
+
## Overview
|
| 28 |
+
MCGrad is a library for production-ready multicalibration. It ensures your ML model predictions are well-calibrated not just globally, but across virtually any segment defined by your features.
|
| 29 |
+
|
| 30 |
+
## Installation
|
| 31 |
+
```bash
|
| 32 |
+
pip install mcgrad
|
| 33 |
+
```
|
| 34 |
+
## Getting started
|
| 35 |
+
See [mcgrad.dev](https://mcgrad.dev)
|
| 36 |
+
|