TT-net: Quantum Inspired Tensor Network Denoising in Conditional GANs
让图像各通道互相比对信息,GAN去噪效果更好
这篇论文提出了TT-Net,用张量列车分解(一种源自量子多体物理模拟的技术)替换了以往条件GAN去噪模型中使用的SVD(奇异值分解,一种将矩阵拆解压缩的线性代数工具)滤波模块。此前的SVD-Net对特征图的每个通道单独做分解,通道之间完全无法比较信息,而TT-Net通过两步分解让不同通道的信息可以相互对照。在CIFAR-10图像上分别加入高斯噪声、运动模糊和椒盐噪声进行测试,TT-Net在全部三种噪声下的PSNR和SSIM指标均优于SVD-Net。
METAL MEDIA 解读图
让图像各通道互相比对信息,GAN去噪效果更好
- 01SVD-Net对特征图的每个通道单独做SVD分解,无法利用通道间的关联;TT-Net改用两步张量列车分解,让通道信息可以直接互相比较
- 02实验采用受控对比:生成器、判别器和训练设置完全一致,唯一变化的是去噪模块从SVD换成张量列车分解
- 03相比SVD-Net,TT-Net在高斯噪声上PSNR提升2.68dB、SSIM提升0.0513,运动模糊上PSNR提升8.32dB、SSIM提升0.3798,椒盐噪声上PSNR提升0.99dB、SSIM提升0.0165
- 04在高斯噪声测试中,TT-Net的表现也超过了作为参照对比的EigenGAN以及当前较先进的Pix2pix方法
- 05TT-Net的对抗损失项在三种噪声下都很早就趋于停滞,但图像重建质量仍持续提升,这留下了一个尚未解决的问题:对抗训练部分究竟发挥了多大作用
他们做了什么
- SVD-Net对特征图的每个通道单独做SVD分解,无法利用通道间的关联;TT-Net改用两步张量列车分解,让通道信息可以直接互相比较
- 实验采用受控对比:生成器、判别器和训练设置完全一致,唯一变化的是去噪模块从SVD换成张量列车分解
- 相比SVD-Net,TT-Net在高斯噪声上PSNR提升2.68dB、SSIM提升0.0513,运动模糊上PSNR提升8.32dB、SSIM提升0.3798,椒盐噪声上PSNR提升0.99dB、SSIM提升0.0165
- 在高斯噪声测试中,TT-Net的表现也超过了作为参照对比的EigenGAN以及当前较先进的Pix2pix方法
- TT-Net的对抗损失项在三种噪声下都很早就趋于停滞,但图像重建质量仍持续提升,这留下了一个尚未解决的问题:对抗训练部分究竟发挥了多大作用


| Insertion point | Channels | Height | Width |
|---|---|---|---|
| After 1st encoder stage | 64 | 32 | 32 |
| After 2nd encoder stage | 128 | 16 | 16 |
| After 3rd encoder stage | 256 | 8 | 8 |


| Model | lr (G, D) | β1 | β2 | Optimizer |
|---|---|---|---|---|
| Pix2pix | 2×10−4 | 0.5 | 0.999 | Adam |
| EigenGAN | 2×10−3 | 0.5 | 0.999 | Adam |
| SVD-Net | 1×10−4 | 0.9 | 0.999 | Adam |
| TT-Net | 1×10−4 | 0.9 | 0.999 | Adam |


| Gaussian | Motion Blur | Salt & Pepper | ||||
|---|---|---|---|---|---|---|
| Model | PSNR | SSIM | PSNR | SSIM | PSNR | SSIM |
| Pix2pix | 25.52 | 0.7466 | 36.18 | 0.9643 | 41.79 | 0.9881 |
| EigenGAN | 25.18 | 0.7545 | 26.71 | 0.8398 | 34.24 | 0.9513 |
| SVD-Net | 23.60 | 0.7455 | 18.02† | 0.4260† | 28.98 | 0.8761 |
| TT-Net | 26.28 | 0.7968 | 26.34 | 0.8058 | 29.97 | 0.8926 |

