GTCRN: Lightweight Speech Enhancement
- GTCRN is a lightweight neural model that integrates grouped temporal convolutions with dual-path recurrent networks to robustly enhance speech in low SNR conditions.
- It reduces frequency-domain redundancy using an ERB filter bank and stacked subband feature extraction, optimizing performance for resource-constrained devices.
- Its dual-channel extension leverages IVA-based auxiliary estimation to further boost speech extraction accuracy in challenging acoustic environments.
The Grouped Temporal Convolutional Recurrent Network (GTCRN) is a lightweight neural architecture designed for efficient speech enhancement, especially under low signal-to-noise ratio (SNR) conditions. It integrates frequency-domain redundancy reduction, grouped temporal convolutions, and a grouped dual-path recurrent module, achieving robust speech extraction while maintaining low parameter and computational cost. The dual-channel variant enhances performance by leveraging independent vector analysis (IVA) as a coarse estimator, injecting auxiliary information from IVA outputs directly into the network. This system has demonstrated efficacy for dual-microphone setups deployed on resource-constrained devices (Wang et al., 26 May 2025).
1. Input Representation and Feature Extraction
GTCRN processes complex-valued short-time Fourier transforms (STFTs) of noisy signals, denoted (where is the number of channels, frames, frequency bins). Initially, GTCRN applies an Equivalent Rectangular Bandwidth (ERB) filter bank as a "band merging" (BM) step, mapping the frequency bins into bands. Typically, low-frequency bands are left unmerged (e.g., 65), with higher frequencies merged into fewer bands (e.g., 64 ERB bands). This step yields .
A subsequent Subband Feature Extraction (SFE) module applies a convolution to each band, aggregating information from neighboring bands. The output is reshaped, stacking all bands (and generated features per band) along the channel dimension, resulting in a tensor 0 where 1.
2. GTCRN Core Architecture
The GTCRN encoder consists of two cascaded blocks, each comprising:
- A 2D point-wise convolution (P-Conv2D) followed by batch normalization and PReLU activation.
- A second 2D convolution with kernel size 2 and stride 3, again followed by normalization and activation.
- Three Grouped Temporal Convolution (GT-Conv) sub-blocks per encoder block.
GT-Conv Block:
- The input channels are split into two equal groups.
- Branch A passes through identically.
- Branch B processes the input via:
- Two serial 4 point-wise convolutions, each followed by batch normalization and PReLU.
- A 2D depth-wise dilated convolution (kernel 5, dilation 6).
- Branch outputs are concatenated and channels are shuffled to enable inter-branch information exchange.
- The decoder mirrors the encoder, using transpose convolutions and a final 7 activation to constrain the output to 8.
After encoding, features are processed by a Grouped Dual-Path RNN (G-DPRNN):
- The encoded tensor is rearranged such that the frequency axis becomes “segments” and time becomes “frames.”
- 9 channels are split into 0 disjoint groups.
- Within each group 1:
- Intra-frame (frequency-wise): 2 for 3.
- Inter-frame (time-wise): 4 for 5.
- Outputs from all groups are concatenated and projected back to 6 channels.
3. Dual-Channel Extensions and IVA Integration
The dual-channel GTCRN (DC-GTCRN) is designed to exploit two microphone channels and IVA-derived auxiliary features for improved speech enhancement under challenging acoustic conditions.
Input Feature Stacking:
- The system receives 7, representing stereo or dual-microphone recordings.
- An auxiliary IVA module (Aux-IVA) produces two separated spectrograms 8 (speech) and 9 (noise), each in 0.
- IVA features considered include the real and imaginary parts of these spectrograms, as well as the log-power spectrum (1).
- The real and imaginary parts of 2 are concatenated with chosen IVA features along the channel axis to form the input tensor 3.
Dual-Encoder Option:
- Optionally, a dual-encoder architecture processes original 4 features and auxiliary IVA features in parallel. Their encoded outputs are concatenated before input to the G-DPRNN module.
Masking Strategies:
- The decoder outputs two real-valued masks 5, 6.
- These masks can be applied in two ways:
- Masking 1: 7.
- Masking 2: 8.
- Empirically, Masking 2, which multiplies the mask with the original noisy STFT, yields superior performance in low-SNR conditions.
4. Mathematical Formulation and Training Criteria
Given 9, its real and imaginary parts are stacked as 0. If the LPS of the IVA speech output is used, 1. Feature stacking results in 2.
Following BM and SFE, the tensor has shape 3 where 4.
The training loss is a weighted hybrid of time-domain and spectrogram-domain objectives:
5
where 6, 7, and the loss terms are explicitly defined in (Wang et al., 26 May 2025). The total loss incorporates scale-invariant signal-to-noise ratio (SISNR), compressed magnitude loss, and normalized real/imaginary loss.
5. Computational Complexity and Parameterization
GTCRN emphasizes efficiency through architectural grouping:
- 2D convolutional layers: Standard cost is 8 multiply-accumulate operations (MACs). With 9 groups, cost is reduced by 0.
- GRU layers: For input dimension 1 and hidden size 2, one GRU cell requires about 3 operations per time step. Grouping into 4 parallel GRUs reduces per-group input and hidden size to 5, 6.
Measured parameter counts and complexity:
| Variant | Parameters | Complexity (MMAC/s) |
|---|---|---|
| Single-channel GTCRN | ≈23.4 k | ≈32 |
| Dual-channel GTCRN | ≈23.9 k | ≈35.6 |
| Hybrid (with IVA) | 24.39 k | ≈43.2 |
The Aux-IVA module adds negligible parameters and just ≈0.2 MMAC/s per iteration (Wang et al., 26 May 2025).
6. IVA Auxiliary Estimation and Feature Fusion
Aux-IVA employs a classic independent vector analysis approach to obtain demixing vectors 7, estimating both speech and noise spectrograms 8. Update rules involve:
- Computing 9.
- Calculating 0.
- Updating 1 by inverting 2 and normalizing.
- Generating 3.
Feature fusion is conducted by concatenating either 4 and optionally 5, or the log-power spectrum 6 with the original 7 across channels before feeding to the encoding stage.
7. Practical Configuration and Training Protocols
GTCRN and its variants are trained with the following hyperparameters:
- STFT: 512-point Hanning window, 256-sample hop.
- Band merging: 65 low bands + 64 ERB bands.
- SFE: Convolution kernel 8.
- Encoder block: Output channels 9 (single encoder) or 0 (dual encoder), kernel 1, stride 2. Second layer uses group size 3.
- GT-Conv: Channel count 4, kernel 5, dilations 6.
- G-DPRNN: 7 groups, intra-frame BiGRU, inter-frame UniGRU, hidden units adjusted to keep total parameters 8 k.
- Optimizer: Adam, linear warm-up (25k steps), cosine annealing (up to 250k steps), learning rates from 9 to 0. Batch size 1, 1250 steps/epoch.
- SNRs: Trained on 2 dB, tested at 3 dB, 4 dB, 5 dB (Wang et al., 26 May 2025).
8. Summary of Contributions and Significance
GTCRN delivers high-performance speech enhancement within strict computational budgets, achieving parameter counts in the tens of thousands and sustaining real-time efficiency. The introduction of dual-channel contextual features and IVA-based auxiliary information results in robust performance even in extremely low-SNR conditions. Empirical results demonstrate that mask application to the original noisy STFT (Masking 2) provides superior enhancement in adverse environments. The hybrid system's lightweight design, modular architecture, and effectiveness for dual-microphone arrays position GTCRN as an efficient solution for embedded and resource-limited audio applications (Wang et al., 26 May 2025).