Signal Input and Preprocessing
The system processes four types of physiological signals:
- EEG: The gold standard for epilepsy diagnosis, processed through filtering, denoising, and segmentation.
- ECG: Captures abnormal cardiovascular indicators before seizures.
- EMG: Reflects changes in muscle activity.
- Motion signals: Detects abnormal movement patterns.
Feature Extraction: CNN Layer
One-dimensional convolutional layers are used to extract temporal features. Combined with pooling, batch normalization, and activation functions, low-level to high-level features are obtained layer by layer.
Temporal Modeling: BiLSTM Layer
The gating mechanism solves the gradient vanishing problem, and the bidirectional structure uses past and future context information to capture long-term signal changes before seizures.
Multimodal Fusion Strategy
Optional fusion methods include early (raw signal concatenation), middle (feature-level fusion), and late (prediction result integration) fusion.