Docs/performance monitoring

Performance Monitoring

Track model performance and identify degradation.

Classification

Supported metrics:

  • Accuracy
  • Precision
  • Recall
  • F1 Score
python
from mlwatch import track

result = track(
    y_true,
    y_pred,
    task="classification"
)

Regression

Supported metrics:

  • MAE
  • RMSE
python
result = track(
    y_true,
    y_pred,
    task="regression"
)