networks confirm that pruning strategies effective for convolutional networks do not transfer automatically to
LSTM- or GRU-dominated models.
[2-5]
What is missing from this literature is a controlled ablation, split at the
patient level, that evaluates pruning, quantization, and knowledge distillation side by side on a clinically
grounded vital-sign anomaly detection task, reports which architectural component drives the achieved (or
unachieved) compression, and states plainly which claims are supported by the executed experiments rather
than by a proposed extension.
The specific problem addressed here is how the accuracy, size, and latency trade-offs of structured pruning,
posttraining quantization, and knowledge distillation compare for a CNN-LSTM vital-sign anomaly detector
when evaluation is constrained to a generic CPU sandbox rather than physical edge hardware. This constraint
reflects a common practical situation in early-stage compression research: the compression pipeline and
ablation protocol can be fully developed and evaluated before physical target hardware or credentialed clinical
data become available, and the resulting synthetic data and CPU-sandbox findings need to be reported honestly
as such rather than extrapolated into claims that the evidence does not support. This paper provides a
controlled evaluation, run only on a CPU, of how pruning, quantization, and knowledge distillation trade
accuracy for compression under a fixed latency budget on a clinically grounded synthetic vital-sign detection
task. Specifically, it (i) introduces a synthetic vital-sign benchmark, split at the patient level and controlled for
leakage; (ii) implements and executes an ablation across five compression configurations and two combinations
thereof; (iii) identifies and explains a negative result such that convolutional-layer pruning does not
meaningfully compress an LSTM-dominated architecture, with a direct connection to the structured-pruning
literature; (iv) demonstrates, through a matched ablation, that knowledge distillation recovers most of the
accuracy of a student model 40 times smaller; and (v) specifies a self-contained protocol (Appendix A) for
extending this study to real clinical data and physical edge hardware without modifying the software already
developed.
2. Related work
MIMIC-III is the largest publicly available ICU database used to predict deterioration from vital signs and to
design early-warning systems.
[6]
A systematic scoping review of early warning systems based on machine
learning confirms that LSTM- and attention-based encoder–decoder architectures are the dominant choice for
this task, and an early warning score based on deep learning, developed for oncology patients, illustrates the
clinical stakes of building such systems well.
[2,3]
The literature search conducted for this manuscript did not
identify prior work combining MIMIC-based NEWS2 labeling with controlled pruning/quantization/distillation
ablation and direct per-device energy measurement. Benchmarking studies on the edge, such as
DeepEdgeBench, report inference time and power for a vision model across a Raspberry Pi 4, Jetson Nano, and
other single-board computers, finding that device rankings vary with inference rate and accelerator use rather
than following a fixed order.
[7]
The protocol specified in Appendix A of this work adopts a comparable
multidevice, multirate measurement approach for the vital sign model rather than assuming a fixed device
ranking in advance.
Structured-pruning surveys of convolutional networks report that channel- or filter-level pruning accelerates
inference only when the pruned dimension holds a substantial share of a layer's parameters or FLOPs; this is
precisely why pruning the CNN front end in Section 6.3 produced no meaningful compression, since the CNN-
LSTM architecture's parameters and computation budget are concentrated in its recurrent layers.
[8]
Structured
pruning specific to recurrent networks shows that meaningful compression of LSTM- or GRU-based models
instead requires pruning strategies applied to the recurrent weight matrices themselves or dedicated low-rank
factorization of the recurrent layers.
[5]
This is a direction not pursued in the present execution but identified as
a priority in Section 8.2. TinyML reviews of wearable and ambulatory healthcare devices report that memory
and energy constraints, not the choice of compression method alone, dominate the feasibility of on-device
deployment, reinforcing the importance of reporting size, MACs, and latency separately rather than treating
compression as a single scalar quantity.
[4]
A study combining quantization and knowledge distillation for a
nonmedical indoor localization task demonstrates that combining these two techniques can meet the memory
budgets that neither technique achieves alone; although that work's application domain differs from the
present one, its methodological finding is consistent with the distillation ablation in Section 6.5, which
outperforms the pruning ablation in Section 6.3.
[9]
The application of knowledge distillation specifically to
wearable single-lead ECG arrhythmia classification and structured pruning combined with binarization for
sleep apnea detection from wearable IoT sensors resulted in substantial compression with limited accuracy
loss for clinical time series tasks, supporting distillation and quantization as the more promising directions for
this architecture family.
[10,11]
The teacher‒student framework used for distillation in this work (Section 4.3,
Equation 9) follows the original formulation of Hinton et al.
[12]
The broader motivation for pursuing model
compression and reducing the energy and computational footprint of machine-learning systems is consistent
with the Green AI research agenda; however, as stated throughout this manuscript, no energy measurements
were performed in the present execution.
[13]