qin-jingyun/Awesome-DiffComm

A public repository of "Generative AI Meets 6G and Beyond: Diffusion Models for Semantic Communications", which is a collection of educational resources and curated papers on diffusion models and their applications in semantic communications.

JavaScript

60

18 commits

updated Sep 6, 2026

See the code

README

😎 Generative AI Meets 6G and Beyond:
Diffusion Models for Semantic Communications

Awesome arXiv IEEE Project Page Stars

License Visitors Pull Request Email

Hai-Long Qin¹, Jincheng Dai¹, Guo Lu², Shuo Shao³, Sixian Wang², Tongda Xu⁴,
Wenjun Zhang², Ping Zhang¹, Khaled B. Letaief⁡

ΒΉ Beijing University of Posts and Telecommunications (BUPT)
Β² Shanghai Jiao Tong University (SJTU)
Β³ East China Normal University (ECNU)
⁴ Tsinghua University (THU)
⁡ Hong Kong University of Science and Technology (HKUST)

 This repository accompanies our IEEE COMST tutorial paper, serving as a living resource for researchers at the intersection of generative AI and wireless (semantic) communications. As semantic communications emerge as a paradigm shift from bit-accurate transmission toward meaning-centric communication, diffusion models have become a cornerstone technology enabling receivers to reconstruct high-quality content from minimal semantic cues. This repository provides curated collections of representative works, popular implementations, educational resources, and practical guidelines to help researchers continuously acquire knowledge in this rapidly evolving interdisciplinary field.


Teaser

πŸ“‹ TL;DR

What is this article about?
To the best of our knowledge, this is the first tutorial paper on diffusion models for generative semantic communications. It provides a unified resource for researchers to efficiently begin their work in this interdisciplinary area, without separately navigating scattered literatures across generative AI and wireless communications.

  • 🎯Mathematical Fundamentals: From score matching and Langevin dynamics to stochastic differential equations (SDEs) and probability flow ordinary differential equations (PF ODEs), we present the theoretical foundations of score-based diffusion models.
  • 🎨 Conditioning Mechanisms: We examine how to steer diffusion models toward task-specific objectives through two complementary paradigms β€” inference-time conditioning that injects guidance during sampling while preserving pre-trained models, and training-time conditioning that jointly optimizes conditional and unconditional scores for tighter control, meeting the fundamental controllability requirement in semantic communications.
  • ⚑ Sampling Acceleration: Recognizing that iterative sampling (often requiring hundreds to thousands of neural network evaluations) presents significant computational challenges for real-time deployment, we review five primary acceleration strategies: dimensionality reduction, knowledge distillation, structure pruning, cache reuse, and flow matching.
  • πŸ”¬ Task Generalization: We explore how diffusion models, initially conceived for specific data modalities and domains, can be extended across diverse scenarios through three fundamental aspects β€” modality expansion, domain adaptation, and task generalization, which addresses the requirements of task-specific multi-modal semantic communications.
  • πŸ“‘ Application Scenarios: Through analysis of three distinct use cases, we illustrate how diffusion models enable extreme compression while maintaining semantic fidelity:
    • Fidelity-oriented human semantic communications balancing consistency-realism trade-offs for perceptually realistic reconstruction
    • Task-specific machine semantic communications optimizing effectiveness-efficiency trade-offs for downstream task execution under bandwidth constraints
    • Intent-driven agent semantic communications managing centralization-distribution trade-offs for multi-agent coordination through shared probabilistic representations

Why is this article needed?
As wireless systems approach Shannon capacity limits, semantic communications represent a paradigm shift from bit-accurate transmission toward meaning-centric communication. The emergence of diffusion models as powerful generative priors has catalyzed generative semantic communications, where receivers reconstruct high-quality content from minimal semantic cues. However, the field currently lacks systematic guidance connecting diffusion model techniques to semantic communication system design. This article fills that critical gap by:

  • Eliminating barriers between machine learning and communication communities
  • Providing depth beyond existing surveys and magazines through rigorous mathematical treatment and implementation details
  • Establishing connections via an inverse problem perspective that reformulates semantic decoding as posterior inference
  • Offering practical resources including open-source implementations, and deployment guidelines

Who should read this?
We believe this article may be helpful to the following groups of people:

  • Researchers in semantic communications seeking to leverage diffusion models
  • Machine learning practitioners interested in wireless communication applications
  • Graduate students entering the interdisciplinary field of AI-native wireless networks
  • Engineers designing next-generation communication systems with semantic awareness

πŸ“‡ Table of Contents

πŸŽ“ Fundamentals of Diffusion Models

Mathematical Foundations

Mathematical concepts underlying diffusion models.

#ConceptReferenceDescriptionLinks
1Score MatchingEstimation of Non-Normalized Statistical Models (HyvΓ€rinen, JMLR 2005)Foundation for learning score functions without computing partition functionsPaper
2Denoising Score MatchingA Connection Between Score Matching and Denoising Autoencoders (Vincent, Neural Computation 2011)Equivalence between score matching and denoisingPaper
3Langevin DynamicsBayesian Learning via Stochastic Gradient Langevin Dynamics (Welling & Teh, ICML 2011)MCMC sampling using gradient informationPaper
4Tweedie's FormulaTweedie's Formula and Selection Bias (Efron, JASA 1992)Posterior mean estimation from corrupted observationsPaper
5Neural ODEsNeural Ordinary Differential Equations (Chen et al., NeurIPS 2018)Continuous-depth neural networks and invertible transformationsarXiv GitHub
6Flow MatchingFlow Matching for Generative Modeling (Lipman et al., ICLR 2023)Continuous normalizing flows via regressionarXiv GitHub

Foundational Papers

Seminal works establishing the theoretical and practical foundations of diffusion models.

#MethodVenueKey ContributionLinks
1Deep Unsupervised Learning using Nonequilibrium ThermodynamicsICML'15First diffusion model using thermodynamic principlesarXiv GitHub
2NCSN - Generative Modeling by Estimating GradientsNeurIPS'19Score matching with Langevin dynamics (SMLD)arXiv GitHub
3DDPM - Denoising Diffusion Probabilistic ModelsNeurIPS'20Simplified training objective and high-quality generationarXiv GitHub Website
4DDIM - Denoising Diffusion Implicit ModelsICLR'21Non-Markovian sampling for accelerated generationarXiv GitHub
5Score SDE - Score-Based Generative Modeling through SDEsICLR'21Unified SDE framework connecting score matching and diffusionarXiv GitHub
6LDM - High-Resolution Image Synthesis with Latent Diffusion ModelsCVPR'22Diffusion in learned latent spaces (Stable Diffusion)arXiv GitHub HF

🎨 Conditional Diffusion Models

Conditional diffusion models enable controlled generation by incorporating external guidance. This section covers two main categories based on when conditioning is applied.

Inference-Time Conditional Diffusion Models

These methods introduce guidance during sampling without modifying the pre-trained model.

#MethodVenueDescriptionLinks
1CG - Classifier GuidanceNeurIPS'21Adds classifier gradients to steer generationarXiv GitHub
2ILVRICCV'21Iterative refinement toward a reference imagearXiv GitHub
3SDEditICLR'22Structure-preserving editing via controlled denoisingarXiv GitHub Website
4RePaintCVPR'22Inpainting by alternating denoising and re-noisingarXiv GitHub
5Prompt-to-PromptarXiv'22Cross-attention editing guided by text promptsarXiv GitHub Website
6DDRMNeurIPS'22Linear inverse problem solver using diffusion priorsarXiv GitHub Website
7MCGNeurIPS'22Adds manifold consistency during samplingarXiv GitHub
8DDNM - Denoising Diffusion Null-space ModelICLR'23Null-space projection for zero-shot restorationarXiv GitHub HF Website
9DPS - Diffusion Posterior SamplingICLR'23Posterior sampling with measurement guidancearXiv GitHub Website
10Ο€GDM - Pseudoinverse-Guided DMICLR'23Pseudoinverse-based conditioning for inverse tasksarXiv Website GitHub
11Null-Text InversionCVPR'23Real-image editing via null-text optimizationarXiv GitHub Website
12BlindDPSCVPR'23Jointly samples unknown operator and clean signalarXiv GitHub
13DiffPIRCVPRW'23Plug-and-play restoration with diffusion priorsarXiv GitHub
14DiffusionMBIRCVPR'23Uses 2D diffusion priors for 3D reconstructionarXiv GitHub
15FreeDoMICCV'23Training-free diffusion adaptation for new tasksarXiv GitHub
16DG - Discriminator GuidanceICML'23Introduces a discriminator that gives explicit supervision to a denoising sample patharXiv GitHub
17SMRDMICCAI'23MRI reconstruction via diffusion priorsPaper GitHub
18PSLDNeurIPS'23Posterior sampling in latent diffusion spacearXiv GitHub
19RED-diffICLR'24Variational regularization with diffusion denoisersarXiv GitHub
20ControlVideoICLR'24Video editing with spatial/temporal control via fine-tuningarXiv GitHub Replicate Website
21DeqIRCVPR'24Fixed-point solver for diffusion restorationarXiv GitHub
22SparseCtrlECCV'24Adds sparse keyframe controls to text-to-video diffusionarXiv GitHub Website
23DiffBIRECCV'24Blind image restoration with generative diffusion priorsarXiv GitHub Replicate Website
24DMPlugNeurIPS'24Plug-in solver for general inverse problemsarXiv GitHub
25DGSolverNeurIPS'25Diffusion generalist solver with universal posterior samplingarXiv GitHub
26DAPSCVPR'25Annealed posterior sampling for inverse problemsarXiv GitHub Website
27SITCOMICML'25Iterative constrained optimization during samplingarXiv GitHub
28DiffStateGradICLR'25Gradient projection in diffusion latent spacearXiv GitHub Website
29RF-InversionICLR'25Semantic image inversion and editing using rectified SDEsarXiv GitHub ComfyUI Website
30FlowDPSICCV'25Posterior sampling within flow-matching ODEsarXiv GitHub

Key Formula:

formula

Training-Time Conditional Diffusion Models

These methods incorporate conditioning directly during model training.

#MethodVenueDescriptionLinks
1CFG - Classifier-Free GuidanceNeurIPS'21Standard for conditional generationarXiv GitHub
2LDM - Latent Diffusion ModelCVPR'22Stable Diffusion foundationarXiv GitHub HF
3PaletteSIGGRAPH'22Image-to-image diffusion (colorization, inpainting, etc.)arXiv Website
4Textual InversionarXiv'22Personalizes a concept via learned token embeddingsarXIV GitHub Website
5DreamBoothCVPR'23Subject-driven personalization via fine-tuningarXiv GitHub Website
6GLIGENCVPR'23Grounded language-to-image generationarXiv GitHub Website
7InstructPix2PixCVPR'23Instruction-based image editingarXiv GitHub Website
8ControlNetICCV'23Fine-grained spatial controlarXiv GitHub HF
9IP-AdapterarXiv'23Image prompt adapter for identity/style conditioningarXiv GitHub Website
10MoD - Mixture of DiffusersarXiv'23Conditional diffusion with learned mixture expertsarXiv GitHub
11DiT - Diffusion TransformerICCV'23Transformer-based diffusionarXiv GitHub Website
12MDT - Masked Diffusion TransformerICCV'23Masked diffusion transformersarXiv GitHub
13SDXL - Stable Diffusion XLICLR'24High-res text-to-image diffusion with multi-aspect conditioningarXiv GitHub HF
14T2I-AdapterAAAI'24Lightweight adapters for controlarXiv GitHub HF
15AnimateDiffICLR'24Motion module for animationarXiv GitHub Website
16LVD - LLM-grounded Video DiffusionICLR'24LLM-guided video generationarXiv GitHub Website
17SEINEICLR'24Short-to-long video diffusionarXiv GitHub HF Website
18VideoCrafter2CVPR'24Open-source text-to-video / video editing diffusion pipelinearXiv GitHub Website
19HunyuanDiTCVPR'24Large-scale DiT-based text-to-image diffusion with strong conditioningarXiv GitHub HF Website
20S-CFG - Rethinking spatial Inconsistency in CFGCVPR'24Analyzes and improves spatial consistency in CFG-based generationarXiv GitHub
21D3POCVPR'24RLHF-style preference finetuning for diffusion without reward modelarXiv GitHub
22DreamMatcherCVPR'24Appearance matching self-attention for semantically-consistent text-to-image personalizationarXiv GitHub Website
23PixArt-Ξ£ECCV'24High-resolution text-to-imagearXiv GitHub HF Website
24Follow-Your-EmojiSIGGRAPH Asia'24Fine-controllable and expressive freestyle portrait animation with diffusionarXiv GitHub Website
25HunyuanVideoarXiv'24High-res text-to-video diffusion with multi-scale DiT backbonearXiv GitHub HF Website
26DDO - Direct Discriminative OptimizationICML'25Direct optimization for preference alignmentarXiv GitHub HF Website
27CFG++ICLR'25Refines CFG via dynamic gradient weightingarXiv GitHub Website
28Ctrl-AdapterICLR'25Unified adapter to inject diverse spatial/temporal controls into image/video diffusionarXiv GitHub HF Website
29T2V-Turbo-v2ICLR'25Fast text-to-video generationarXiv GitHub Website
30CogVideoXICLR'25Large-scale text-to-video diffusion with 3D causal VAE and expert transformerarXiv GitHub
31Ξ²-CFGarXiv'25Dynamic guidance method for text-to-image diffusion modelsarXiv GitHub

