business

Verdict

Submitted 6/5/2026, 9:33:55 AM · Completed 6/5/2026, 3:35:35 PM

6.5
pivot
The idea

Feature extraction for EEG seizure prediction (CHB-MIT): GMW, Teager Operator, and handling outliers in normalization

Pain point
The user is struggling with normalizing EEG data due to extreme outliers caused by artifacts and seizures, which distort standard statistical measures.
Who has this problem
Researchers working with EEG data for seizure prediction using machine learning
Contradiction (TRIZ)
Standard normalization techniques like Z-scoring are ineffective due to outliers, leading to poor model performance while robust scaling may not capture the full variance of the data.
Ideal final result
A normalization method that effectively handles extreme outliers without distorting the underlying signal variance.
Suggested solution
Implement robust scaling using median and interquartile range to minimize the impact of outliers, while also applying wavelet-based denoising to isolate and remove artifact spikes before normalization.
Show original source text →
I am building a machine learning pipeline for seizure prediction using the CHB-MIT Scalp EEG Database. My goal is to extract features that capture both time-frequency dynamics and spatial (channel-to-channel) relationships, which will eventually be fed into a Graph Neural Network (GNN). Preprocessing: The raw signals are sampled at 256 Hz. I apply a high-pass filter at 0.5 Hz to remove baseline wander, and notch filters at 57–63 Hz and 117–123 Hz to remove powerline noise and its harmonics. I would like some feedback on whether my mathematical formulation for feature extraction is sound for this domain, and specifically how to best handle data normalization given the extreme outliers typical of EEG artifacts and seizures. Feature Extraction FormulationA. Generalized Morse Wavelets (GMW)To capture instantaneous energy and frequency shifts, I compute Continuous Wavelet Transforms using analytic Generalized Morse Wavelets. The frequency-domain wavelet is defined as: $$\Psi_{\beta, \gamma}(\omega) = U(\omega) a_{\beta, \gamma} \omega^\beta e^{-\omega^\gamma}$$ where $U(\omega)$ is the Heaviside step function (ensuring analyticity), $\gamma = 3.0$ (symmetry), and $\beta = 6.0$ (time-bandwidth product).Let $W_c(f_k, t)$ be the complex wavelet coefficient for channel $c$ at center frequency $f_k$ and time $t$ .B. Band-Specific Adjacency MatricesTo capture functional connectivity (the graph structure), I define standard EEG bands (e.g., Delta 1-4 Hz, Theta 4-8 Hz, up to Gamma 30-80 Hz). For a given band spanning a set of wavelet center frequencies $K$ , I first compute the Root Mean Square (RMS) band envelope for each channel $c$ : $$E_c(t) = \sqrt{ \frac{1}{|K|} \sum_{k \in K} \left| W_c(f_k, t) \right|^2 }$$ I then compute the adjacency matrix $\mathbf{A}$ for this specific band using the Pearson correlation coefficient between the envelopes of channels $i$ and $j$ over the time window $T$ : $$A_{ij} = \frac{\sum_{t \in T} (E_i(t) - \mu_i)(E_j(t) - \mu_j)}{\sigma_i \sigma_j}$$ where $\mu$ and $\sigma$ are the mean and standard deviation of the envelope within the window. The diagonal is set to zero.C. Teager-Kaiser Energy Operator (TKEO)To emphasize sudden spikes in energy and high-frequency variations (often precursors to seizures), I apply the discrete Teager-Kaiser operator directly to the time-domain signal $x[n]$ : $$\Psi(x[n]) = x^2[n] - x[n-1]x[n+1]$$ Because the amplitude range is large, I apply a signed-log transformation to stabilize the variance: $$T[n] = \text{sign}(\Psi(x[n])) \log(1 + |\Psi(x[n])|)$$ 2. The Normalization ProblemCurrently, to prevent data leakage, I calculate the mean and standard deviation strictly on the training set, and use those to Z-score the validation and test sets.However, EEG data—especially in the CHB-MIT dataset—contains massive amplitude spikes due to artifacts (muscle movement, eye blinks) and the seizures themselves. Computing a standard mean and standard deviation over the entire training set includes these extreme outliers, which artificially inflates the standard deviation and severely squashes the variance of the baseline (inter-ictal) signal. My Questions: Feature Suitability: Is the combination of GMW band envelopes and the time-domain Teager-Kaiser operator mathematically robust for capturing pre-ictal dynamics? Since the TKEO tracks instantaneous energy, is there a strong redundancy issue with the wavelet log-power that I should worry about? Adjacency Extraction: Is computing functional connectivity via the Pearson correlation of the RMS wavelet envelope mathematically sound, or should I be computing Phase-Locking Value (PLV) directly from the complex phase angles for a GNN adjacency matrix? Normalization Strategy: Because of the extreme outliers in EEG data, standard global Z-scoring seems flawed. Which of the following is considered best practice for long-term EEG monitoring data? Option A: Switch to Robust Scaling (subtracting the median and dividing by the Interquartile Range / IQR). Option B: Stick with Z-scoring, but compute the mean and std using only the middle 80% or 90% of the training data (a trimmed distribution) to completely exclude the artifacts/seizures from the parameter calculation. Any insights on the mathematics of these features or practical experience with bio-signal scaling would be highly appreciated!
TRIZ inventive level: 3/5· Principles: parameter changes, mechanical interaction
Synthesis verdict
**Pivot**: The proposed machine learning pipeline for seizure prediction using the CHB-MIT Scalp EEG Database has a solid mathematical formulation, but critical flaws in normalization strategy and potential feature redundancy threaten the project's success. The use of Generalized Morse Wavelets and the Teager-Kaiser Energy Operator is sound, but the team should consider alternative normalization strategies, such as Robust Scaling or trimmed Z-scoring, to handle extreme outliers. Additionally, exploring Phase-Locking Value (PLV) for adjacency matrix computation could improve the pipeline's performance. With a clear understanding of the mathematical formulation and practical experience with bio-signal scaling, a solo or 2-person team can realistically build the v1 within the given timeframe. However, the team should prioritize addressing the normalization strategy and feature redundancy to ensure the pipeline's success.

