Skip to main content

Electric Barometer: Optimization and tuning utilities for EB objectives and policy parameters.

Project description

Electric Barometer · Optimization (eb-optimization)

CI License: BSD-3-Clause Python Versions PyPI

Decision and policy layer for the Electric Barometer ecosystem, responsible for tuning, calibration, and governed parameter selection.


Overview

This repository contains the optimization, tuning, and policy governance layer of the Electric Barometer ecosystem. It defines how key evaluation parameters—such as cost ratios, tolerances, and readiness controls—are selected from data, validated under governance rules, and formalized into deterministic policies that can be reused across systems and environments.

Rather than computing metrics or running evaluations, this repository focuses on decision logic: how parameters are calibrated, how tradeoffs are resolved, and how those decisions are frozen into auditable artifacts. It provides the bridge between metric theory and operational deployment, ensuring that forecast evaluation behavior is consistent, explainable, and governed by explicit intent rather than ad-hoc configuration.


Role in the Electric Barometer Ecosystem

eb-optimization defines the parameter selection, calibration, and governance logic used throughout the Electric Barometer ecosystem. It is responsible for determining how key operational parameters—such as cost ratios, tolerance bands, and readiness controls—are selected from data in a disciplined, reproducible, and decision-aware manner.

This repository focuses exclusively on optimization mechanics and policy formation. It does not define metric primitives, perform evaluation orchestration, manage model interfaces, or execute runtime decision logic. Those responsibilities are handled by adjacent layers in the ecosystem that compute metrics, evaluate forecasts, or apply frozen policies in production workflows.

By separating parameter selection and governance from metric semantics and execution concerns, eb-optimization provides a stable optimization layer that enables consistent calibration, transparent decision rules, and auditable policy artifacts across heterogeneous forecasting and operational contexts.


Installation

eb-optimization is distributed as a standard Python package.

pip install eb-optimization

Core Concepts

  • Parameter governance — Operational parameters (e.g., cost ratios, tolerances) should be selected through explicit, reproducible rules rather than ad-hoc tuning or implicit defaults.
  • Search over candidate spaces — Optimization is framed as deterministic search over bounded, interpretable candidate sets, enabling transparent tradeoffs and stable outcomes.
  • Cost balance calibration — Asymmetric operational costs can be balanced by selecting parameters that equalize or appropriately trade off opposing risk exposures.
  • Tolerance selection from residuals — Acceptable error bands can be learned directly from historical performance, reflecting empirical system behavior rather than arbitrary thresholds.
  • Policy separation — Calibration logic is separated from frozen policy artifacts so that parameter selection is auditable, versioned, and safely applied in downstream systems.
  • Decision-aligned optimization — Optimization is evaluated by operational interpretability and governance fitness, not by abstract numerical optimality alone.

Minimal Example

The example below illustrates a typical optimization workflow using eb-optimization: calibrating an operational parameter from historical data and applying it via a frozen policy.

import numpy as np
from eb_optimization.policies import (
    CostRatioPolicy,
    apply_cost_ratio_policy,
)

# Historical actuals and forecasts
y_true = np.array([10, 12, 15, 20])
y_pred = np.array([9, 14, 18, 17])

# Define a frozen cost-ratio policy
policy = CostRatioPolicy(
    R_grid=(0.5, 1.0, 2.0, 3.0),
    co=1.0,
)

# Estimate a global cost ratio R
R, diagnostics = apply_cost_ratio_policy(
    y_true=y_true,
    y_pred=y_pred,
    policy=policy,
)

print(R)

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_optimization-0.2.5.tar.gz (41.3 kB view details)

Uploaded Source

Built Distribution

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

eb_optimization-0.2.5-py3-none-any.whl (46.5 kB view details)

Uploaded Python 3

File details

Details for the file eb_optimization-0.2.5.tar.gz.

File metadata

  • Download URL: eb_optimization-0.2.5.tar.gz
  • Upload date:
  • Size: 41.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for eb_optimization-0.2.5.tar.gz
Algorithm Hash digest
SHA256 675ede69794524fddf0027c56519c7e24edb1be98dc519bc2f74a86ed3a9a6c3
MD5 35888b3843a448790427023f477a4f18
BLAKE2b-256 771b09f7c15c281238acd5066a612f3437c3be9ed4e94f2cf2298638bb7587c4

See more details on using hashes here.

File details

Details for the file eb_optimization-0.2.5-py3-none-any.whl.

File metadata

File hashes

Hashes for eb_optimization-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 80a53ae186fbf331f0f628ad8bd0b67639d1131c70b2dd53d8b609c3f4b94b23
MD5 fb5bf86b94361a095db9d1d1eebd388e
BLAKE2b-256 061c33fdb3f31a86e2b2864ae07cc6b7ae4178aa11523f50df953741c459fd78

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