Key Formula:

formula

⚑ Efficient Diffusion Models

Efficient diffusion models aim to reduce computational cost and sampling time through various acceleration strategies.

Dimensionality Reduction

Operating in compressed latent spaces reduces computational overhead.

#MethodVenueDescriptionLinks
1LDM - Latent Diffusion ModelCVPR'22Stable Diffusion foundationarXiv GitHub HF
2WSGM - Wavelet Score-based GMNeurIPS'22Wavelet-based score modelsWebsite
3DiT - Diffusion TransformerICCV'23Transformer-based diffusionarXiv GitHub Website
4WaveDiffCVPR'23Wavelet-based diffusionarXiv GitHub
5LMD - Latent Masking DiffusionAAAI'24Combines the advantages of MAEs and diffusionarXiv GitHub
6SANAICLR'25Linear-attention DiT with 32Γ— deep compression autoencoder for efficient 4K text-to-image synthesisarXiv GitHub Website

Knowledge Distillation

Distilling multi-step diffusion into fewer steps or single-step models.

#MethodVenueDescriptionLinks
1PD - Progressive DistillationICLR'224-8 steps with minimal quality lossarXiv GitHub
2CM - Consistency ModelICML'23Single-step generationarXiv GitHub
3LCM - Latent Consistency ModelarXiv'23Distills diffusion into few-step latent consistency modelsarXiv GitHub Replicate Website
4DMD2 - Distribution Matching Distillation v2NeurIPS'24Improved distribution matchingarXiv GitHub HF Website
5CTM - Consistency Trajectory ModelICLR'24Trajectory consistency modelingarXiv GitHub Website
6iCT - Improved Consistency TrainingICML'24Improved consistency training without teacher modelsarXiv GitHub
7sCM - Simplified Continuous-time Consistency ModelsICLR'25TrigFlow framework stabilizing and scaling continuous-time consistency training to 1.5B parameters with 2-step samplingarXiv Website
8IMM - Inductive Moment MatchingICML'25Single-stage moment matching pre-training for stable one-/few-step generation without distillationarXiv Website

Structure Pruning

Reducing model parameters through structured pruning.

#MethodVenueDescriptionLinks
1Diff-PruningNeurIPS'23Structural pruning for diffusionarXiv GitHub
2SnapFusionNeurIPS'23Mobile diffusion via architecture evolution and data distillationarXiv Website
3TDPM - Truncated DPMICLR'23Truncated diffusion modelsarXiv GitHub
4LD-PrunerCVPR'24Latent diffusion pruningWebsite
5DiP-GONeurIPS'24Diffusion pruning with gradient optimizationarXiv GitHub
6AdaDiffECCV'24Adaptive diffusion pruningarXiv GitHub

Cache Reuse

Reusing intermediate computations across sampling steps.

#MethodVenueDescriptionLinks
1DeepCacheCVPR'24Deep feature cachingarXiv GitHub Website
2BlockCachingCVPR'24Block-wise caching strategyarXiv Website
3L2C - Learning to CacheNeurIPS'24Learned caching policiesarXiv GitHub
4ToCa - Token-wise CachingICLR'25Token-wise feature caching for DiT accelerationarXiv GitHub
5TeaCache - Timestep Embedding Aware CacheCVPR'25Training-free caching indicated by timestep-embedding-modulated input differences, up to 4.41Γ— speedup for video diffusionarXiv GitHub Website
6ClusCa - Clustered CachingMM'25Compute-efficient clustering cachearXiv GitHub
7TaylorSeerICCV'25Taylor expansion-based feature forecasting for DiT accelerationarXiv GitHub Website

Flow Matching

Transforming diffusion into deterministic flows for faster sampling.

#MethodVenueDescriptionLinks
1Flow MatchingICLR'23Continuous normalizing flowsarXiv GitHub
2Rectified FlowICLR'23Straightening probability flowsarXiv GitHub
3OT-CFMICLR'23Optimal transport conditional flow matching for efficient domain couplingarXiv GitHub
4PeRFlow - Piecewise Rectified FlowNeurIPS'24Piecewise rectification for accelerating diffusion modelsarXiv GitHub HF Website
5InstaFlowICLR'24One-step generation via rectified flowarXiv GitHub
6Stable Diffusion 3arXiv'24Scaling rectified flow transformers for high-resolution image synthesis (MMDiT)arXiv GitHub HF
7Shortcut ModelsICLR'25Step-size-conditioned generative (flow) model enabling one-step generation with a single network and training phasearXiv GitHub Website
8MeanFlowNeurIPS'25Mean-field flow matchingarXiv GitHub
9FLUXarXiv'25High-quality flow matching-based text-to-image model with hybrid transformer architecturearXiv GitHub HF

🌐 Generalized Diffusion Models

Generalized diffusion models extend the framework to diverse modalities, domains, and tasks.

Modality Expansion

Extending diffusion to multiple modalities beyond images.

#MethodVenueDescriptionLinks
1MonoFormerarXiv'24One transformer for both diffusion and autoregressionarXiv GitHub HF Website
2Diffusion ForcingNeurIPS'24Full-sequence diffusion forcingarXiv GitHub Website
3MD4 - Masked Diffusion for Discrete DataNeurIPS'24Unified discrete data generation with masked diffusion modelsarXiv GitHub
4Show-oICLR'25Unified image and text generationarXiv GitHub
5TransfusionICLR'25Combining diffusion and autoregressionarXiv GitHub
6UniDiscarXiv'25Unified discrete-continuous diffusionarXiv GitHub HF Website
7OmniGen2arXiv'25Unified image generation model with multi-modal conditioningarXiv GitHub HF Website
8BAGELarXiv'25Open-source unified decoder-only foundation model for interleaved multimodal understanding and generationarXiv GitHub Website

Domain Adaptation

Adapting diffusion models to specialized domains.

#MethodVenueDescriptionLinks
1DSB - Diffusion SchrΓΆdinger BridgeNeurIPS'21Domain transfer via SchrΓΆdinger bridgeWebsite GitHub
2Composable DiffusionECCV'22Compositional visual generationarXiv GitHub Website
3DreamBoothCVPR'23Personalization with few examplesarXiv GitHub Website
4I2SB - Image-to-Image SchrΓΆdinger BridgeICML'23Image-to-image translationarXiv GitHub Website
5P2P-BridgeECCV'24Point-to-point bridgingarXiv GitHub Website

Task Generalization

Generalizing diffusion models across multiple tasks.

#MethodVenueDescriptionLinks
1DiffuserICML'22Planning with diffusion modelsarXiv GitHub Website
2Diffusion PolicyRSS'23Visuomotor policy learningarXiv GitHub Website
3DiffusionBERTACL'23Recovering BERT masks with diffusion modelsarXiv GitHub HF
4MDLM - Masked Diffusion Language ModelsNeurIPS'24Language modeling with masked diffusion modelsarXiv GitHub HF Website
5DDPO - Denoising Diffusion Policy OptimizationICLR'24RL fine-tuning for diffusionarXiv GitHub Website
6C-LoRA - Continual LoRATMLR'24Continual learning for diffusionarXiv Website
7Diffusion-ESCVPR'24Evolutionary search with diffusion for black-box trajectory optimizationarXiv GitHub Website
8BΒ²-DiffuRLCVPR'25Bidirectional diffusion for RLarXiv GitHub
9DPPO - Diffusion Policy Policy OptimizationICLR'25PPO fine-tuning for diffusion policies in roboticsarXiv GitHub Website

🎲 Discrete Diffusion Models

Discrete diffusion models are used to generate discrete representation modalities such as text, molecular structures, and quantized images. In a sense, these models can be viewed as a generalization of the vanilla diffusion models. We list these models separately for their potential in discrete signal processing, such as MIMO.

Discrete Diffusion Models

#MethodVenueDescriptionLinks
1D3PMs - Discrete Denoising Diffusion Probabilistic ModelsNeurIPS'21Proposing how to build a denoising diffusion model in discrete state spacearXiv GitHub
2Ο„LDR - Tau-Leaping Denoising ReversalNeurIPS'22Designing discrete denoising models by modeling forward noising and reverse generative processes as Continuous Time Markov Chains (CTMC)arXiv GitHub
3SEDD - Score Entropy Discrete Diffusion modelsICML'24Introducing score entropy to estimate the ratios of the data distributionarXiv GitHub
4Duo - The Diffusion DualityICML'25Revealing uniform-state discrete diffusion as an emergent phenomenon of an underlying Gaussian diffusion, enabling curriculum learning and discrete consistency distillationarXiv GitHub Website

Conditional Discrete Diffusion Models

Guidance and sampling mechanisms that steer discrete diffusion toward desired conditions, mirroring CG/CFG and inference-time scaling in the continuous domain.

#MethodVenueDescriptionLinks
1UDLM - Uniform Diffusion Language Models & D-CFG/D-CBG - Discrete Classifier-Free/Based GuidanceICLR'25Designing a concise and universal guidance mechanism for discrete diffusion modelsarXiv GitHub Website
2Discrete GuidanceICLR'25Proposing a general discrete guidance method based on CTMC over discrete state spacesarXiv GitHub
3ReMDM - Remasking Discrete Diffusion ModelsNeurIPS'25Principled remasking sampler endowing masked diffusion with iterative self-correction and inference-time scalingarXiv GitHub Website

Discrete Flow Matching

Discrete Flow Matching extends continuous flow matching to discrete domains by parameterizing probability paths between noise and data distributions, inherently enabling non-autoregressive sequence generation through optimized vector fields.

#MethodVenueDescriptionLinks
1DFM - Discrete Flow MatchingNeurIPS'24Extending the flow matching paradigm to discrete data and construct a matching loss for discrete probability pathsarXiv
2Kinetic Optimal DFMICLR'25Proposing a general discrete path flow matching method based on the optimal transport path with minimum kinetic energyarXiv

Discrete Diffusion Language Models

Scaling discrete diffusion toward LLM-level capabilities, extending it to multimodal understanding and generation, and accelerating its parallel decoding.

#MethodVenueDescriptionLinks
1DiffuGPT & DiffuLLaMAICLR'25Adapting autoregressive models (GPT2/LLaMA) into diffusion language models via continual pre-trainingarXiv GitHub
2LLaDA - Large Language Diffusion ModelsNeurIPS'258B masked diffusion language model trained from scratch, competitive with LLaMA3 8BarXiv GitHub Website
3BD3-LMs - Block DiffusionICLR'25Interpolating between autoregressive and diffusion language models with flexible-length generation and KV cachingarXiv GitHub Website
4dKV-CacheNeurIPS'25Delayed and conditioned key-value caching achieving 2-10Γ— inference speedup for diffusion language modelsarXiv GitHub
5MMaDANeurIPS'25Unified multimodal diffusion foundation model with mixed long-CoT fine-tuning and UniGRPO reinforcement learningarXiv GitHub
6LLaDA-VarXiv'25Purely diffusion-based multimodal LLM with visual instruction tuning built upon LLaDAarXiv GitHub Website
7LLaDA 1.5arXiv'25Variance-reduced preference optimization (VRPO) for aligning large language diffusion modelsarXiv
8Seed DiffusionarXiv'25Large-scale code-focused diffusion language model with high-speed parallel inferencearXiv Website
9Dream 7BarXiv'25Open diffusion LLM with AR-based initialization and context-adaptive token-level noise reschedulingarXiv GitHub Website
10Fast-dLLMICLR'26Training-free block-wise approximate KV cache and confidence-aware parallel decoding with up to 27.6Γ— throughputarXiv GitHub Website

πŸ›œ Diffusion Models for Semantic Communications

This section presents applications of diffusion models in semantic communications.

[Preliminary] Diffusion Models for Data Compression

Representative works using diffusion models for data compression across image, video, and audio modalities.

