Go to file
2023-12-23 10:48:54 +08:00
demo new add 2023-12-22 00:22:44 +08:00
.gitignore v1.0 2023-12-21 18:54:52 +08:00
best_number_workers.py workers modified 2023-12-22 00:41:34 +08:00
channel.py v1.0 2023-12-21 18:54:52 +08:00
eval.py requirements modified 2023-12-23 10:48:54 +08:00
model.py loss function modified 2023-12-23 00:16:27 +08:00
README.md requirements modified 2023-12-23 10:48:54 +08:00
requirements.txt requirements modified 2023-12-23 10:48:54 +08:00
scripts.py requirements modified 2023-12-23 10:48:54 +08:00
train.py requirements modified 2023-12-23 10:48:54 +08:00

Deep JSCC

This implements training of deep JSCC models for wireless image transmission as described in the paper Deep Joint Source-Channel Coding for Wireless Image Transmission by Pytorch. And there has been a Tensorflow and keras implementations .

This is my first time to use PyTorch and git to reproduce a paper, so there may be some mistakes. If you find any, please let me know. Thanks!

Installation

conda or other virtual environment is recommended.

git clone https://github.com/chunbaobao/Deep-JSCC-PyTorch.git
pip install requirements.txt

Usage

Training Model

Run(example)

cd ./Deep-JSCC-PyTorch
python train.py --seed 2048 --epochs 200 --batch_size 256 --channel 'AWGN' --saved ./saved --snr_list [1,4,7,13,19] --ratio_list [1/6,1/12] --dataset imagenet

Evaluation

Citation

If you find (part of) this code useful for your research, please consider citing

@misc{chunhang_Deep-JSCC,
  author = {chunhang},
  title = {a pytorch implementation of Deep JSCC},
  url ={https://github.com/chunbaobao/Deep-JSCC-PyTorch},
  year = {2023}
}