Full implementation of Project AETHER — Contrastive CSI Embedding Model. ## Phases Delivered 1. ProjectionHead (64→128→128) + L2 normalization 2. CsiAugmenter (5 physically-motivated augmentations) 3. InfoNCE contrastive loss + SimCLR pretraining 4. FingerprintIndex (4 index types: env, activity, temporal, person) 5. RVF SEG_EMBED (0x0C) + CLI integration 6. Cross-modal alignment (PoseEncoder + InfoNCE) 7. Deep RuVector: MicroLoRA, EWC++, drift detection, hard-negative mining, SEG_LORA ## Stats - 276 tests passing (191 lib + 51 bin + 16 rvf + 18 vitals) - 3,342 additions across 8 files - Zero unsafe/unwrap/panic/todo stubs - ~55KB INT8 model for ESP32 edge deployment Also fixes deprecated GitHub Actions (v3→v4) and adds feat/* branch CI triggers. Closes #50
78 lines
2.1 KiB
TOML
78 lines
2.1 KiB
TOML
[package]
|
|
name = "wifi-densepose-mat"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["rUv <ruv@ruv.net>", "WiFi-DensePose Contributors"]
|
|
description = "Mass Casualty Assessment Tool - WiFi-based disaster survivor detection"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/ruvnet/wifi-densepose"
|
|
documentation = "https://docs.rs/wifi-densepose-mat"
|
|
keywords = ["wifi", "disaster", "rescue", "detection", "vital-signs"]
|
|
categories = ["science", "algorithms"]
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
default = ["std", "api", "ruvector"]
|
|
ruvector = ["dep:ruvector-solver", "dep:ruvector-temporal-tensor"]
|
|
std = []
|
|
api = ["dep:serde", "chrono/serde", "geo/use-serde"]
|
|
portable = ["low-power"]
|
|
low-power = []
|
|
distributed = ["tokio/sync"]
|
|
drone = ["distributed"]
|
|
serde = ["dep:serde", "chrono/serde", "geo/use-serde"]
|
|
|
|
[dependencies]
|
|
# Workspace dependencies
|
|
wifi-densepose-core = { version = "0.1.0", path = "../wifi-densepose-core" }
|
|
wifi-densepose-signal = { version = "0.1.0", path = "../wifi-densepose-signal" }
|
|
wifi-densepose-nn = { version = "0.1.0", path = "../wifi-densepose-nn" }
|
|
ruvector-solver = { workspace = true, optional = true }
|
|
ruvector-temporal-tensor = { workspace = true, optional = true }
|
|
|
|
# Async runtime
|
|
tokio = { version = "1.35", features = ["rt", "sync", "time"] }
|
|
async-trait = "0.1"
|
|
|
|
# Web framework (REST API)
|
|
axum = { version = "0.7", features = ["ws"] }
|
|
futures-util = "0.3"
|
|
|
|
# Error handling
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
serde_json = "1.0"
|
|
|
|
# Time handling
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# Math and signal processing
|
|
num-complex = "0.4"
|
|
ndarray = "0.15"
|
|
rustfft = "6.1"
|
|
|
|
# Utilities
|
|
uuid = { version = "1.6", features = ["v4", "serde"] }
|
|
tracing = "0.1"
|
|
parking_lot = "0.12"
|
|
|
|
# Geo calculations
|
|
geo = "0.27"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
proptest = "1.4"
|
|
approx = "0.5"
|
|
|
|
[[bench]]
|
|
name = "detection_bench"
|
|
harness = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|