Skip to main content

Core Electric Barometer error metrics, including asymmetric CWSL and standard forecast loss functions.

Project description

Electric Barometer · Metrics (eb-metrics)

CI License: BSD-3-Clause Python Versions PyPI

Asymmetric, readiness-oriented forecast evaluation metrics for operational decision systems.


Overview

eb-metrics provides a set of forecast evaluation metrics designed for operational environments where the consequences of error are asymmetric and interval-level reliability matters. Traditional accuracy measures such as RMSE or MAE treat overforecasting and underforecasting symmetrically and summarize average deviation, often obscuring whether a forecast is suitable for real-world execution.

The metrics in this package evaluate forecasts in terms of service protection, shortfall behavior, and cost-weighted impact. They are designed for readiness-oriented assessment in settings such as production, staffing, inventory, logistics, and short-horizon demand planning, where even small shortfalls can create disproportionate operational disruption. eb-metrics serves as the foundational metric layer of the Electric Barometer ecosystem, providing interpretable primitives that support decision-aligned forecast comparison and selection.


Role in the Electric Barometer Ecosystem

eb-metrics defines the core metric primitives used throughout the Electric Barometer ecosystem. It is responsible for implementing asymmetric loss, reliability, and readiness-oriented forecast evaluation measures in a form that is interpretable, composable, and operationally aligned.

This package focuses exclusively on metric definition and behavior. It does not manage data aggregation, evaluation workflows, model interfaces, feature construction, or integration testing. Those concerns are handled by adjacent layers in the ecosystem that apply, orchestrate, or consume these metrics in broader forecasting and decision-making pipelines.

By separating metric semantics from evaluation logic and execution concerns, eb-metrics provides a stable foundation that supports consistent, decision-aligned forecast assessment across heterogeneous operational contexts.


Installation

eb-metrics is distributed as a standard Python package.

pip install eb-metrics

The package supports Python 3.10 and later.


Core Concepts

  • Asymmetric error — Overforecasting and underforecasting can have different operational consequences, so evaluation should reflect directional cost differences.
  • Interval reliability — In readiness-oriented systems, it matters how often forecasts meet demand within each interval, not just average error over time.
  • Shortfall behavior — Underbuilding events are operationally distinct; evaluation should capture both their frequency and their severity.
  • Tolerance-based adequacy — Many systems can absorb small deviations; reliability can be expressed as the frequency of “accurate enough” intervals.
  • Readiness-oriented evaluation — Forecast quality is assessed by execution feasibility and risk, not solely statistical deviation.

Minimal Example

The following example computes Cost-Weighted Service Loss (CWSL) for a single demand series using asymmetric penalties for underbuild and overbuild:

import numpy as np
from eb_metrics import cwsl

# Realized demand and corresponding forecast
y_true = np.array([20, 28, 32, 35, 40, 42])
y_pred = np.array([22, 25, 29, 36, 37, 45])

# Compute cost-weighted service loss
loss = cwsl(
    y_true=y_true,
    y_pred=y_pred,
    underbuild_cost=2.0,
    overbuild_cost=1.0,
)

print(loss)

License

BSD 3-Clause License.
© 2025 Kyle Corrie.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eb_metrics-0.2.0.tar.gz (19.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

eb_metrics-0.2.0-py3-none-any.whl (23.4 kB view details)

Uploaded Python 3

File details

Details for the file eb_metrics-0.2.0.tar.gz.

File metadata

  • Download URL: eb_metrics-0.2.0.tar.gz
  • Upload date:
  • Size: 19.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for eb_metrics-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0b3dc1fbeb4537bf88869e9f8d28d7ec929d50e97f916de6c3657f8e81a00552
MD5 ea097b8bc302264e3953ba1372eb9fcd
BLAKE2b-256 ddf316c0518c4be752a76323f462768ad9ad6732caf073394ca362759d396c2a

See more details on using hashes here.

File details

Details for the file eb_metrics-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: eb_metrics-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 23.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for eb_metrics-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5a8fa3a4536459a8a4450fd48d1fd60fa7e070de3bbee806ec4fdb0b7e444572
MD5 36d2566f6c5fd11de61a4575e16a5888
BLAKE2b-256 7bc49b42190a0295b8253b3d776d19bcb27564e3c4d63b0bd2fa07e46aaa71ce

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page