#MethodVenueDescriptionLinks
1CDCNeurIPS'23Conditional diffusion decoder for end-to-end optimized lossy image compressionarXiv GitHub
2Multi-Band DiffusionNeurIPS'23High-fidelity audio generation from low-bitrate discrete representationsarXiv GitHub Website
3HFDarXiv'23High-fidelity compression with score-based generative modelsarXiv
4PerCoICLR'24Ultra-low bitrate image compression with diffusion models (0.003 bpp)arXiv GitHub
5IPIC (Idempotence)ICLR'24Perceptual compression via idempotence constraints without training new modelsarXiv GitHub
6CorrDiffICML'24Correcting diffusion compression with privileged end-to-end decoderarXiv
7Foundation DiffusionECCV'24Lossy compression using pre-trained foundation models without fine-tuningarXiv
8Extreme Video CompressionWCSP'24Extreme video compression with diffusion-based predictive generation (0.02 bpp)arXiv GitHub
9UQDMICLR'25Progressive compression with universally quantized diffusion modelsarXiv GitHub Website
10DiffCICLR'25Zero-shot lossy compression using pretrained Stable Diffusion modelsarXiv GitHub Website
11PICDCVPR'25Versatile perceptual image compression with diffusion rendering for screen and natural imagesarXiv

Fidelity-Oriented Human Semantic Communications

Diffusion models for high-quality semantic image, video, and audio transmission prioritizing perceptual fidelity for human consumption.

#MethodVenueDescriptionLinks
1DM4ASCICASSP'24First diffusion framework for audio semantic communication as inverse problemarXiv GitHub Website
2CommINICASSP'24INN-guided diffusion for wireless image transmission as inverse problemarXiv
3DiffSCICASSP'24DDPM with Multi-Dimensional Feature Extraction for high-noise environmentsWebsite
4CDDMTWC'24Channel denoising diffusion models adapting to AWGN/Rayleigh channelsarXiv GitHub
5Gen-SCWCSP'24Transmits images efficiently by sending text descriptions and reconstructing images via a text-to-image diffusion modelarXiv
6CDM-JSCCWCL'24Enhances the perceptual quality of transmitted images by utilizing a rate-adaptive conditional diffusion modelarXiv GitHub
7Img2Img-SCMLSP'24Language-oriented semantic communication framework that transmits both textual descriptions and compressed image embeddingsarXiv GitHub
8MU-GSCarXiv'24Swin Transformer JSCC with diffusion decoder, 17.75% PSNR improvementarXiv
9DiffJSCCTMLCN'25Pre-trained Stable Diffusion with Deep JSCC achieving <0.008 symbols/pixelarXiv GitHub
10DiffComJSAC'25Probabilistic sampling using channel signals as fine-grained conditionsarXiv GitHub Website
11GVSCTVT'25First generative video semantic communication at low bandwidth ratioarXiv
12LD-ABSWCM'25Latent diffusion-enabled adaptive-bitrate video streaming within FFmpeg for QoE-optimized wireless deliveryarXiv
13LRGDTCCN'25Compressed sensing-driven multimodal framework with training-free low-rank guided diffusion for robust image reconstructionWebsite GitHub
14Wang et al.arXiv'25Receiver-driven retransmission with caption-guided latent diffusion inpaintingarXiv
15SGD-JSCCarXiv'25DiT-based diffusion with semantic side information for channel denoisingarXiv GitHub
16WVSC-DarXiv'25Wireless video semantic communication framework with decoupled diffusion multi-frame compensationarXiv
17SD-GSCTWC'26Stable diffusion-based goal-oriented video transmission with channel-aware semantic denoising and frame interpolationarXiv
18DiT-JSCCTCCN'26A DiT-based generative JSCC that ensures high semantic consistency for image transmission under extreme channel conditionsarXiv GitHub

Task-Specific Machine Semantic Communications

Resource-efficient diffusion models optimized for machine semantic communications and edge computing scenarios.

#MethodVenueDescriptionLinks
1GESCOarXiv'23Pioneering diffusion-based machine semantic communication transmitting compressed semantic mapsarXiv GitHub
2Qiao et al.WCL'24Latency-aware generative semantic communications with pre-trained diffusion modelsWebsite
3SCGSCWCNC'24Semantic change driven generative machine semantic communication frameworkarXiv GitHub
4LDM-SemComTWC'25Real-time edge computing with end-to-end consistency distillationarXiv GitHub
5Guo et al.TWC'25Treating wireless transmission as forward diffusion process with VAE modulesarXiv
6Q-GESCOWCL'25Quantized models reducing memory 75% and FLOPs 79% for resource-constrained devicesarXiv GitHub
7CASCICC'25Latent diffusion with Condition-Aware NN, 51.7% inference time reductionarXiv
8DiffCPICRA'25Diffusion-based collaborative perception reconstructing co-agent BEV features with 14.5Γ— lower communication costarXiv
9SC-DiffusionTMLCN'25Parameter generation for task-oriented semantic communications via conditional diffusion modelWebsite
10Khalid et al.ICML'25Semantic image communication via Stable Cascade with compact latent embeddingsarXiv
11Wang et al.arXiv'25Training-free LDM receiver with SDE-derived SNR-to-timestep mapping for zero-shot generalizationarXiv
12DiffSemarXiv'25Task-oriented with privacy, notable accuracy improvement on MNISTarXiv
13SS-MGSCarXiv'25A multi-user generative semantic communication framework utilizing semantic-splitting and diffusion models for personalized vehicular networksarXiv

Intent-Driven Agent Semantic Communications

AI agents with diffusion models for intent-driven semantic communications.

#MethodVenueDescriptionLinks
1A-GSCTWC'24Agent-driven generative semantic communications with cross-modality and prediction based on diffusion RLarXiv
2Semantic CollaborationCNIOT'24A multi-agent collaboration framework based on semantic communication for search and rescue tasksWebsite
3CSCATMC'26A diffusion policy-empowered cognitive SemCom agent for intent-driven multimodal communication planning at the edgeWebsite
4Liu et al.TVT'26Latency-aware intent-based generative semantic multicasting that transmits per-user intended content and diffusion-synthesizes the rest at receiversarXiv

πŸ“Š Benchmarks and Datasets

Benchmarks

Widely-used open-source benchmarks for evaluating diffusion model generation quality, prompt fidelity, and compositional capabilities.

Text-to-Image Benchmarks

#BenchmarkDescriptionSource
1DrawBench200 challenging prompts across 11 categories (counting, colors, spatial, text rendering, etc.) introduced by Imagen for qualitative human evaluation of T2I models.arXiv
2PartiPrompts (P2)1,600 diverse English prompts spanning 12 categories and 11 challenge aspects for holistic T2I evaluation. Released with the Parti model.arXiv HF
3TIFAVQA-based automatic evaluation measuring T2I faithfulness by generating question-answer pairs from prompts and verifying against images. 4K prompts, 25K questions across 12 categories.arXiv GitHub Website
4T2I-CompBenchComprehensive compositional T2I benchmark evaluating attribute binding, spatial relationships, and complex compositions with detection-based metrics.arXiv GitHub
5GenEvalCompositional generation benchmark evaluating object count, spatial relations, attribute binding, and co-occurrence accuracy via object detection pipelines.arXiv GitHub
6DPG-BenchDense prompt generation benchmark with long, detailed prompts synthesized from multi-annotation sources for evaluating models on complex, attribute-rich descriptions.arXiv GitHub
7MJHQ-30K30K high-quality Midjourney images across 10 categories for automatic FID-based aesthetic quality evaluation. Curated with aesthetic and CLIP score filtering.arXiv HF
8GenAI-Bench1,600 compositional prompts from professional designers, evaluating advanced reasoning (counting, comparison, logic) with human ratings across 10 leading T2I/T2V models.arXiv GitHub HF

Video Generation Benchmarks

#BenchmarkDescriptionSource
1VBenchComprehensive video generation benchmark evaluating 16 dimensions including temporal consistency, motion quality, aesthetic fidelity, and subject identity.arXiv GitHub
2EvalCrafterBenchmark and pipeline for evaluating video generation models across visual quality, text-video alignment, motion quality, and temporal consistency.arXiv GitHub Website

Datasets

Audio

#DatasetDescriptionSizeTasksSource
1LibriSpeechLarge-scale corpus of read English speech derived from audiobooks. Clean and noisy subsets available.1000 hoursASR, Speech RecognitionOpenSLR
2VCTKEnglish multi-speaker corpus with 110 speakers reading newspapers. High-quality recordings.44 hoursTTS, Voice Conversion, Speaker RecognitionLink
3AudioSetLarge-scale dataset of 2M 10-second audio clips with 527 sound event classes from YouTube.2M clipsAudio Classification, Sound Event DetectionLink

Image

#DatasetDescriptionSizeTasksSource
1ImageNetLarge-scale image classification dataset with 1000 object categories. Standard benchmark for computer vision.1.4M imagesClassification, Object RecognitionLink
2COCOCommon Objects in Context. Object detection, segmentation, and captioning with 80 categories.330K imagesDetection, Segmentation, CaptioningarXiv
3FFHQFlickr-Faces-HQ. High-quality face dataset at 1024Γ—1024 resolution with diverse variations.70K imagesFace Generation, GAN, Style TransferGitHub
4CLICChallenge on Learned Image Compression dataset. Professional quality images for compression research.2000+ imagesImage Compression, Quality AssessmentLink
5KodakKodak PhotoCD dataset. Standard benchmark with 24 high-quality uncompressed images.24 imagesImage Compression, Quality EvaluationLink
6Places365Scene recognition dataset with 365 scene categories. Focuses on environmental context.10M imagesScene Recognition, ClassificationLink
7CelebALarge-scale face attributes dataset with 40 attribute annotations per image.202K imagesFace Recognition, Attribute PredictionLink

Video

#DatasetDescriptionSizeTasksSource
1Kinetics-400/600/700Large-scale human action video dataset from YouTube. Standard for action recognition.650K videosAction Recognition, Video ClassificationarXiv
2UCF101Action recognition dataset with 101 action categories from realistic web videos.13K videosAction Recognition, Video UnderstandingLink
3ActivityNetLarge-scale video dataset for human activity understanding with temporal annotations.20K videosActivity Detection, Temporal LocalizationLink
4YouTube-8MLarge-scale video understanding dataset with 8M videos and 3862 visual entity classes.8M videosVideo Classification, Multi-labelLink
5MSR-VTTVideo captioning dataset with 10K video clips and 200K natural language descriptions.10K videosVideo Captioning, Video-Text RetrievalLink

Volume (3D/4D)

#DatasetDescriptionSizeTasksSource
1D-NeRFDynamic Neural Radiance Fields dataset with synthetic and real dynamic scenes for 4D reconstruction.9 scenesDynamic Novel View Synthesis, 4D ReconstructionarXiv GitHub Website
2Neu3DNeural 3D video synthesis dataset with multi-view videos of human performances.200+ sequences3D Human Reconstruction, Neural RenderingarXiv GitHub Project
3ShapeNetLarge-scale 3D shape dataset with 55 object categories and 51,300 3D CAD models.51K models3D Reconstruction, Shape AnalysisarXiv Link
4ScanNetRichly-annotated indoor RGB-D scans with 3D semantic segmentation labels for 1513 scenes.1513 scans3D Segmentation, Indoor Scene UnderstandingarXiv Link
5ModelNet3D CAD model dataset with ModelNet40 (40 classes) and ModelNet10 (10 classes) versions.12K models3D Classification, Point Cloud ProcessingLink
6NeRF SyntheticBlender-rendered synthetic scenes with known camera poses and lighting for NeRF evaluation.8 scenesNovel View Synthesis, 3D ReconstructionarXiv GitHub Project

Domain-Specific

Autonomous Driving

#DatasetDescriptionSizeTasksSource
1nuScenesFull 3D sensor suite with LiDAR, radar, and cameras. 1000 scenes with 3D bounding boxes.1000 scenes3D Detection, Tracking, PredictionarXiv Link
2KITTIBenchmark suite for stereo, optical flow, visual odometry, and 3D object detection from driving scenarios.200K images3D Detection, Depth, OdometryLink
3Waymo Open DatasetHigh-resolution sensor data with LiDAR and camera from Waymo vehicles. Large-scale 3D annotations.1000 segments3D Detection, Tracking, Motion PredictionarXiv Link
4CityscapesUrban street scenes with dense pixel-level semantic and instance segmentation annotations.25K imagesSemantic Segmentation, Instance SegmentationarXiv Link

Medical Imaging

#DatasetDescriptionSizeTasksSource
1BraTSBrain Tumor Segmentation challenge with multimodal MRI scans (T1, T2, FLAIR, T1ce). Annual benchmark.2000+ cases3D Tumor Segmentation, Medical ImagingLink
2MIMIC-CXRLarge chest X-ray dataset with free-text radiology reports. Largest publicly available CXR dataset.377K imagesDisease Classification, Report GenerationarXiv PhysioNet
3ChestX-ray14Large-scale chest X-ray dataset with 14 common disease labels for multi-label classification.112K imagesDisease Classification, LocalizationarXiv NIH
4Medical Segmentation DecathlonMulti-organ segmentation covering 10 different medical imaging tasks (CT, MRI).2600+ casesMulti-task 3D SegmentationarXiv Link

