Scope note: This repository was renamed from
oac-clinical-transport-health-v1to remove misleading naming. It is a synthetic-data operations/observability logistic-regression model for infrastructure system-health monitoring. It is not a clinical, diagnostic, or medical-decision model, has not been validated for any health-domain use, and must not receive PHI or clinical content.
OAC System Health v1 is a tiny, dependency-free logistic-regression model for synthetic operational transport telemetry. It emits a non-authoritative operator-attention advisory. The repository is staged from the canonical source at szl-holdings/szl-forge.
Companion data: synthetic transport observability. Integration source: transport gateway.
This is not a medical, diagnostic, prognostic, triage, treatment, or clinical decision model. It was not trained or validated on patients, laboratory results, specimens, orders, assays, physical devices, or a health-care site. It must never receive PHI or clinical/result content.
The model cannot:
The kernel requires exactly eight operational fields:
| Field | Range | Meaning |
|---|---|---|
listener_running | 0/1 | Whether the local listener process reports running |
tls_enabled | 0/1 | Whether transport TLS is configured |
peer_allowlist_configured | 0/1 | Whether a peer IP allowlist is configured |
queue_utilization | 0-1 | Fraction of the bounded work queue in use |
consecutive_failures | 0-20 | Bounded consecutive operational failures |
seconds_since_last_success | 0-86400 | Bounded age of last operational success |
ledger_integrity_ok | 0/1 | Whether the local operational ledger check passed |
configuration_valid | 0/1 | Whether local configuration validation passed |
Unknown, missing, non-finite, out-of-range, identity-like, HL7, FHIR, patient, specimen, order, and result fields fail closed.
python -I -B oac_operational_health.py \
--model model.json \
--receipt artifact_receipt.json \
--input example_input.json
The kernel verifies the model SHA-256 from artifact_receipt.json before
inference. Output includes operator_attention_score, the validation-selected
threshold, the boolean advisory, per-feature contributions, and an explicit
all-false authority map.
The receipt is a reproducibility/mismatch control, not a signature or external trust root. A trusted deployment must pin the Hub commit and verify it through its own software-supply-chain policy; replacing both the model and receipt can otherwise bypass this local comparison.
The model is batch-gradient-descent logistic regression implemented using only the Python standard library. A fixed seed generates 768 training, 192 validation, and 240 test examples. The receipt records exact split metrics and hashes. Validation chooses the decision threshold; the test split is otherwise held out.
The 240-row synthetic test split reports balanced accuracy 0.7414, precision 0.4124, recall 0.7843, F1 0.5405, and ROC AUC 0.8302 at threshold 0.16. These are baseline implementation results, including 57 false positives and 11 false negatives; they do not justify production promotion.
All reported metrics are from generated synthetic examples. The score is not production-calibrated and the metrics must not be generalized to a real transport, analyzer, laboratory, patient population, or clinical workflow.
Apache-2.0. See LICENSE.
2 commits
Scope note: This repository was renamed from
oac-clinical-transport-health-v1to remove misleading naming. It is a synthetic-data operations/observability logistic-regression model for infrastructure system-health monitoring. It is not a clinical, diagnostic, or medical-decision model, has not been validated for any health-domain use, and must not receive PHI or clinical content.
OAC System Health v1 is a tiny, dependency-free logistic-regression model for synthetic operational transport telemetry. It emits a non-authoritative operator-attention advisory. The repository is staged from the canonical source at szl-holdings/szl-forge.
Companion data: synthetic transport observability. Integration source: transport gateway.
This is not a medical, diagnostic, prognostic, triage, treatment, or clinical decision model. It was not trained or validated on patients, laboratory results, specimens, orders, assays, physical devices, or a health-care site. It must never receive PHI or clinical/result content.
The model cannot:
The kernel requires exactly eight operational fields:
| Field | Range | Meaning |
|---|---|---|
listener_running | 0/1 | Whether the local listener process reports running |
tls_enabled | 0/1 | Whether transport TLS is configured |
peer_allowlist_configured | 0/1 | Whether a peer IP allowlist is configured |
queue_utilization | 0-1 | Fraction of the bounded work queue in use |
consecutive_failures | 0-20 | Bounded consecutive operational failures |
seconds_since_last_success | 0-86400 | Bounded age of last operational success |
ledger_integrity_ok | 0/1 | Whether the local operational ledger check passed |
configuration_valid | 0/1 | Whether local configuration validation passed |
Unknown, missing, non-finite, out-of-range, identity-like, HL7, FHIR, patient, specimen, order, and result fields fail closed.
python -I -B oac_operational_health.py \
--model model.json \
--receipt artifact_receipt.json \
--input example_input.json
The kernel verifies the model SHA-256 from artifact_receipt.json before
inference. Output includes operator_attention_score, the validation-selected
threshold, the boolean advisory, per-feature contributions, and an explicit
all-false authority map.
The receipt is a reproducibility/mismatch control, not a signature or external trust root. A trusted deployment must pin the Hub commit and verify it through its own software-supply-chain policy; replacing both the model and receipt can otherwise bypass this local comparison.
The model is batch-gradient-descent logistic regression implemented using only the Python standard library. A fixed seed generates 768 training, 192 validation, and 240 test examples. The receipt records exact split metrics and hashes. Validation chooses the decision threshold; the test split is otherwise held out.
The 240-row synthetic test split reports balanced accuracy 0.7414, precision 0.4124, recall 0.7843, F1 0.5405, and ROC AUC 0.8302 at threshold 0.16. These are baseline implementation results, including 57 false positives and 11 false negatives; they do not justify production promotion.
All reported metrics are from generated synthetic examples. The score is not production-calibrated and the metrics must not be generalized to a real transport, analyzer, laboratory, patient population, or clinical workflow.
Apache-2.0. See LICENSE.
2 commits