Efficient Noise Reduction for Radar Chirp Signals using Deep Learning
| Complex Signal Processing | Implemented a custom RadarDataset that splits complex-valued signals into Real and Imaginary (I/Q) channels, enabling the CNN to process phase information effectively. |
| Encoder-Decoder Architecture | A deep 1D-CNN architecture designed to extract latent features and reconstruct the original signal while suppressing noise components. |
| Quantitative Evaluation | Performance is measured using PSNR (Peak Signal-to-Noise Ratio) to ensure high-quality signal reconstruction. |
| MLOps Integration | Fully integrated with Weights & Biases (W&B) for real-time experiment tracking, loss visualization, and hyperparameter tuning. |
| Multi-domain Visualization | Includes automated plotting for both Time-domain waveforms and Frequency-domain Spectrograms. |
-
Preprocessing: Load
.matfiles and convert raw complex data into a 2-channel 1D tensor$(2 \times 1024)$ . -
Feature Extraction: Two-stage Encoder using wide kernel sizes
$(9, 5)$ to capture both local and global signal patterns. - Reconstruction: Symmetric Decoder to map features back to the signal space.
The model optimizes the Mean Squared Error (MSE) and is evaluated via
The model effectively removes the noise floor while preserving the linear frequency modulation (LFM) characteristics of the chirp signal.
| Category | Description |
|---|---|
| Noisy Input | Heavy interference obscuring the signal. |
| AI Denoised | Successfully recovered waveform with high PSNR. |
| Clean Target | The ground truth for comparison. |
Tip
Spectrogram analysis confirms that the AI model significantly reduces the background noise floor across the entire frequency spectrum, maintaining the integrity of the original chirp slope.
Copyright © 2026 Jaehyeon Lee (382). All rights reserved.