Depth Estimation

#DatasetDescriptionSizeTasksSource
1NYU Depth V2Indoor RGB-D dataset with dense depth maps from Microsoft Kinect. 1449 labeled scenes.1449 scenesDepth Estimation, Indoor Scene UnderstandingLink
2DIODEDense Indoor and Outdoor DEpth dataset with high-quality depth from laser scanner.25K imagesDepth Estimation, Normal EstimationarXiv Link
3Middlebury StereoStandard stereo matching benchmark with high-resolution calibrated image pairs and ground truth.30+ pairsStereo Matching, Depth EstimationLink
4SceneFlowLarge synthetic dataset with optical flow and disparity ground truth for 3D scene understanding.39K imagesOptical Flow, Stereo Matching, DeptharXiv Link

Remote Sensing

#DatasetDescriptionSizeTasksSource
1SpaceNetHigh-resolution satellite imagery with building footprints, road networks across multiple cities.1M+ buildingsBuilding Detection, Road ExtractionLink
2xViewOne of the largest overhead imagery datasets with 1M object instances across 60 classes.1M objectsObject Detection, ClassificationarXiv Link
3DOTADataset for Object deTection in Aerial images with oriented bounding boxes. 15 categories.188K instancesOriented Object Detection, Aerial ImageryarXiv Link
4LEVIR-CDLarge-scale building change detection dataset from Google Earth with 637 image pairs.637 pairsChange Detection, Building AnalysisLink

πŸ“ Evaluation Metrics

Perception Metrics

Full-Reference Metrics

#MetricDescriptionSource
1PSNRPeak Signal-to-Noise Ratio. Measures the ratio between the maximum possible power of a signal and the power of corrupting noise. Calculated as PSNR = 10Β·log₁₀(MAXΒ²/MSE).Wikipedia
2SSIMStructural Similarity Index. Assesses image quality based on luminance, contrast, and structure. Designed to improve on PSNR by considering structural information.Paper
3LPIPSLearned Perceptual Image Patch Similarity. Uses deep neural network features to compute perceptual distance between images, better aligned with human perception.arXiv
4DISTSDeep Image Structure and Texture Similarity. Combines structure and texture similarity using deep features for better perceptual quality assessment.arXiv

Reduced-Reference Metrics

#MetricDescriptionSource
1RREDReduced-Reference Entropic Differencing. Uses entropic differences between wavelet coefficients, requiring only partial statistical features from reference.Paper
2RR-SSIMReduced-Reference SSIM. Extracts and transmits only key structural features (edge information, local statistics) from reference image.Paper

No-Reference Metrics

#MetricDescriptionSource
1NIQENatural Image Quality Evaluator. Measures deviation from statistical regularities in natural images using natural scene statistics (NSS). Completely blind quality assessment.Paper
2FIDFrΓ©chet Inception Distance. Calculates FrΓ©chet distance between feature distributions of real and generated images in Inception-v3 space. Lower FID indicates better quality and diversity.arXiv
3KIDKernel Inception Distance. Unbiased alternative to FID using polynomial kernel on Inception features. More reliable for small sample sizes.arXiv
4ISInception Score. Evaluates both quality (classification confidence) and diversity (marginal class distribution).arXiv
5MUSIQMulti-scale Image Quality Transformer. Handles native-resolution images via multi-scale patch embedding without fixed-size cropping, enabling more robust no-reference quality assessment.arXiv GitHub
6CLIP-IQALeverages CLIP's vision-language representations for no-reference image quality and aesthetic assessment via prompt-based antonym pairing.arXiv GitHub

Semantic Metrics

#MetricDescriptionSource
1CLIPScoreMeasures text-image alignment using CLIP embeddings. Computed as cosine similarity between CLIP image and text features.arXiv
2ViTScoreUses Vision Transformer features to evaluate semantic similarity between images. Captures high-level semantic content beyond pixel-level differences.arXiv
3SeSSSemantic Similarity Score. Based on Scene Graph Generation and graph matching, shifts image similarity scores into semantic-level graph matching scores.arXiv
4DreamSimLearned perceptual metric trained on synthetic triplet judgments from diffusion models, capturing mid-level semantic similarity beyond low-level texture.arXiv GitHub
5ImageRewardText-image alignment metric learned from human preference rankings via reward modeling, designed to evaluate text-to-image generation quality.arXiv GitHub
6HPSv2Human Preference Score v2. Fine-tuned CLIP model predicting human aesthetic preferences for generated images, trained on large-scale human choice data.arXiv GitHub
7PickScorePreference-based scoring model trained on the Pick-a-Pic dataset of human pairwise preferences for text-to-image generation.arXiv GitHub

πŸ”— Other Resources

πŸ“š Comprehensive Books, Surveys & Tutorials

Diffusion Models

#PaperAuthorsYearLinks
1Understanding Diffusion Models: A Unified PerspectiveLuo et al.2022arXiv
2Diffusion Models: A Comprehensive Survey of Methods and ApplicationsYang et al.2022arXiv
3Diffusion Models in Vision: A SurveyCroitoru et al.2022arXiv
4A Survey on Generative Diffusion ModelsCao et al.2022arXiv GitHub
5A Survey on Video Diffusion ModelsXing et al.2023arXiv GitHub
6Diffusion Models for Image Restoration and Enhancement: A Comprehensive SurveyLi et al.2023arXiv
7Efficient Diffusion Models: A Comprehensive Survey From Principles to PracticesMa et al.2024arXiv
8Diffusion Model-Based Image Editing: A SurveyHuang et al.2024arXiv GitHub
9Diffusion Models in Low-Level Vision: A SurveyHe et al.2024arXiv GitHub
10Diffusion Models in 3D Vision: A SurveyWang et al.2024arXiv
11Understanding Reinforcement Learning-Based Fine-Tuning of Diffusion Models: A Tutorial and ReviewUehara et al.2024arXiv GitHub
12Efficient Diffusion Models: A SurveyShen et al.2025arXiv GitHub
13A Survey on Diffusion Language ModelsLi et al.2025arXiv GitHub
14The Principles of Diffusion ModelsLai et al.2025arXiv
15Flow Matching Guide and CodeLipman et al.2024arXiv GitHub
16An Introduction to Flow Matching and Diffusion ModelsHolderrieth & Erives2025arXiv Project Page
17A Survey on Diffusion Models for Inverse ProblemsDaras et al.2024arXiv
18Discrete Diffusion in Large Language and Multimodal Models: A SurveyYu et al.2025arXiv GitHub

Semantic Communications

#PaperAuthorsYearLinks
1Toward Wisdom-Evolutionary and Primitive-Concise 6G: A New Paradigm of Semantic Communication NetworksZhang et al.2022Paper
2Semantic Communications for Future Internet: Fundamentals, Applications, and ChallengesYang et al.2022arXiv
3Beyond Transmitting Bits: Context, Semantics, and Task-Oriented CommunicationsGunduz et al.2022arXiv
4Semantics-Empowered Communications: A Tutorial-Cum-SurveyLu et al.2022arXiv
5Less Data, More Knowledge: Building Next Generation Semantic Communication NetworksChaccour et al.2022arXiv
6Enhancing Deep Reinforcement Learning: A Tutorial on Generative Diffusion Models in Network OptimizationDu et al.2023arXiv
7Generative AI Meets Semantic Communication: Evolution and Revolution of Communication TasksGrassucci et al.2024arXiv
8A Survey on Semantic Communication Networks: Architecture, Security, and PrivacyGuo et al.2024arXiv
9Resource Management, Security, and Privacy Issues in Semantic Communications: A SurveyWon et al.2024Paper
10Generative AI-Driven Semantic Communication Networks: Architecture, Technologies, and ApplicationsLiang et al.2024arXiv
11Generative Semantic Communication: Architectures, Technologies, and ApplicationsRen et al.2024arXiv
12A Contemporary Survey on Semantic Communications: Theory of Mind, Generative AI, and Deep Joint Source-Channel CodingNguyen et al.2025arXiv
13Generative Diffusion Models for Wireless Networks: Fundamental, Architecture, and State-of-the-ArtFan et al.2025arXiv
14Diffusion Models for Future Networks and Communications: A Comprehensive SurveyLuong et al.2025arXiv
15Resource Allocation in Wireless Semantic Communications: A Comprehensive SurveyZhang et al.2025Paper

πŸ“Ί Courses & Video Lectures

#TitleSourceTypeLinks
1Stanford CS236: Deep Generative ModelsStefano Ermon et al.University CourseProject Page
2MIT 6.S978: Deep Generative ModelsKaiming He et al.University CourseProject Page
3MIT 6.S184: Introduction to Flow Matching and Diffusion ModelsPeter Holderrieth & Ezra ErivesUniversity CoursearXiv Project Page
4Diffusion Models CourseHugging FaceOnline CourseGitHub
5NeurIPS 2023 Workshop: Diffusion ModelsNeurIPSWorkshopProject Page
6Diffusion and Score-Based Generative ModelsYang SongLectureYouTube
7Two Minute Papers – Diffusion SeriesTwo Minute PapersYouTube SeriesYouTube
8Generative Modeling by Estimating Gradients of the Data DistributionYang SongBlog PostProject Page
9What are Diffusion Models?Lilian WengBlog PostProject Page

🧰 Interactive Demos & Tools

#ToolTypeWhat it’s great forLinks
1Stable Diffusion WebUI (AUTOMATIC1111)UI + ExtensionsLocal UI with huge plugin ecosystemGitHub
2InvokeAIPro UIStudio-style creative workflow & editingGitHub
3πŸ€— DiffusersLibraryClean Python API for diffusion inference & trainingGitHub
4Diffusers Playground (Hugging Face Spaces)Web demoTry many pipelines online (no local install)Project Page
5ComfyUINode-graph UIModular node-based pipelines for reproducible flowsGitHub
6StableStudio (Stability AI)Official UIFrontend for SDXL / stability modelsGitHub
7FooocusSimple UIOne-click text→image with SDXL supportGitHub
8kohya-ss / sd-scriptsTraining / FinetuneLoRA, DreamBooth, finetuning helpersGitHub
9ControlNetConditioning modelPose / edge / depth guided generationGitHub
10sd-webui-controlnetWebUI ExtensionEasy ControlNet integration for WebUIGitHub

πŸ“ Citation

If you find this article or repository helpful, please consider citing:

@article{qin-diffcomm,
    author  = {H. L. Qin and J. Dai and G. Lu and S. Shao and S. Wang and T. Xu and W. Zhang and P. Zhang and K. B. Letaief},
    title   = {Generative AI Meets 6G and Beyond: Diffusion Models for Semantic Communications},
    journal = {arXiv preprint arXiv:2511.08416},
    year    = {2025}
}

Related Papers from Our Group

@article{dai-gaicomm,
	author  = {J. Dai and X. Qin and S. Wang and L. Xu and K. Niu and P. Zhang},
	title   = {Deep Generative Modeling Reshapes Compression and Transmission: From Efficiency to Resiliency},
	journal = {IEEE Wireless Commun.},
	volume  = {31},
	number  = {4},
	pages   = {48--56},
	year    = {2024}
}
@article{wang-diffcom,
	author  = {S. Wang and J. Dai and K. Tan and X. Qin and K. Niu and P. Zhang},
	title   = {DiffCom: Channel Received Signal is a Natural Condition to Guide Diffusion Posterior Sampling},
	journal = {IEEE J. Sel. Areas Commun.},
	volume  = {43},
	number  = {7},
	pages   = {2651--2666},
	year    = {2025}
}
@article{qin-semcod,
    author  = {H. L. Qin and J. Dai and S. Wang and X. Qin and S. Shao and K. Niu and W. Xu and P. Zhang},
    title   = {Neural Coding is Not Always Semantic: Toward the Standardized Coding Workflow in Semantic Communications},
    journal = {IEEE Commun. Stand. Mag.},
    volume  = {9},
    number  = {4},
    pages   = {24--33},
    year    = {2025}
}
@article{tan-ditjscc,
    author  = {K. Tan and J. Dai and S. Wang and G. Lu and S. Shao and K. Niu and W. Zhang and P. Zhang},
    title   = {DiT-JSCC: Rethinking Deep JSCC with Diffusion Transformers and Semantic Representations},
    journal = {IEEE Trans. Cogn. Commun. Netw.},
    volume  = {12},
    pages   = {9247--9262},
    year    = {2026}
}

🌟 Acknowledgments

We thank the diffusion models and semantic communications research communities for their groundbreaking work. Special thanks to all and future contributors to this repository.

⭐ Star this repo if you find it useful! ⭐

Back to Top

Maintained with ❀️ by the community members:

Contributors

diffusion-model
semantic-communication

Contributors

qin-jingyun

16 commits

Endrother

2 commits

qin-jingyun/Awesome-DiffComm

