mirror of
https://github.com/ruvnet/RuView
synced 2026-07-22 17:23:19 +00:00
189ac9dfb0
Bind the ADR-027 MERIDIAN cross-environment domain-generalization surface
into the wheel behind a gated [meridian] extra / Cargo `meridian` feature.
Inference/adaptation path only (tch-free), per ADR-185 section 3.3.
Surface (bound against the REAL code at HEAD, not the ADR wishlist):
- HardwareType / HardwareNormalizer / CanonicalCsiFrame (from
wifi-densepose-signal::hardware_norm)
- MeridianGeometryConfig / GeometryEncoder (64-dim, permutation-invariant)
- RapidAdaptation / AdaptationResult (push_frame + adapt, LoRA deltas)
- CrossDomainEvaluator + mpjpe (from wifi-densepose-train, NO tch-backend)
All compute paths GIL-released (py.allow_threads).
Honest deviations from ADR section 3.3 (documented in the module header):
- ADR's RapidAdaptation.calibrate(windows) and AdaptationResult.converged
DO NOT EXIST. Real API is push_frame + adapt(); result carries
{lora_weights, final_loss, frames_used, adaptation_epochs}. Bound as-is.
- ADR's HardwareType.detect exposed as a staticmethod delegating to the
real HardwareNormalizer::detect_hardware.
- ADR's normalize(frame: CsiFrame, hw) is really normalize(amplitude,
phase, hw) over f64 vectors returning Result; bound faithfully.
- CanonicalCsiFrame fields are singular amplitude/phase (ADR said plural).
Training-time types (DomainFactorizer, GradientReversalLayer,
VirtualDomainAugmentor) are out of P6 scope (need the libtorch tier).
Parity (section 4.1, release-blocking): committed fixture
meridian_input.json -> native Rust reference (tests/meridian_parity.rs,
calls hardware_norm + geometry + rapid_adapt directly) locks
tests/golden/meridian_output.sha256 over the concatenated f32 outputs
(esp32+intel canonical frames, 64-dim geometry vector, rapid-adapt LoRA
weights); pytest (tests/test_meridian.py) runs the same fixture through
the binding and asserts the identical SHA-256. Both pass.
Verified:
cargo test --features meridian --test meridian_parity -> 2/2 pass
maturin develop --features meridian + pytest tests/test_meridian.py
-> 13/13 pass
default cargo build clean, 0 train/signal/sensing-server refs in the
default dep graph (gate keeps the base wheel lean).
WHEEL-SIZE FINDING (ADR-185 section 9 / section 1.2): the libtorch risk
the ADR feared is AVOIDED -- wifi-densepose-train's `tch` dep is properly
optional (feature tch-backend, OFF), so no libtorch links. BUT train
still carries NON-optional deps: tokio (rt subset), the five ruvector-*
crates, and wifi-densepose-nn (which itself pulls `ort` / ONNX Runtime +
reqwest/hyper). So a [meridian] wheel exceeds the ADR-117 section 5.4
<=5 MB budget (though lighter than AETHER's axum/tokio server tree). The
clean fix is the same leaf-crate hoist: move the pure inference modules
(geometry, rapid_adapt, eval, hardware_norm) into a tch/tokio/ort-free
leaf crate. A required pre-release follow-up, not a functional blocker;
P2 binds real code and proves parity today.
61 lines
2.2 KiB
Python
61 lines
2.2 KiB
Python
"""MERIDIAN — cross-environment domain generalization (ADR-027, ADR-185 P2).
|
|
|
|
Hardware-invariant CSI normalization, geometry-conditioned deployment,
|
|
few-shot room adaptation, and cross-domain evaluation — the tch-free
|
|
inference/adaptation path of Project MERIDIAN, computed by the Rust core.
|
|
|
|
Available **only** when the wheel was built with the ``[meridian]`` extra::
|
|
|
|
pip install wifi-densepose[meridian]
|
|
|
|
Quick start::
|
|
|
|
from wifi_densepose.meridian import HardwareNormalizer, HardwareType
|
|
|
|
norm = HardwareNormalizer() # canonical 56 subcarriers
|
|
hw = HardwareType.detect(64) # -> HardwareType.Esp32S3
|
|
frame = norm.normalize(amplitude, phase, hw) # -> CanonicalCsiFrame
|
|
print(len(frame.amplitude), frame.hardware_type)
|
|
|
|
Note (honest scope, ADR-185 §3.3): the ADR's ``RapidAdaptation.calibrate``
|
|
/ ``AdaptationResult.converged`` do not exist in the Rust core — use
|
|
``push_frame(...)`` then ``adapt()``; the result exposes ``final_loss``,
|
|
``frames_used``, ``adaptation_epochs``. Training-time types
|
|
(DomainFactorizer, GradientReversalLayer, VirtualDomainAugmentor) are
|
|
out of scope for P6 (they need the deferred libtorch training tier).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from wifi_densepose import _native
|
|
|
|
# MERIDIAN symbols are compiled into `_native` only under the Rust
|
|
# `meridian` feature; absent in a base wheel (ADR-185 §6 acceptance).
|
|
if not hasattr(_native, "HardwareNormalizer"):
|
|
raise ImportError(
|
|
"wifi_densepose.meridian is not available in this wheel. "
|
|
"It requires the 'meridian' extra: pip install wifi-densepose[meridian]"
|
|
)
|
|
|
|
HardwareType = _native.HardwareType
|
|
CanonicalCsiFrame = _native.CanonicalCsiFrame
|
|
HardwareNormalizer = _native.HardwareNormalizer
|
|
MeridianGeometryConfig = _native.MeridianGeometryConfig
|
|
GeometryEncoder = _native.GeometryEncoder
|
|
RapidAdaptation = _native.RapidAdaptation
|
|
AdaptationResult = _native.AdaptationResult
|
|
CrossDomainEvaluator = _native.CrossDomainEvaluator
|
|
mpjpe = _native.mpjpe
|
|
|
|
__all__ = [
|
|
"HardwareType",
|
|
"CanonicalCsiFrame",
|
|
"HardwareNormalizer",
|
|
"MeridianGeometryConfig",
|
|
"GeometryEncoder",
|
|
"RapidAdaptation",
|
|
"AdaptationResult",
|
|
"CrossDomainEvaluator",
|
|
"mpjpe",
|
|
]
|