Strengths

  • Mathematically sound feature extraction formulation
  • Use of Generalized Morse Wavelets and Teager-Kaiser Energy Operator to capture time-frequency dynamics and spatial relationships
  • Potential for clinical relevance and market demand

Weaknesses

  • Critical flaws in normalization strategy, specifically standard Z-scoring being severely impacted by outliers
  • Potential feature redundancy between TKEO and wavelet log-power
  • Need for empirical validation of adjacency matrix computation method (Pearson correlation vs. PLV)

Best angle

The pipeline should prioritize addressing the normalization strategy and feature redundancy, and consider exploring Phase-Locking Value (PLV) for adjacency matrix computation to improve performance.

Panel verdicts

Competition

nvidia/nemotron-3-nano-omni-30b-a3b-reasoning

6.0

The proposed features are solid but not sufficiently novel, and the normalization strategy undermines robustness, limiting the venture's competitive edge.

Your pipeline leverages well‑studied components: Generalized Morse wavelets for time‑frequency decomposition, RMS envelope correlation for functional connectivity, and the Teager‑Kaiser operator for instantaneous energy. These techniques have appeared in numerous EEG seizure‑prediction studies, often combined with conventional classifiers (SVM, Random Forest) or simple feed‑forward networks. The GNN adjacency based on Pearson‑correlated RMS envelopes is mathematically sound but not novel; many recent works replace correlation with phase‑locking value, coherence, or directed transfer functions to better capture directed interactions. Moreover, the Teager‑Kaiser operator adds computational cost and may redundantly capture information already present in the wavelet log‑power spectrum, creating unnecessary overlap. Normalization is a critical weak point: global Z‑scoring inflates variance because seizure and artifact spikes dominate the training distribution, leading to over‑compression of the inter‑ictal baseline. While trimmed‑mean Z‑scoring (Option B) mitigates some outlier influence, robust scaling (Option A) or adaptive per‑channel normalization (e.g., quantile transformation) is more widely adopted in long‑term EEG monitoring and tends to preserve signal dynamics across sessions. Overall, the differentiation is modest - relying on established feature families rather than a clearly unique mathematical formulation - and durability may suffer if newer methods (e.g., attention‑based GNNs, self‑supervised representation learning) continue to outperform handcrafted pipelines.

Monetization

mistralai/mistral-medium-3.5-128b

8.0

Use Robust Scaling (median/IQR) for normalization and consider PLV for adjacency matrices to better capture seizure-specific phase dynamics.