A public repository of "Generative AI Meets 6G and Beyond: Diffusion Models for Semantic Communications", which is a collection of educational resources and curated papers on diffusion models and their applications in semantic communications.

JavaScript

60

18 commits

updated Sep 6, 2026

See the code

README

😎 Generative AI Meets 6G and Beyond:
Diffusion Models for Semantic Communications

Awesome arXiv IEEE Project Page Stars

License Visitors Pull Request Email

Hai-Long Qin¹, Jincheng Dai¹, Guo Lu², Shuo Shao³, Sixian Wang², Tongda Xu⁴,
Wenjun Zhang², Ping Zhang¹, Khaled B. Letaief⁡

ΒΉ Beijing University of Posts and Telecommunications (BUPT)
Β² Shanghai Jiao Tong University (SJTU)
Β³ East China Normal University (ECNU)
⁴ Tsinghua University (THU)
⁡ Hong Kong University of Science and Technology (HKUST)

 This repository accompanies our IEEE COMST tutorial paper, serving as a living resource for researchers at the intersection of generative AI and wireless (semantic) communications. As semantic communications emerge as a paradigm shift from bit-accurate transmission toward meaning-centric communication, diffusion models have become a cornerstone technology enabling receivers to reconstruct high-quality content from minimal semantic cues. This repository provides curated collections of representative works, popular implementations, educational resources, and practical guidelines to help researchers continuously acquire knowledge in this rapidly evolving interdisciplinary field.


Teaser

πŸ“‹ TL;DR

What is this article about?
To the best of our knowledge, this is the first tutorial paper on diffusion models for generative semantic communications. It provides a unified resource for researchers to efficiently begin their work in this interdisciplinary area, without separately navigating scattered literatures across generative AI and wireless communications.

  • 🎯Mathematical Fundamentals: From score matching and Langevin dynamics to stochastic differential equations (SDEs) and probability flow ordinary differential equations (PF ODEs), we present the theoretical foundations of score-based diffusion models.
  • 🎨 Conditioning Mechanisms: We examine how to steer diffusion models toward task-specific objectives through two complementary paradigms β€” inference-time conditioning that injects guidance during sampling while preserving pre-trained models, and training-time conditioning that jointly optimizes conditional and unconditional scores for tighter control, meeting the fundamental controllability requirement in semantic communications.
  • ⚑ Sampling Acceleration: Recognizing that iterative sampling (often requiring hundreds to thousands of neural network evaluations) presents significant computational challenges for real-time deployment, we review five primary acceleration strategies: dimensionality reduction, knowledge distillation, structure pruning, cache reuse, and flow matching.
  • πŸ”¬ Task Generalization: We explore how diffusion models, initially conceived for specific data modalities and domains, can be extended across diverse scenarios through three fundamental aspects β€” modality expansion, domain adaptation, and task generalization, which addresses the requirements of task-specific multi-modal semantic communications.
  • πŸ“‘ Application Scenarios: Through analysis of three distinct use cases, we illustrate how diffusion models enable extreme compression while maintaining semantic fidelity:
    • Fidelity-oriented human semantic communications balancing consistency-realism trade-offs for perceptually realistic reconstruction
    • Task-specific machine semantic communications optimizing effectiveness-efficiency trade-offs for downstream task execution under bandwidth constraints
    • Intent-driven agent semantic communications managing centralization-distribution trade-offs for multi-agent coordination through shared probabilistic representations

Why is this article needed?
As wireless systems approach Shannon capacity limits, semantic communications represent a paradigm shift from bit-accurate transmission toward meaning-centric communication. The emergence of diffusion models as powerful generative priors has catalyzed generative semantic communications, where receivers reconstruct high-quality content from minimal semantic cues. However, the field currently lacks systematic guidance connecting diffusion model techniques to semantic communication system design. This article fills that critical gap by:

  • Eliminating barriers between machine learning and communication communities
  • Providing depth beyond existing surveys and magazines through rigorous mathematical treatment and implementation details
  • Establishing connections via an inverse problem perspective that reformulates semantic decoding as posterior inference
  • Offering practical resources including open-source implementations, and deployment guidelines

Who should read this?
We believe this article may be helpful to the following groups of people:

  • Researchers in semantic communications seeking to leverage diffusion models
  • Machine learning practitioners interested in wireless communication applications
  • Graduate students entering the interdisciplinary field of AI-native wireless networks
  • Engineers designing next-generation communication systems with semantic awareness

πŸ“‡ Table of Contents

πŸŽ“ Fundamentals of Diffusion Models

Mathematical Foundations

Mathematical concepts underlying diffusion models.

#ConceptReferenceDescriptionLinks
1Score MatchingEstimation of Non-Normalized Statistical Models (HyvΓ€rinen, JMLR 2005)Foundation for learning score functions without computing partition functionsPaper
2Denoising Score MatchingA Connection Between Score Matching and Denoising Autoencoders (Vincent, Neural Computation 2011)Equivalence between score matching and denoisingPaper
3Langevin DynamicsBayesian Learning via Stochastic Gradient Langevin Dynamics (Welling & Teh, ICML 2011)MCMC sampling using gradient informationPaper
4Tweedie's FormulaTweedie's Formula and Selection Bias (Efron, JASA 1992)Posterior mean estimation from corrupted observationsPaper
5Neural ODEsNeural Ordinary Differential Equations (Chen et al., NeurIPS 2018)Continuous-depth neural networks and invertible transformationsarXiv GitHub
6Flow MatchingFlow Matching for Generative Modeling (Lipman et al., ICLR 2023)Continuous normalizing flows via regressionarXiv GitHub

Foundational Papers

Seminal works establishing the theoretical and practical foundations of diffusion models.

#MethodVenueKey ContributionLinks
1Deep Unsupervised Learning using Nonequilibrium ThermodynamicsICML'15First diffusion model using thermodynamic principlesarXiv GitHub
2NCSN - Generative Modeling by Estimating GradientsNeurIPS'19Score matching with Langevin dynamics (SMLD)arXiv GitHub
3DDPM - Denoising Diffusion Probabilistic ModelsNeurIPS'20Simplified training objective and high-quality generationarXiv GitHub Website
4DDIM - Denoising Diffusion Implicit ModelsICLR'21Non-Markovian sampling for accelerated generationarXiv GitHub
5Score SDE - Score-Based Generative Modeling through SDEsICLR'21Unified SDE framework connecting score matching and diffusionarXiv GitHub
6LDM - High-Resolution Image Synthesis with Latent Diffusion ModelsCVPR'22Diffusion in learned latent spaces (Stable Diffusion)arXiv GitHub HF

🎨 Conditional Diffusion Models

Conditional diffusion models enable controlled generation by incorporating external guidance. This section covers two main categories based on when conditioning is applied.

Inference-Time Conditional Diffusion Models

These methods introduce guidance during sampling without modifying the pre-trained model.

#MethodVenueDescriptionLinks
1CG - Classifier GuidanceNeurIPS'21Adds classifier gradients to steer generationarXiv GitHub
2ILVRICCV'21Iterative refinement toward a reference imagearXiv GitHub
3SDEditICLR'22Structure-preserving editing via controlled denoisingarXiv GitHub Website
4RePaintCVPR'22Inpainting by alternating denoising and re-noisingarXiv GitHub
5Prompt-to-PromptarXiv'22Cross-attention editing guided by text promptsarXiv GitHub Website
6DDRMNeurIPS'22Linear inverse problem solver using diffusion priorsarXiv GitHub Website
7MCGNeurIPS'22Adds manifold consistency during samplingarXiv GitHub
8DDNM - Denoising Diffusion Null-space ModelICLR'23Null-space projection for zero-shot restorationarXiv GitHub HF Website
9DPS - Diffusion Posterior SamplingICLR'23Posterior sampling with measurement guidancearXiv GitHub Website
10Ο€GDM - Pseudoinverse-Guided DMICLR'23Pseudoinverse-based conditioning for inverse tasksarXiv Website GitHub
11Null-Text InversionCVPR'23Real-image editing via null-text optimizationarXiv GitHub Website
12BlindDPSCVPR'23Jointly samples unknown operator and clean signalarXiv GitHub
13DiffPIRCVPRW'23Plug-and-play restoration with diffusion priorsarXiv GitHub
14DiffusionMBIRCVPR'23Uses 2D diffusion priors for 3D reconstructionarXiv GitHub
15FreeDoMICCV'23Training-free diffusion adaptation for new tasksarXiv GitHub
16DG - Discriminator GuidanceICML'23Introduces a discriminator that gives explicit supervision to a denoising sample patharXiv GitHub
17SMRDMICCAI'23MRI reconstruction via diffusion priorsPaper GitHub
18PSLDNeurIPS'23Posterior sampling in latent diffusion spacearXiv GitHub
19RED-diffICLR'24Variational regularization with diffusion denoisersarXiv GitHub
20ControlVideoICLR'24Video editing with spatial/temporal control via fine-tuningarXiv GitHub Replicate Website
21DeqIRCVPR'24Fixed-point solver for diffusion restorationarXiv GitHub
22SparseCtrlECCV'24Adds sparse keyframe controls to text-to-video diffusionarXiv GitHub Website
23DiffBIRECCV'24Blind image restoration with generative diffusion priorsarXiv GitHub Replicate Website
24DMPlugNeurIPS'24Plug-in solver for general inverse problemsarXiv GitHub
25DGSolverNeurIPS'25Diffusion generalist solver with universal posterior samplingarXiv GitHub
26DAPSCVPR'25Annealed posterior sampling for inverse problemsarXiv GitHub Website
27SITCOMICML'25Iterative constrained optimization during samplingarXiv GitHub
28DiffStateGradICLR'25Gradient projection in diffusion latent spacearXiv GitHub Website
29RF-InversionICLR'25Semantic image inversion and editing using rectified SDEsarXiv GitHub ComfyUI Website
30FlowDPSICCV'25Posterior sampling within flow-matching ODEsarXiv GitHub

Key Formula:

formula

Training-Time Conditional Diffusion Models

These methods incorporate conditioning directly during model training.

#MethodVenueDescriptionLinks
1CFG - Classifier-Free GuidanceNeurIPS'21Standard for conditional generationarXiv GitHub
2LDM - Latent Diffusion ModelCVPR'22Stable Diffusion foundationarXiv GitHub HF
3PaletteSIGGRAPH'22Image-to-image diffusion (colorization, inpainting, etc.)arXiv Website
4Textual InversionarXiv'22Personalizes a concept via learned token embeddingsarXIV GitHub Website
5DreamBoothCVPR'23Subject-driven personalization via fine-tuningarXiv GitHub Website
6GLIGENCVPR'23Grounded language-to-image generationarXiv GitHub Website
7InstructPix2PixCVPR'23Instruction-based image editingarXiv GitHub Website
8ControlNetICCV'23Fine-grained spatial controlarXiv GitHub HF
9IP-AdapterarXiv'23Image prompt adapter for identity/style conditioningarXiv GitHub Website
10MoD - Mixture of DiffusersarXiv'23Conditional diffusion with learned mixture expertsarXiv GitHub
11DiT - Diffusion TransformerICCV'23Transformer-based diffusionarXiv GitHub Website
12MDT - Masked Diffusion TransformerICCV'23Masked diffusion transformersarXiv GitHub
13SDXL - Stable Diffusion XLICLR'24High-res text-to-image diffusion with multi-aspect conditioningarXiv GitHub HF
14T2I-AdapterAAAI'24Lightweight adapters for controlarXiv GitHub HF
15AnimateDiffICLR'24Motion module for animationarXiv GitHub Website
16LVD - LLM-grounded Video DiffusionICLR'24LLM-guided video generationarXiv GitHub Website
17SEINEICLR'24Short-to-long video diffusionarXiv GitHub HF Website
18VideoCrafter2CVPR'24Open-source text-to-video / video editing diffusion pipelinearXiv GitHub Website
19HunyuanDiTCVPR'24Large-scale DiT-based text-to-image diffusion with strong conditioningarXiv GitHub HF Website
20S-CFG - Rethinking spatial Inconsistency in CFGCVPR'24Analyzes and improves spatial consistency in CFG-based generationarXiv GitHub
21D3POCVPR'24RLHF-style preference finetuning for diffusion without reward modelarXiv GitHub
22DreamMatcherCVPR'24Appearance matching self-attention for semantically-consistent text-to-image personalizationarXiv GitHub Website
23PixArt-Ξ£ECCV'24High-resolution text-to-imagearXiv GitHub HF Website
24Follow-Your-EmojiSIGGRAPH Asia'24Fine-controllable and expressive freestyle portrait animation with diffusionarXiv GitHub Website
25HunyuanVideoarXiv'24High-res text-to-video diffusion with multi-scale DiT backbonearXiv GitHub HF Website
26DDO - Direct Discriminative OptimizationICML'25Direct optimization for preference alignmentarXiv GitHub HF Website
27CFG++ICLR'25Refines CFG via dynamic gradient weightingarXiv GitHub Website
28Ctrl-AdapterICLR'25Unified adapter to inject diverse spatial/temporal controls into image/video diffusionarXiv GitHub HF Website
29T2V-Turbo-v2ICLR'25Fast text-to-video generationarXiv GitHub Website
30CogVideoXICLR'25Large-scale text-to-video diffusion with 3D causal VAE and expert transformerarXiv GitHub
31Ξ²-CFGarXiv'25Dynamic guidance method for text-to-image diffusion modelsarXiv GitHub