为什么重要
这项工作说明,只需针对性地改进去噪机制、让模型能够比较不同通道的信息,就能在不改变GAN整体框架的情况下明显提升图像修复质量。它也展示了原本用于模拟量子系统的张量网络工具,可以作为实用的特征滤波器应用到真实的深度学习任务中。
本文术语
- 张量列车(Tensor Train) · 将多维数组(张量)拆解为一系列小矩阵乘积的方法,在量子物理中也称为矩阵乘积态
- SVD(奇异值分解) · 将一个矩阵拆分成三个较简单矩阵乘积的线性代数方法,常用于保留矩阵中最重要的信息
- GAN(生成对抗网络) · 由生成图像的生成器和判断真假的判别器相互对抗训练组成的模型
- PSNR/SSIM · 衡量修复图像与原始图像相似程度的常用指标,数值越高表示效果越好
- 判别器崩溃 · 训练过程中判别器压制生成器,导致生成结果质量突然大幅下降的现象
论文原文摘要(英文)
Developed as a workhorse for classical simulations of quantum algorithms and quantum many-body systems, Tensor Network methods have entered the scientific mainstream in quantum physics. Among various types of tensor networks, Tensor Trains (commonly know as Matrix Product States in the quantum computing community) have already found applications in machine learning. These methods often rely on a powerful linear algebra tool called the Singular Value Decomposition (SVD). Several conditional GAN architectures for image denoising incorporate SVD as a single-cut decomposition step applied to generator feature maps. In this work we introduce TT-Net, which replaces the per-channel SVD denoising block with a two-cut tensor-train decomposition capable of accessing cross-channel information directly, a capability absent from contemporary alternatives. In a controlled comparison differing only in this decomposition mechanism, TT-Net outperforms SVD-Net on PSNR and SSIM across all three noise types tested (Gaussian, motion blur, and salt-and-pepper), supporting the hypothesis that cross-channel access improves denoising quality. Training-dynamics analysis further shows that TT-Net's adversarial loss term consistently saturates to a stagnant state across all three noise types, more so than SVD-Net's, while reconstruction quality continues to improve regardless, raising an open question about the adversarial component's contribution that this work identifies but does not resolve. Furthermore, for Gaussian noise our method outperforms both the EigenGAN and the state of the art Pix2pix method which does not assume any linear algebra decompositions and does not retain any linear algebra information. Our manuscript shows how quantum inspired tools can be used as practical real world feature filters for deep learning applications.
在 arXiv 阅读最新论文
- SWE-bench Science: Can Coding Agents Resolve Engineering Tasks in Science?让AI编程助手去修复真实科学软件,连最强的那个也有一半以上任务没做对
- FlashPrefill V2: Block-Sparse Prefill Attention for Long-Context LLM Serving把稀疏注意力从论文原型变成能真正上线服务的加速方案
- PolicyGuide: From Guarding One Action to Guiding the Whole Workflow for Policy-Compliant LLM Agents让客服AI坐席不只是拦住一个危险动作,而是把整个流程走对
- EXIMO: VLM Guided Exploration of VLA Policies不用人工遥控演示,让会说话的AI来教机械臂做新家务
- EnvHarness: Awakening Static Worlds for Agent Learning不重新搭建训练环境,而是给现有环境套一层可插拔组件,针对每个智能体的具体弱点重新塑形
- Bounded Sovereignty and the Control Tax: Pricing AI Oversight When the Deployer Does Not Own the Model租用AI而非拥有AI的机构,安全监管能力只剩一半
- Beyond Imitation: Filtering On-Policy Distillation by Reasoning ProgressAI模仿老师模型学习时,会误伤本来推理正确的步骤,新方法专门过滤掉这种误伤
- PersonalBench: Measuring the Authorship Gap in LLM Personalization让AI模仿某人的文风,结果发现它始终摆脱不了自己的腔调
METAL MEDIA 最新报道
图片来源: Michal A. Sterzel et al., arXiv:2608.19789, CC BY 4.0