Views
No views yet
| Aspect | Recommendation |
|---|---|
| Deployment | Edge-first with optional cloud fallback |
| Primary Model | EfficientAT-MN40 (~4M params, 0.47 mAP AudioSet) |
| Alternative | YAMNet via MediaPipe (production-ready, TFLite native) |
| Fusion | Late fusion + attention gating with smartwatch vitals |
| Latency Target | < 100ms end-to-end (achievable: ~50-75ms) |
| Inference Engine | TensorFlow Lite with GPU/NNAPI delegate |
| Paper | Contribution | ArXiv |
|---|---|---|
| EfficientAT (Schmid et al., 2023) | SOTA efficient audio tagging via distillation | ICASSP 2023 |
| BEATs (Chen et al., 2023) | 0.507 mAP AudioSet with acoustic tokenizers | ICML 2023 |
| AST (Gong et al., 2021) | Pure-attention audio classifier | 2104.01778 |
| PANNs (Kong et al., 2020) | Large-scale pretrained audio CNNs | 1912.10211 |
| Gunshot Detection (2025) | CNN-based firearm classification | 2506.20609 |
| WESAD Cross-Modality (2025) | 99.95% stress detection from wearables | 2502.18733 |
| CognitiveEMS (2024) | Multi-modal emergency assistant on edge | 2403.06734 |
| Cross-Modal Violence (2024) | Audio-visual anomaly detection fusion | 2412.20455 |
1pdflatex whitepaper.tex
2pdflatex whitepaper.tex # Run twice for TOC and referencestexlive-latex-extra, texlive-pictures (for TikZ diagrams)1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "AdityaRaikar/threat-detection-audio-whitepaper"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)AutoModelForCausalLM with the appropriate AutoModel class.