Skip to main content

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

Project description

Electric Barometer · Optimization (eb-optimization)

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.1.0.tar.gz (26.9 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.1.0-py3-none-any.whl (31.5 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for eb_optimization-0.1.0.tar.gz
Algorithm Hash digest
SHA256 791a9ed8e0ca8c668250505cd2f1d9534a1de64a4f332b6975a2851c49db6990
MD5 88c942231efb15917a865fa39e752b1e
BLAKE2b-256 1ee16be1bd2f15e131ae27170ae7edc1cb74296b62a3f88c9d3a65ada222c4f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for eb_optimization-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 85143a83d1ae342066b1ae14fca9a87ddd7ef3a830fefb308ab45580cb9b8066
MD5 eccf2bdf6c1345674edfe4bcd224b47a
BLAKE2b-256 441aec751da0124820fc741ce97db4aa694c21105c361cedef987c8b3f0da8d9

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