`Pskr.Recalibrator.run/0` reads `pskr_calibration_samples`, bins
each sample per (band × feature), and writes spot-density stats to
`pskr_feature_bins` so an operator can read whether a feature
actually discriminates propagation at the threshold granularity
the scorer uses.
Bins, not regression: `BandConfig` already encodes scoring as
discrete thresholds, so the bin output matches that shape and an
operator can copy adjusted thresholds directly without translating
from regression coefficients.
Self-healing: corpus too thin ⇒ run row written with status
`skipped_insufficient_data` and the analysis is a no-op until next
fire. `min_total_samples = 1000` (≈ 4-5 days of CONUS PSKR
activity); per-band threshold is 100. Both surface in the run row's
`notes`.
Auto-applies nothing. Weight changes still go through human review
of `BandConfig.@band_configs` and a code commit. The recalibrator
is a read-only analyst that stays out of the production scoring
path.
Features binned (matching the scorer's discriminating fields):
* pwat_mm — humidity U-shape candidate
* hpbl_m — boundary layer (mechanism vs scoring re-eval)
* min_refractivity_gradient — refractivity threshold validation
* surface_pressure_mb — pressure-front proxy
* kp_index — aurora boost magnitude tuning
Schema: two tables.
* `pskr_recalibration_runs` — one row per fire with corpus
stats, status, notes
* `pskr_feature_bins` — one row per (run, band, feature, bin)
with sample_count, spot_count_total/avg/p50/p90
Cron: `0 4 * * 0` (Sundays 04:00 UTC, off-peak, post-climatology).
Manual reruns enqueue with no args.
Tests cover the empty-corpus skip path, sub-threshold totals,
per-band threshold gating, the actual bin emission, nil-feature
handling, spot-count averaging, and the always-records-a-run
audit invariant. 8 new tests, 3282 total passing.
Backfill pipeline untouched.
58 lines
1.9 KiB
Elixir
58 lines
1.9 KiB
Elixir
defmodule Microwaveprop.Pskr.FeatureBin do
|
|
@moduledoc """
|
|
One feature-bucket row from a `Pskr.RecalibrationRun`. Stores the
|
|
spot-density statistics for a (band, feature, bin) cell of the
|
|
corpus so an operator can read whether a feature actually
|
|
discriminates propagation at the granularity the scorer cares
|
|
about.
|
|
|
|
Example: at run R, on the 10 GHz band, the `pwat_mm` feature has
|
|
five rows (one per bin label: `<15`, `15-25`, `25-40`, `40-55`,
|
|
`>55`). Each row carries:
|
|
* `sample_count` — how many corpus samples landed in the bin
|
|
* `spot_count_total` — sum of spot_count across those samples
|
|
* `spot_count_avg` / `spot_count_p50` / `spot_count_p90` —
|
|
central tendency + tail for the spot-density distribution
|
|
|
|
The unique key (run_id, band, feature, bin_label) means a rerun
|
|
of the same recalibration run is idempotent.
|
|
"""
|
|
use Ecto.Schema
|
|
|
|
import Ecto.Changeset
|
|
|
|
@primary_key {:id, :binary_id, autogenerate: true}
|
|
@foreign_key_type :binary_id
|
|
|
|
schema "pskr_feature_bins" do
|
|
belongs_to :run, Microwaveprop.Pskr.RecalibrationRun, foreign_key: :run_id
|
|
|
|
field :band, :string
|
|
field :feature, :string
|
|
field :bin_label, :string
|
|
field :bin_min, :float
|
|
field :bin_max, :float
|
|
field :sample_count, :integer, default: 0
|
|
field :spot_count_total, :integer, default: 0
|
|
field :spot_count_avg, :float
|
|
field :spot_count_p50, :float
|
|
field :spot_count_p90, :float
|
|
|
|
timestamps(type: :utc_datetime)
|
|
end
|
|
|
|
@type t :: %__MODULE__{}
|
|
|
|
@cast_fields ~w(run_id band feature bin_label bin_min bin_max sample_count
|
|
spot_count_total spot_count_avg spot_count_p50 spot_count_p90)a
|
|
|
|
@required_fields ~w(run_id band feature bin_label sample_count)a
|
|
|
|
@spec changeset(t(), map()) :: Ecto.Changeset.t()
|
|
def changeset(record, attrs) do
|
|
record
|
|
|> cast(attrs, @cast_fields)
|
|
|> validate_required(@required_fields)
|
|
|> unique_constraint([:run_id, :band, :feature, :bin_label])
|
|
end
|
|
end
|