Hyun-Ryu / emc2net

Official code for "EMC²-Net: Joint Equalization and Modulation Classification based on Constellation Network", ICASSP 2023.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EMC²-Net: Joint Equalization and Modulation Classification based on Constellation Network

Paper

Official source code for "EMC²-Net: Joint Equalization and Modulation Classification based on Constellation Network", ICASSP 2023 [1].

We propose a novel MC technique dubbed as EMC²-Net. The main contributions of our work are:

  1. Understand constellation as a set of 2D points rather than an image.
  2. Train equalizer and classifier jointly under the supervision of modulation type. Two NNs perform separate and explainable roles.
  3. Show SOTA performance on the linear modulation classification with much less complexity.

Prerequisites

  • Linux or macOS
  • Python 3
  • CPU or NVIDIA GPU + CUDA CuDNN

Requirements

python==3.7.4
torch==1.10.2+cu113
numpy==1.17.2
scipy==1.3.1

Getting started

  • Clone this repo:
git clone https://github.com/Hyun-Ryu/emc2net emc2net
cd emc2net

How to build synthetic dataset

  • All of the data-generating codes are written in MATLAB, saved in data_generation folder.
  • For AWGN+PO dataset, run dataset_generation_AWGNPO.m.
  • For Rican or Rayleigh dataset, run dataset_generation_fading.m.

Train

Phase 1: Classifier pretraining

python train_phase1_noise_cirriculum.py \
    --root "YOUR OWN ROOT DIRECTORY" \
    --data_name "NAME OF DATASET" \
    --exp_name "NAME OF EXPERIMENT"

Phase 2: Equalizer training

python train_phase2.py \
    --root "YOUR OWN ROOT DIRECTORY" \
    --data_name "NAME OF DATASET" \
    --exp_name "NAME OF EXPERIMENT" \
    --pretrain_exp_name "NAME OF PHASE 1 EXPERIMENT"

Phase 3: Equalizer-classifier fine-tuning

python train_phase3.py \
    --root "YOUR OWN ROOT DIRECTORY" \
    --data_name "NAME OF DATASET" \
    --exp_name "NAME OF EXPERIMENT" \
    --pretrain_exp_name "NAME OF PHASE 1 EXPERIMENT" \
    --phase2_exp_name "NAME OF PHASE 2 EXPERIMENT"

Test

Fading datasets: Rician, Rayleigh

python test_fading.py \
    --root "YOUR OWN ROOT DIRECTORY" \
    --data_name "NAME OF DATASET" \
    --exp_name "NAME OF EXPERIMENT"

Pretraining dataset: AWGN+PO

python test_awgnpo.py \
    --root "YOUR OWN ROOT DIRECTORY" \
    --data_name "NAME OF DATASET" \
    --exp_name "NAME OF EXPERIMENT"

Citation

@inproceedings{ryu2023emc,
  title={EMC 2-Net: Joint Equalization and Modulation Classification Based on Constellation Network},
  author={Ryu, Hyun and Choi, Junil},
  booktitle={ICASSP 2023-2023 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
  pages={1--5},
  year={2023},
  organization={IEEE}
}

About

Official code for "EMC²-Net: Joint Equalization and Modulation Classification based on Constellation Network", ICASSP 2023.


Languages

Language:Python 79.1%Language:MATLAB 20.3%Language:M 0.6%