Compute the max_error metric — provided by scikit-learn. Use when the user has predictions and ground-truth and needs to compute max_error, or asks how to score with max_error.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill max-error --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Max Error?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-max-error)More formats (shields.io, HTML) on the badges page.
---
name: max-error
description: Compute the max_error metric — provided by scikit-learn. Use when the user has predictions and ground-truth and needs to compute max_error, or asks how to score with max_error.
metadata:
skill_kind: metric
source_lib: scikit-learn
import_path: sklearn.metrics.max_error
source: library_introspection
---
# max-error
> Metric `max_error` from `scikit-learn` (sklearn.metrics.max_error)
## When to invoke this skill
The user has predictions + ground truth and asks to evaluate with max_error, or
mentions `sklearn.metrics.max_error` directly, or wants the standard scikit-learn implementation.
## Reference signature
```python
from sklearn.metrics import max_error
# max_error(y_true, y_pred)
```
## Library docstring
```
The max_error metric calculates the maximum residual error.
Read more in the :ref:`User Guide <max_error>`.
Parameters
----------
y_true : array-like of shape (n_samples,)
Ground truth (correct) target values.
y_pred : array-like of shape (n_samples,)
Estimated target values.
Returns
-------
max_error : float
A positive floating point value (the best value is 0.0).
Examples
--------
>>> from sklearn.metrics import max_error
>>> y_true = [3, 2, 7, 1]
>>> y_pred = [4, 2, 7, 1]
>>> max_error(y_true, y_pred)
1.0
```
## Quick recipe
```python
import sklearn.metrics as _m
score = _m.max_error(y_true, y_pred)
```
## Don'ts
- Don't reimplement when the library version handles edge cases (NaN, ties, empty inputs) better than a hand-rolled formula.
- Always check the library version's argument order — sklearn is `(y_true, y_pred)` while torchmetrics is `(preds, target)`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!