Key Formula:

formula

⚑ Efficient Diffusion Models

Efficient diffusion models aim to reduce computational cost and sampling time through various acceleration strategies.

Dimensionality Reduction

Operating in compressed latent spaces reduces computational overhead.

#MethodVenueDescriptionLinks
1LDM - Latent Diffusion ModelCVPR'22Stable Diffusion foundationarXiv GitHub HF
2WSGM - Wavelet Score-based GMNeurIPS'22Wavelet-based score modelsWebsite
3DiT - Diffusion TransformerICCV'23Transformer-based diffusionarXiv GitHub Website
4WaveDiffCVPR'23Wavelet-based diffusionarXiv GitHub
5LMD - Latent Masking DiffusionAAAI'24Combines the advantages of MAEs and diffusionarXiv GitHub
6SANAICLR'25Linear-attention DiT with 32Γ— deep compression autoencoder for efficient 4K text-to-image synthesisarXiv GitHub Website

Knowledge Distillation

Distilling multi-step diffusion into fewer steps or single-step models.

#MethodVenueDescriptionLinks
1PD - Progressive DistillationICLR'224-8 steps with minimal quality lossarXiv GitHub
2CM - Consistency ModelICML'23Single-step generationarXiv GitHub
3LCM - Latent Consistency ModelarXiv'23Distills diffusion into few-step latent consistency modelsarXiv GitHub Replicate Website
4DMD2 - Distribution Matching Distillation v2NeurIPS'24Improved distribution matchingarXiv GitHub HF Website
5CTM - Consistency Trajectory ModelICLR'24Trajectory consistency modelingarXiv GitHub Website
6iCT - Improved Consistency TrainingICML'24Improved consistency training without teacher modelsarXiv GitHub
7sCM - Simplified Continuous-time Consistency ModelsICLR'25TrigFlow framework stabilizing and scaling continuous-time consistency training to 1.5B parameters with 2-step samplingarXiv Website
8IMM - Inductive Moment MatchingICML'25Single-stage moment matching pre-training for stable one-/few-step generation without distillationarXiv Website

Structure Pruning

Reducing model parameters through structured pruning.

#MethodVenueDescriptionLinks
1Diff-PruningNeurIPS'23Structural pruning for diffusionarXiv GitHub
2SnapFusionNeurIPS'23Mobile diffusion via architecture evolution and data distillationarXiv Website
3TDPM - Truncated DPMICLR'23Truncated diffusion modelsarXiv GitHub
4LD-PrunerCVPR'24Latent diffusion pruningWebsite
5DiP-GONeurIPS'24Diffusion pruning with gradient optimizationarXiv GitHub
6AdaDiffECCV'24Adaptive diffusion pruningarXiv GitHub

Cache Reuse

Reusing intermediate computations across sampling steps.

#MethodVenueDescriptionLinks
1DeepCacheCVPR'24Deep feature cachingarXiv GitHub Website
2BlockCachingCVPR'24Block-wise caching strategyarXiv Website
3L2C - Learning to CacheNeurIPS'24Learned caching policiesarXiv GitHub
4ToCa - Token-wise CachingICLR'25Token-wise feature caching for DiT accelerationarXiv GitHub
5TeaCache - Timestep Embedding Aware CacheCVPR'25Training-free caching indicated by timestep-embedding-modulated input differences, up to 4.41Γ— speedup for video diffusionarXiv GitHub Website
6ClusCa - Clustered CachingMM'25Compute-efficient clustering cachearXiv GitHub
7TaylorSeerICCV'25Taylor expansion-based feature forecasting for DiT accelerationarXiv GitHub Website

Flow Matching

Transforming diffusion into deterministic flows for faster sampling.

#MethodVenueDescriptionLinks
1Flow MatchingICLR'23Continuous normalizing flowsarXiv GitHub
2Rectified FlowICLR'23Straightening probability flowsarXiv GitHub
3OT-CFMICLR'23Optimal transport conditional flow matching for efficient domain couplingarXiv GitHub
4PeRFlow - Piecewise Rectified FlowNeurIPS'24Piecewise rectification for accelerating diffusion modelsarXiv GitHub HF Website
5InstaFlowICLR'24One-step generation via rectified flowarXiv GitHub
6Stable Diffusion 3arXiv'24Scaling rectified flow transformers for high-resolution image synthesis (MMDiT)arXiv GitHub HF
7Shortcut ModelsICLR'25Step-size-conditioned generative (flow) model enabling one-step generation with a single network and training phasearXiv GitHub Website
8MeanFlowNeurIPS'25Mean-field flow matchingarXiv GitHub
9FLUXarXiv'25High-quality flow matching-based text-to-image model with hybrid transformer architecturearXiv GitHub HF

🌐 Generalized Diffusion Models

Generalized diffusion models extend the framework to diverse modalities, domains, and tasks.

Modality Expansion

Extending diffusion to multiple modalities beyond images.

#MethodVenueDescriptionLinks
1MonoFormerarXiv'24One transformer for both diffusion and autoregressionarXiv GitHub HF Website
2Diffusion ForcingNeurIPS'24Full-sequence diffusion forcingarXiv GitHub Website
3MD4 - Masked Diffusion for Discrete DataNeurIPS'24Unified discrete data generation with masked diffusion modelsarXiv GitHub
4Show-oICLR'25Unified image and text generationarXiv GitHub
5TransfusionICLR'25Combining diffusion and autoregressionarXiv GitHub
6UniDiscarXiv'25Unified discrete-continuous diffusionarXiv GitHub HF Website
7OmniGen2arXiv'25Unified image generation model with multi-modal conditioningarXiv GitHub HF Website
8BAGELarXiv'25Open-source unified decoder-only foundation model for interleaved multimodal understanding and generationarXiv GitHub Website

Domain Adaptation

Adapting diffusion models to specialized domains.

#MethodVenueDescriptionLinks
1DSB - Diffusion SchrΓΆdinger BridgeNeurIPS'21Domain transfer via SchrΓΆdinger bridgeWebsite GitHub
2Composable DiffusionECCV'22Compositional visual generationarXiv GitHub Website
3DreamBoothCVPR'23Personalization with few examplesarXiv GitHub Website
4I2SB - Image-to-Image SchrΓΆdinger BridgeICML'23Image-to-image translationarXiv GitHub Website
5P2P-BridgeECCV'24Point-to-point bridgingarXiv GitHub Website

Task Generalization

Generalizing diffusion models across multiple tasks.

#MethodVenueDescriptionLinks
1DiffuserICML'22Planning with diffusion modelsarXiv GitHub Website
2Diffusion PolicyRSS'23Visuomotor policy learningarXiv GitHub Website
3DiffusionBERTACL'23Recovering BERT masks with diffusion modelsarXiv GitHub HF
4MDLM - Masked Diffusion Language ModelsNeurIPS'24Language modeling with masked diffusion modelsarXiv GitHub HF Website
5DDPO - Denoising Diffusion Policy OptimizationICLR'24RL fine-tuning for diffusionarXiv GitHub Website
6C-LoRA - Continual LoRATMLR'24Continual learning for diffusionarXiv Website
7Diffusion-ESCVPR'24Evolutionary search with diffusion for black-box trajectory optimizationarXiv GitHub Website
8BΒ²-DiffuRLCVPR'25Bidirectional diffusion for RLarXiv GitHub
9DPPO - Diffusion Policy Policy OptimizationICLR'25PPO fine-tuning for diffusion policies in roboticsarXiv GitHub Website

🎲 Discrete Diffusion Models

Discrete diffusion models are used to generate discrete representation modalities such as text, molecular structures, and quantized images. In a sense, these models can be viewed as a generalization of the vanilla diffusion models. We list these models separately for their potential in discrete signal processing, such as MIMO.

Discrete Diffusion Models

#MethodVenueDescriptionLinks
1D3PMs - Discrete Denoising Diffusion Probabilistic ModelsNeurIPS'21Proposing how to build a denoising diffusion model in discrete state spacearXiv GitHub
2Ο„LDR - Tau-Leaping Denoising ReversalNeurIPS'22Designing discrete denoising models by modeling forward noising and reverse generative processes as Continuous Time Markov Chains (CTMC)arXiv GitHub
3SEDD - Score Entropy Discrete Diffusion modelsICML'24Introducing score entropy to estimate the ratios of the data distributionarXiv GitHub
4Duo - The Diffusion DualityICML'25Revealing uniform-state discrete diffusion as an emergent phenomenon of an underlying Gaussian diffusion, enabling curriculum learning and discrete consistency distillationarXiv GitHub Website

Conditional Discrete Diffusion Models

Guidance and sampling mechanisms that steer discrete diffusion toward desired conditions, mirroring CG/CFG and inference-time scaling in the continuous domain.

#MethodVenueDescriptionLinks
1UDLM - Uniform Diffusion Language Models & D-CFG/D-CBG - Discrete Classifier-Free/Based GuidanceICLR'25Designing a concise and universal guidance mechanism for discrete diffusion modelsarXiv GitHub Website
2Discrete GuidanceICLR'25Proposing a general discrete guidance method based on CTMC over discrete state spacesarXiv GitHub
3ReMDM - Remasking Discrete Diffusion ModelsNeurIPS'25Principled remasking sampler endowing masked diffusion with iterative self-correction and inference-time scalingarXiv GitHub Website

Discrete Flow Matching

Discrete Flow Matching extends continuous flow matching to discrete domains by parameterizing probability paths between noise and data distributions, inherently enabling non-autoregressive sequence generation through optimized vector fields.

#MethodVenueDescriptionLinks
1DFM - Discrete Flow MatchingNeurIPS'24Extending the flow matching paradigm to discrete data and construct a matching loss for discrete probability pathsarXiv
2Kinetic Optimal DFMICLR'25Proposing a general discrete path flow matching method based on the optimal transport path with minimum kinetic energyarXiv

Discrete Diffusion Language Models

Scaling discrete diffusion toward LLM-level capabilities, extending it to multimodal understanding and generation, and accelerating its parallel decoding.

#MethodVenueDescriptionLinks
1DiffuGPT & DiffuLLaMAICLR'25Adapting autoregressive models (GPT2/LLaMA) into diffusion language models via continual pre-trainingarXiv GitHub
2LLaDA - Large Language Diffusion ModelsNeurIPS'258B masked diffusion language model trained from scratch, competitive with LLaMA3 8BarXiv GitHub Website
3BD3-LMs - Block DiffusionICLR'25Interpolating between autoregressive and diffusion language models with flexible-length generation and KV cachingarXiv GitHub Website
4dKV-CacheNeurIPS'25Delayed and conditioned key-value caching achieving 2-10Γ— inference speedup for diffusion language modelsarXiv GitHub
5MMaDANeurIPS'25Unified multimodal diffusion foundation model with mixed long-CoT fine-tuning and UniGRPO reinforcement learningarXiv GitHub
6LLaDA-VarXiv'25Purely diffusion-based multimodal LLM with visual instruction tuning built upon LLaDAarXiv GitHub Website
7LLaDA 1.5arXiv'25Variance-reduced preference optimization (VRPO) for aligning large language diffusion modelsarXiv
8Seed DiffusionarXiv'25Large-scale code-focused diffusion language model with high-speed parallel inferencearXiv Website
9Dream 7BarXiv'25Open diffusion LLM with AR-based initialization and context-adaptive token-level noise reschedulingarXiv GitHub Website
10Fast-dLLMICLR'26Training-free block-wise approximate KV cache and confidence-aware parallel decoding with up to 27.6Γ— throughputarXiv GitHub Website

πŸ›œ Diffusion Models for Semantic Communications

This section presents applications of diffusion models in semantic communications.

[Preliminary] Diffusion Models for Data Compression

Representative works using diffusion models for data compression across image, video, and audio modalities.

