You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also run single tests by passing its name to the `-k` flag:
133
+
To run a single test, pass its name to the `-k` flag:
134
134
135
135
```sh
136
136
python -m pytest -k test_precision_recall_curve
@@ -140,6 +140,6 @@ Consult the [`pytest`](https://docs.pytest.org/en/stable/usage.html) docs for mo
140
140
141
141
## Glossary
142
142
143
-
1.**Residual**`y - y_hat`: The difference between ground truth target and model prediction.
144
-
2.**Error**`abs(y - y_hat)`: Absolute error between target and model prediction.
145
-
3.**Uncertainty**`y_std`: The model's estimate for its own error, i.e. how much the model thinks its prediction can be trusted. (`std` for standard deviation.)
143
+
1.**Residual**`y_res = y_true - y_pred`: The difference between ground truth target and model prediction.
144
+
2.**Error**`y_err = abs(y_true - y_pred)`: Absolute error between target and model prediction.
145
+
3.**Uncertainty**`y_std`: The model's estimate for its error, i.e. how much the model thinks its prediction can be trusted. (`std` for standard deviation.)
0 commit comments