The feature extraction pipeline is mathematically sound and domain-appropriate. GMW captures time-frequency dynamics well, and TKEO complements it by highlighting transient energy spikes - redundancy is minimal since TKEO operates in the time domain while GMW is frequency-localized. Pearson correlation on RMS envelopes is a valid but conservative choice for functional connectivity; PLV could better capture phase synchronization, a known biomarker for seizure onset, but may add complexity. The normalization problem is critical: global Z-scoring is indeed flawed due to outliers. Robust Scaling (Option A) is the best practice here - it mitigates artifact influence by using median/IQR, preserving inter-ictal variance without arbitrary trimming. Option B risks bias if trimming thresholds are not rigorously justified. The pipeline's strength lies in its multi-modal feature fusion, but PLV and robust scaling would further improve clinical relevance.

Risk

nvidia/llama-3.3-nemotron-super-49b-v1

4.0

Normalization strategy flaws and potential feature redundancy critically threaten the project's success within 6-12 months.

The mathematical formulation shows promise, but critical flaws in normalization strategy and redundancy in feature extraction threaten the project's viability. Specifically, standard Z-scoring is severely impacted by outliers, and TKEO's focus on instantaneous energy may redundantly overlap with GMW's log-power extraction, potentially reducing the GNN's ability to learn distinct patterns. Additionally, the choice between Pearson correlation and PLV for adjacency matrices depends on whether amplitude or phase synchronization is more relevant for seizure prediction, requiring empirical validation. Regulatory and platform risks are less immediate concerns compared to these technical pitfalls, but churn could be high if the model's predictive performance is poor due to these issues, and no-budget customers may not afford the computational resources or expertise needed for such a complex pipeline.

Viability

meta/llama-4-maverick-17b-128e-instruct

8.0

The key to success lies in effectively handling the extreme outliers in EEG data through a suitable normalization strategy.

The proposed machine learning pipeline for seizure prediction using the CHB-MIT Scalp EEG Database is technically feasible for a solo or 2-person team to build within 4-12 weeks. The mathematical formulation for feature extraction is sound, leveraging Generalized Morse Wavelets and the Teager-Kaiser Energy Operator to capture time-frequency dynamics and spatial relationships. However, the team should be cautious about potential redundancy between the TKEO and wavelet log-power features. The use of Pearson correlation for adjacency matrix computation is mathematically sound, but exploring alternative methods like Phase-Locking Value is also worthwhile. The normalization strategy is a critical aspect, and the team should consider Robust Scaling or trimmed Z-scoring to handle extreme outliers. The biggest challenge lies in effectively handling the noisy EEG data and selecting the most informative features. With a clear understanding of the mathematical formulation and practical experience with bio-signal scaling, a solo or 2-person team can realistically build the v1 within the given timeframe.

Market

qwen/qwen3-next-80b-a3b-instruct

7.0

Trimmed normalization on artifact-free training segments preserves the signal dynamics critical for pre-ictal prediction, while replacing Pearson correlation with phase-based connectivity metrics (PLV) will significantly improve GNN performance.

Your feature extraction pipeline is mathematically sophisticated and domain-appropriate: Generalized Morse Wavelets are well-suited for non-stationary EEG dynamics, and using RMS envelopes for band-specific functional connectivity via Pearson correlation is a valid, widely used approach in epilepsy research. The Teager-Kaiser Energy Operator adds valuable high-frequency transient detection, and while there is some overlap with wavelet power, the TKEO's sensitivity to sharp amplitude changes provides complementary, non-linear information that enhances pre-ictal detection - redundancy is minimal and beneficial. However, the adjacency matrix construction using Pearson on envelopes is suboptimal for GNNs: Phase-Locking Value (PLV) or Imaginary Coherence derived from complex wavelet phases would better capture true functional connectivity, as Pearson is sensitive to amplitude correlations that may reflect artifacts rather than neural coupling. The normalization problem is critical and your concern is valid - standard Z-scoring fails catastrophically with EEG outliers. Option B (trimmed mean/std on 90% of training data) is superior to robust scaling (Option A) because EEG artifacts are not merely heavy-tailed noise but discrete, high-amplitude events that violate the assumption of a continuous distribution. Trimming excludes seizure/artifact epochs entirely from normalization parameters, preserving the statistical integrity of inter-ictal baseline signals, which is the true target for prediction. This aligns with best practices in clinical EEG analysis where normalization is performed on artifact-free segments. However, you must ensure artifact removal occurs *before* trimming, not after. This pipeline has real clinical potential: the CHB-MIT dataset is the gold standard, and seizure prediction has a clear, high-value market among epilepsy patients, caregivers, and neurology clinics willing to pay for wearable predictive devices. The audience is small (~1M active epilepsy patients in the US, ~500K with drug-resistant seizures) but highly motivated and under-served.

Synthesized by meta/llama-3.3-70b-instruct · 17.4s