#MethodVenueDescriptionLinks
1CDCNeurIPS'23Conditional diffusion decoder for end-to-end optimized lossy image compressionarXiv GitHub
2Multi-Band DiffusionNeurIPS'23High-fidelity audio generation from low-bitrate discrete representationsarXiv GitHub Website
3HFDarXiv'23High-fidelity compression with score-based generative modelsarXiv
4PerCoICLR'24Ultra-low bitrate image compression with diffusion models (0.003 bpp)arXiv GitHub
5IPIC (Idempotence)ICLR'24Perceptual compression via idempotence constraints without training new modelsarXiv GitHub
6CorrDiffICML'24Correcting diffusion compression with privileged end-to-end decoderarXiv
7Foundation DiffusionECCV'24Lossy compression using pre-trained foundation models without fine-tuningarXiv
8Extreme Video CompressionWCSP'24Extreme video compression with diffusion-based predictive generation (0.02 bpp)arXiv GitHub
9UQDMICLR'25Progressive compression with universally quantized diffusion modelsarXiv GitHub Website
10DiffCICLR'25Zero-shot lossy compression using pretrained Stable Diffusion modelsarXiv GitHub Website
11PICDCVPR'25Versatile perceptual image compression with diffusion rendering for screen and natural imagesarXiv

Fidelity-Oriented Human Semantic Communications

Diffusion models for high-quality semantic image, video, and audio transmission prioritizing perceptual fidelity for human consumption.

#MethodVenueDescriptionLinks
1DM4ASCICASSP'24First diffusion framework for audio semantic communication as inverse problemarXiv GitHub Website
2CommINICASSP'24INN-guided diffusion for wireless image transmission as inverse problemarXiv
3DiffSCICASSP'24DDPM with Multi-Dimensional Feature Extraction for high-noise environmentsWebsite
4CDDMTWC'24Channel denoising diffusion models adapting to AWGN/Rayleigh channelsarXiv GitHub
5Gen-SCWCSP'24Transmits images efficiently by sending text descriptions and reconstructing images via a text-to-image diffusion modelarXiv
6CDM-JSCCWCL'24Enhances the perceptual quality of transmitted images by utilizing a rate-adaptive conditional diffusion modelarXiv GitHub
7Img2Img-SCMLSP'24Language-oriented semantic communication framework that transmits both textual descriptions and compressed image embeddingsarXiv GitHub
8MU-GSCarXiv'24Swin Transformer JSCC with diffusion decoder, 17.75% PSNR improvementarXiv
9DiffJSCCTMLCN'25Pre-trained Stable Diffusion with Deep JSCC achieving <0.008 symbols/pixelarXiv GitHub
10DiffComJSAC'25Probabilistic sampling using channel signals as fine-grained conditionsarXiv GitHub Website
11GVSCTVT'25First generative video semantic communication at low bandwidth ratioarXiv
12LD-ABSWCM'25Latent diffusion-enabled adaptive-bitrate video streaming within FFmpeg for QoE-optimized wireless deliveryarXiv
13LRGDTCCN'25Compressed sensing-driven multimodal framework with training-free low-rank guided diffusion for robust image reconstructionWebsite GitHub
14Wang et al.arXiv'25Receiver-driven retransmission with caption-guided latent diffusion inpaintingarXiv
15SGD-JSCCarXiv'25DiT-based diffusion with semantic side information for channel denoisingarXiv GitHub
16WVSC-DarXiv'25Wireless video semantic communication framework with decoupled diffusion multi-frame compensationarXiv
17SD-GSCTWC'26Stable diffusion-based goal-oriented video transmission with channel-aware semantic denoising and frame interpolationarXiv
18DiT-JSCCTCCN'26A DiT-based generative JSCC that ensures high semantic consistency for image transmission under extreme channel conditionsarXiv GitHub

Task-Specific Machine Semantic Communications

Resource-efficient diffusion models optimized for machine semantic communications and edge computing scenarios.

#MethodVenueDescriptionLinks
1GESCOarXiv'23Pioneering diffusion-based machine semantic communication transmitting compressed semantic mapsarXiv GitHub
2Qiao et al.WCL'24Latency-aware generative semantic communications with pre-trained diffusion modelsWebsite
3SCGSCWCNC'24Semantic change driven generative machine semantic communication frameworkarXiv GitHub
4LDM-SemComTWC'25Real-time edge computing with end-to-end consistency distillationarXiv GitHub
5Guo et al.TWC'25Treating wireless transmission as forward diffusion process with VAE modulesarXiv
6Q-GESCOWCL'25Quantized models reducing memory 75% and FLOPs 79% for resource-constrained devicesarXiv GitHub
7CASCICC'25Latent diffusion with Condition-Aware NN, 51.7% inference time reductionarXiv
8DiffCPICRA'25Diffusion-based collaborative perception reconstructing co-agent BEV features with 14.5Γ— lower communication costarXiv
9SC-DiffusionTMLCN'25Parameter generation for task-oriented semantic communications via conditional diffusion modelWebsite
10Khalid et al.ICML'25Semantic image communication via Stable Cascade with compact latent embeddingsarXiv
11Wang et al.arXiv'25Training-free LDM receiver with SDE-derived SNR-to-timestep mapping for zero-shot generalizationarXiv
12DiffSemarXiv'25Task-oriented with privacy, notable accuracy improvement on MNISTarXiv
13SS-MGSCarXiv'25A multi-user generative semantic communication framework utilizing semantic-splitting and diffusion models for personalized vehicular networksarXiv

Intent-Driven Agent Semantic Communications

AI agents with diffusion models for intent-driven semantic communications.

#MethodVenueDescriptionLinks
1A-GSCTWC'24Agent-driven generative semantic communications with cross-modality and prediction based on diffusion RLarXiv
2Semantic CollaborationCNIOT'24A multi-agent collaboration framework based on semantic communication for search and rescue tasksWebsite
3CSCATMC'26A diffusion policy-empowered cognitive SemCom agent for intent-driven multimodal communication planning at the edgeWebsite
4Liu et al.TVT'26Latency-aware intent-based generative semantic multicasting that transmits per-user intended content and diffusion-synthesizes the rest at receiversarXiv

πŸ“Š Benchmarks and Datasets

Benchmarks

Widely-used open-source benchmarks for evaluating diffusion model generation quality, prompt fidelity, and compositional capabilities.

Text-to-Image Benchmarks

#BenchmarkDescriptionSource
1DrawBench200 challenging prompts across 11 categories (counting, colors, spatial, text rendering, etc.) introduced by Imagen for qualitative human evaluation of T2I models.arXiv
2PartiPrompts (P2)1,600 diverse English prompts spanning 12 categories and 11 challenge aspects for holistic T2I evaluation. Released with the Parti model.arXiv HF
3TIFAVQA-based automatic evaluation measuring T2I faithfulness by generating question-answer pairs from prompts and verifying against images. 4K prompts, 25K questions across 12 categories.arXiv GitHub Website
4T2I-CompBenchComprehensive compositional T2I benchmark evaluating attribute binding, spatial relationships, and complex compositions with detection-based metrics.arXiv GitHub
5GenEvalCompositional generation benchmark evaluating object count, spatial relations, attribute binding, and co-occurrence accuracy via object detection pipelines.arXiv GitHub
6DPG-BenchDense prompt generation benchmark with long, detailed prompts synthesized from multi-annotation sources for evaluating models on complex, attribute-rich descriptions.arXiv GitHub
7MJHQ-30K30K high-quality Midjourney images across 10 categories for automatic FID-based aesthetic quality evaluation. Curated with aesthetic and CLIP score filtering.arXiv HF
8GenAI-Bench1,600 compositional prompts from professional designers, evaluating advanced reasoning (counting, comparison, logic) with human ratings across 10 leading T2I/T2V models.arXiv GitHub HF

Video Generation Benchmarks

#BenchmarkDescriptionSource
1VBenchComprehensive video generation benchmark evaluating 16 dimensions including temporal consistency, motion quality, aesthetic fidelity, and subject identity.arXiv GitHub
2EvalCrafterBenchmark and pipeline for evaluating video generation models across visual quality, text-video alignment, motion quality, and temporal consistency.arXiv GitHub Website

Datasets

Audio

#DatasetDescriptionSizeTasksSource
1LibriSpeechLarge-scale corpus of read English speech derived from audiobooks. Clean and noisy subsets available.1000 hoursASR, Speech RecognitionOpenSLR
2VCTKEnglish multi-speaker corpus with 110 speakers reading newspapers. High-quality recordings.44 hoursTTS, Voice Conversion, Speaker RecognitionLink
3AudioSetLarge-scale dataset of 2M 10-second audio clips with 527 sound event classes from YouTube.2M clipsAudio Classification, Sound Event DetectionLink

Image

#DatasetDescriptionSizeTasksSource
1ImageNetLarge-scale image classification dataset with 1000 object categories. Standard benchmark for computer vision.1.4M imagesClassification, Object RecognitionLink
2COCOCommon Objects in Context. Object detection, segmentation, and captioning with 80 categories.330K imagesDetection, Segmentation, CaptioningarXiv
3FFHQFlickr-Faces-HQ. High-quality face dataset at 1024Γ—1024 resolution with diverse variations.70K imagesFace Generation, GAN, Style TransferGitHub
4CLICChallenge on Learned Image Compression dataset. Professional quality images for compression research.2000+ imagesImage Compression, Quality AssessmentLink
5KodakKodak PhotoCD dataset. Standard benchmark with 24 high-quality uncompressed images.24 imagesImage Compression, Quality EvaluationLink
6Places365Scene recognition dataset with 365 scene categories. Focuses on environmental context.10M imagesScene Recognition, ClassificationLink
7CelebALarge-scale face attributes dataset with 40 attribute annotations per image.202K imagesFace Recognition, Attribute PredictionLink

Video

#DatasetDescriptionSizeTasksSource
1Kinetics-400/600/700Large-scale human action video dataset from YouTube. Standard for action recognition.650K videosAction Recognition, Video ClassificationarXiv
2UCF101Action recognition dataset with 101 action categories from realistic web videos.13K videosAction Recognition, Video UnderstandingLink
3ActivityNetLarge-scale video dataset for human activity understanding with temporal annotations.20K videosActivity Detection, Temporal LocalizationLink
4YouTube-8MLarge-scale video understanding dataset with 8M videos and 3862 visual entity classes.8M videosVideo Classification, Multi-labelLink
5MSR-VTTVideo captioning dataset with 10K video clips and 200K natural language descriptions.10K videosVideo Captioning, Video-Text RetrievalLink

Volume (3D/4D)

#DatasetDescriptionSizeTasksSource
1D-NeRFDynamic Neural Radiance Fields dataset with synthetic and real dynamic scenes for 4D reconstruction.9 scenesDynamic Novel View Synthesis, 4D ReconstructionarXiv GitHub Website
2Neu3DNeural 3D video synthesis dataset with multi-view videos of human performances.200+ sequences3D Human Reconstruction, Neural RenderingarXiv GitHub Project
3ShapeNetLarge-scale 3D shape dataset with 55 object categories and 51,300 3D CAD models.51K models3D Reconstruction, Shape AnalysisarXiv Link
4ScanNetRichly-annotated indoor RGB-D scans with 3D semantic segmentation labels for 1513 scenes.1513 scans3D Segmentation, Indoor Scene UnderstandingarXiv Link
5ModelNet3D CAD model dataset with ModelNet40 (40 classes) and ModelNet10 (10 classes) versions.12K models3D Classification, Point Cloud ProcessingLink
6NeRF SyntheticBlender-rendered synthetic scenes with known camera poses and lighting for NeRF evaluation.8 scenesNovel View Synthesis, 3D ReconstructionarXiv GitHub Project

Domain-Specific

Autonomous Driving

#DatasetDescriptionSizeTasksSource
1nuScenesFull 3D sensor suite with LiDAR, radar, and cameras. 1000 scenes with 3D bounding boxes.1000 scenes3D Detection, Tracking, PredictionarXiv Link
2KITTIBenchmark suite for stereo, optical flow, visual odometry, and 3D object detection from driving scenarios.200K images3D Detection, Depth, OdometryLink
3Waymo Open DatasetHigh-resolution sensor data with LiDAR and camera from Waymo vehicles. Large-scale 3D annotations.1000 segments3D Detection, Tracking, Motion PredictionarXiv Link
4CityscapesUrban street scenes with dense pixel-level semantic and instance segmentation annotations.25K imagesSemantic Segmentation, Instance SegmentationarXiv Link

Medical Imaging

#DatasetDescriptionSizeTasksSource
1BraTSBrain Tumor Segmentation challenge with multimodal MRI scans (T1, T2, FLAIR, T1ce). Annual benchmark.2000+ cases3D Tumor Segmentation, Medical ImagingLink
2MIMIC-CXRLarge chest X-ray dataset with free-text radiology reports. Largest publicly available CXR dataset.377K imagesDisease Classification, Report GenerationarXiv PhysioNet
3ChestX-ray14Large-scale chest X-ray dataset with 14 common disease labels for multi-label classification.112K imagesDisease Classification, LocalizationarXiv NIH
4Medical Segmentation DecathlonMulti-organ segmentation covering 10 different medical imaging tasks (CT, MRI).2600+ casesMulti-task 3D SegmentationarXiv Link

