Agent skill

ce-calibrated-predict

Produce calibrated predict and predict_proba outputs, with optional uncertainty intervals, without generating explanations.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill ce-calibrated-predict --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/ai-ml/ce-calibrated-predict/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# CE Calibrated Predict You are obtaining calibrated predictions **without explanations** from a CE explainer. This is the lightest entry point — no explanation rules are generated, just the calibrated prediction and (optionally) its uncertainty interval. A fully fit + calibrated `WrapCalibratedExplainer` is required. --- ## Quick reference | Method | Returns | Use for | |---|---|---| | `predict(x)` | Point prediction (class or y-value) | Classification and regression | | `predict(x, uq_interval=True)` | `(prediction, (low, high))` | Point pred + uncertainty bounds | | `predict_proba(x)` | Class probability array | Classification | | `predict_proba(x, uq_interval=True)` | `(proba, (low, high))` | Probability + bounds | | `predict_proba(x, threshold=t)` | `P(y ≤ t)` | Probabilistic regression | | `predict_proba(x, threshold=t, uq_interval=True)` | `(P(y ≤ t), (low, high))` | Regression with probability bounds | --- ## Classification — `predict` ```python # Point prediction (returns class labels for classification) y_hat = explainer.predict(x_test) # With uncertainty interval (returns tuple) y_hat, (low, high) = explainer.predict(x_test, uq_interval=True) # Interpretation: low ≤ p(cl

What's inside
Steps it walks through
  1. Quick reference
  2. Classification — predict
  3. Classification — predictproba
  4. Regression — predict
  5. Regression — predictproba (thresholded)
  6. Conditional predictions (Mondrian bins)
  7. Reject-aware predictions
  8. Uncalibrated model — expected warnings
  9. Choosing between predict and explainfactual
  10. Evaluation Checklist
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the ce-calibrated-predict skill do?

Produce calibrated predict and predict_proba outputs, with optional uncertainty intervals, without generating explanations.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill ce-calibrated-predict --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going