Depth Estimation

#DatasetDescriptionSizeTasksSource
1NYU Depth V2Indoor RGB-D dataset with dense depth maps from Microsoft Kinect. 1449 labeled scenes.1449 scenesDepth Estimation, Indoor Scene UnderstandingLink
2DIODEDense Indoor and Outdoor DEpth dataset with high-quality depth from laser scanner.25K imagesDepth Estimation, Normal EstimationarXiv Link
3Middlebury StereoStandard stereo matching benchmark with high-resolution calibrated image pairs and ground truth.30+ pairsStereo Matching, Depth EstimationLink
4SceneFlowLarge synthetic dataset with optical flow and disparity ground truth for 3D scene understanding.39K imagesOptical Flow, Stereo Matching, DeptharXiv Link

Remote Sensing

#DatasetDescriptionSizeTasksSource
1SpaceNetHigh-resolution satellite imagery with building footprints, road networks across multiple cities.1M+ buildingsBuilding Detection, Road ExtractionLink
2xViewOne of the largest overhead imagery datasets with 1M object instances across 60 classes.1M objectsObject Detection, ClassificationarXiv Link
3DOTADataset for Object deTection in Aerial images with oriented bounding boxes. 15 categories.188K instancesOriented Object Detection, Aerial ImageryarXiv Link
4LEVIR-CDLarge-scale building change detection dataset from Google Earth with 637 image pairs.637 pairsChange Detection, Building AnalysisLink

πŸ“ Evaluation Metrics

Perception Metrics

Full-Reference Metrics

#MetricDescriptionSource
1PSNRPeak Signal-to-Noise Ratio. Measures the ratio between the maximum possible power of a signal and the power of corrupting noise. Calculated as PSNR = 10Β·log₁₀(MAXΒ²/MSE).Wikipedia
2SSIMStructural Similarity Index. Assesses image quality based on luminance, contrast, and structure. Designed to improve on PSNR by considering structural information.Paper
3LPIPSLearned Perceptual Image Patch Similarity. Uses deep neural network features to compute perceptual distance between images, better aligned with human perception.arXiv
4DISTSDeep Image Structure and Texture Similarity. Combines structure and texture similarity using deep features for better perceptual quality assessment.arXiv

Reduced-Reference Metrics

#MetricDescriptionSource
1RREDReduced-Reference Entropic Differencing. Uses entropic differences between wavelet coefficients, requiring only partial statistical features from reference.Paper
2RR-SSIMReduced-Reference SSIM. Extracts and transmits only key structural features (edge information, local statistics) from reference image.Paper

No-Reference Metrics

#MetricDescriptionSource
1NIQENatural Image Quality Evaluator. Measures deviation from statistical regularities in natural images using natural scene statistics (NSS). Completely blind quality assessment.Paper
2FIDFrΓ©chet Inception Distance. Calculates FrΓ©chet distance between feature distributions of real and generated images in Inception-v3 space. Lower FID indicates better quality and diversity.arXiv
3KIDKernel Inception Distance. Unbiased alternative to FID using polynomial kernel on Inception features. More reliable for small sample sizes.arXiv
4ISInception Score. Evaluates both quality (classification confidence) and diversity (marginal class distribution).arXiv
5MUSIQMulti-scale Image Quality Transformer. Handles native-resolution images via multi-scale patch embedding without fixed-size cropping, enabling more robust no-reference quality assessment.arXiv GitHub
6CLIP-IQALeverages CLIP's vision-language representations for no-reference image quality and aesthetic assessment via prompt-based antonym pairing.arXiv GitHub

Semantic Metrics

#MetricDescriptionSource
1CLIPScoreMeasures text-image alignment using CLIP embeddings. Computed as cosine similarity between CLIP image and text features.arXiv
2ViTScoreUses Vision Transformer features to evaluate semantic similarity between images. Captures high-level semantic content beyond pixel-level differences.arXiv
3SeSSSemantic Similarity Score. Based on Scene Graph Generation and graph matching, shifts image similarity scores into semantic-level graph matching scores.arXiv
4DreamSimLearned perceptual metric trained on synthetic triplet judgments from diffusion models, capturing mid-level semantic similarity beyond low-level texture.arXiv GitHub
5ImageRewardText-image alignment metric learned from human preference rankings via reward modeling, designed to evaluate text-to-image generation quality.arXiv GitHub
6HPSv2Human Preference Score v2. Fine-tuned CLIP model predicting human aesthetic preferences for generated images, trained on large-scale human choice data.arXiv GitHub
7PickScorePreference-based scoring model trained on the Pick-a-Pic dataset of human pairwise preferences for text-to-image generation.arXiv GitHub

πŸ”— Other Resources

πŸ“š Comprehensive Books, Surveys & Tutorials

Diffusion Models

#PaperAuthorsYearLinks
1Understanding Diffusion Models: A Unified PerspectiveLuo et al.2022arXiv
2Diffusion Models: A Comprehensive Survey of Methods and ApplicationsYang et al.2022arXiv
3Diffusion Models in Vision: A SurveyCroitoru et al.2022arXiv
4A Survey on Generative Diffusion ModelsCao et al.2022arXiv GitHub
5A Survey on Video Diffusion ModelsXing et al.2023arXiv GitHub
6Diffusion Models for Image Restoration and Enhancement: A Comprehensive SurveyLi et al.2023arXiv
7Efficient Diffusion Models: A Comprehensive Survey From Principles to PracticesMa et al.2024arXiv
8Diffusion Model-Based Image Editing: A SurveyHuang et al.2024arXiv GitHub
9Diffusion Models in Low-Level Vision: A SurveyHe et al.2024arXiv GitHub
10Diffusion Models in 3D Vision: A SurveyWang et al.2024arXiv
11Understanding Reinforcement Learning-Based Fine-Tuning of Diffusion Models: A Tutorial and ReviewUehara et al.2024arXiv GitHub
12Efficient Diffusion Models: A SurveyShen et al.2025arXiv GitHub
13A Survey on Diffusion Language ModelsLi et al.2025arXiv GitHub
14The Principles of Diffusion ModelsLai et al.2025arXiv
15Flow Matching Guide and CodeLipman et al.2024arXiv GitHub
16An Introduction to Flow Matching and Diffusion ModelsHolderrieth & Erives2025arXiv Project Page
17A Survey on Diffusion Models for Inverse ProblemsDaras et al.2024arXiv
18Discrete Diffusion in Large Language and Multimodal Models: A SurveyYu et al.2025arXiv GitHub

Semantic Communications

#PaperAuthorsYearLinks
1Toward Wisdom-Evolutionary and Primitive-Concise 6G: A New Paradigm of Semantic Communication NetworksZhang et al.2022Paper
2Semantic Communications for Future Internet: Fundamentals, Applications, and ChallengesYang et al.2022arXiv
3Beyond Transmitting Bits: Context, Semantics, and Task-Oriented CommunicationsGunduz et al.2022arXiv
4Semantics-Empowered Communications: A Tutorial-Cum-SurveyLu et al.2022arXiv
5Less Data, More Knowledge: Building Next Generation Semantic Communication NetworksChaccour et al.2022arXiv
6Enhancing Deep Reinforcement Learning: A Tutorial on Generative Diffusion Models in Network OptimizationDu et al.2023arXiv
7Generative AI Meets Semantic Communication: Evolution and Revolution of Communication TasksGrassucci et al.2024arXiv
8A Survey on Semantic Communication Networks: Architecture, Security, and PrivacyGuo et al.2024arXiv
9Resource Management, Security, and Privacy Issues in Semantic Communications: A SurveyWon et al.2024Paper
10Generative AI-Driven Semantic Communication Networks: Architecture, Technologies, and ApplicationsLiang et al.2024arXiv
11Generative Semantic Communication: Architectures, Technologies, and ApplicationsRen et al.2024arXiv
12A Contemporary Survey on Semantic Communications: Theory of Mind, Generative AI, and Deep Joint Source-Channel CodingNguyen et al.2025arXiv
13Generative Diffusion Models for Wireless Networks: Fundamental, Architecture, and State-of-the-ArtFan et al.2025arXiv
14Diffusion Models for Future Networks and Communications: A Comprehensive SurveyLuong et al.2025arXiv
15Resource Allocation in Wireless Semantic Communications: A Comprehensive SurveyZhang et al.2025Paper

πŸ“Ί Courses & Video Lectures

#TitleSourceTypeLinks
1Stanford CS236: Deep Generative ModelsStefano Ermon et al.University CourseProject Page
2MIT 6.S978: Deep Generative ModelsKaiming He et al.University CourseProject Page
3MIT 6.S184: Introduction to Flow Matching and Diffusion ModelsPeter Holderrieth & Ezra ErivesUniversity CoursearXiv Project Page
4Diffusion Models CourseHugging FaceOnline CourseGitHub
5NeurIPS 2023 Workshop: Diffusion ModelsNeurIPSWorkshopProject Page
6Diffusion and Score-Based Generative ModelsYang SongLectureYouTube
7Two Minute Papers – Diffusion SeriesTwo Minute PapersYouTube SeriesYouTube
8Generative Modeling by Estimating Gradients of the Data DistributionYang SongBlog PostProject Page
9What are Diffusion Models?Lilian WengBlog PostProject Page

🧰 Interactive Demos & Tools

#ToolTypeWhat it’s great forLinks
1Stable Diffusion WebUI (AUTOMATIC1111)UI + ExtensionsLocal UI with huge plugin ecosystemGitHub
2InvokeAIPro UIStudio-style creative workflow & editingGitHub
3πŸ€— DiffusersLibraryClean Python API for diffusion inference & trainingGitHub
4Diffusers Playground (Hugging Face Spaces)Web demoTry many pipelines online (no local install)Project Page
5ComfyUINode-graph UIModular node-based pipelines for reproducible flowsGitHub
6StableStudio (Stability AI)Official UIFrontend for SDXL / stability modelsGitHub
7FooocusSimple UIOne-click text→image with SDXL supportGitHub
8kohya-ss / sd-scriptsTraining / FinetuneLoRA, DreamBooth, finetuning helpersGitHub
9ControlNetConditioning modelPose / edge / depth guided generationGitHub
10sd-webui-controlnetWebUI ExtensionEasy ControlNet integration for WebUIGitHub

πŸ“ Citation

If you find this article or repository helpful, please consider citing:

@article{qin-diffcomm,
    author  = {H. L. Qin and J. Dai and G. Lu and S. Shao and S. Wang and T. Xu and W. Zhang and P. Zhang and K. B. Letaief},
    title   = {Generative AI Meets 6G and Beyond: Diffusion Models for Semantic Communications},
    journal = {arXiv preprint arXiv:2511.08416},
    year    = {2025}
}

Related Papers from Our Group

@article{dai-gaicomm,
	author  = {J. Dai and X. Qin and S. Wang and L. Xu and K. Niu and P. Zhang},
	title   = {Deep Generative Modeling Reshapes Compression and Transmission: From Efficiency to Resiliency},
	journal = {IEEE Wireless Commun.},
	volume  = {31},
	number  = {4},
	pages   = {48--56},
	year    = {2024}
}
@article{wang-diffcom,
	author  = {S. Wang and J. Dai and K. Tan and X. Qin and K. Niu and P. Zhang},
	title   = {DiffCom: Channel Received Signal is a Natural Condition to Guide Diffusion Posterior Sampling},
	journal = {IEEE J. Sel. Areas Commun.},
	volume  = {43},
	number  = {7},
	pages   = {2651--2666},
	year    = {2025}
}
@article{qin-semcod,
    author  = {H. L. Qin and J. Dai and S. Wang and X. Qin and S. Shao and K. Niu and W. Xu and P. Zhang},
    title   = {Neural Coding is Not Always Semantic: Toward the Standardized Coding Workflow in Semantic Communications},
    journal = {IEEE Commun. Stand. Mag.},
    volume  = {9},
    number  = {4},
    pages   = {24--33},
    year    = {2025}
}
@article{tan-ditjscc,
    author  = {K. Tan and J. Dai and S. Wang and G. Lu and S. Shao and K. Niu and W. Zhang and P. Zhang},
    title   = {DiT-JSCC: Rethinking Deep JSCC with Diffusion Transformers and Semantic Representations},
    journal = {IEEE Trans. Cogn. Commun. Netw.},
    volume  = {12},
    pages   = {9247--9262},
    year    = {2026}
}

🌟 Acknowledgments

We thank the diffusion models and semantic communications research communities for their groundbreaking work. Special thanks to all and future contributors to this repository.

⭐ Star this repo if you find it useful! ⭐

Back to Top

Maintained with ❀️ by the community members:

Contributors

diffusion-model
semantic-communication

Contributors

qin-jingyun

16 commits

Endrother

2 commits

Languages

JavaScript

59.6%

HTML

22.0%

CSS

18.4%