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。
他们做了什么
- 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 阅读最新论文
- LoRA-GA$^2$: Low Rank Adaptation with Multi-step Gradient Adaptive Alignment在正式微调前先偷看几步训练的梯度,让LoRA的初始化更聪明
- Remember, Verify, or Ask? Cross-Family Evaluation of Memory Commitment in LLM AgentsAI助手在该向你提问的时候,却更愿意自己去核实事实
- Robust Incomplete Multimodal Sentiment Analysis via Iterative Proxy Correction文本信息缺失或损坏时,这个AI不靠一次性猜测,而是反复修正猜测结果,从而更准确地判断情绪
- Generating Diverse Personas for User Simulators to Test Interview Dialogue Systems要测试访谈式对话系统需要大量不同性格的虚拟用户,这项研究用大语言模型自动生成这些虚拟用户人设
- Rethinking Patch Based Multivariate Time Series Forecasting with Semantic Structured Partitioning别再机械切分时间序列,按语义把它切成有意义的块
- Reliable Financial Named Entity Recognition under Domain ShiftAI在正式文件里学到的自信,一到推特上就变得不可信
- Bringing analytic rigor to agentic AI for science: The Brain Researcher platform for neuroimaging data analysis让AI分析脑影像数据时,把“为什么这个结论可信”也一并记录下来
- GenMatch: An End-to-End Generative Matching Framework for Micro-View Order-Dispatching in Ride-Hailing滴滴把打车派单从预测-计算-匹配三段式流程改成一次生成完成,线上效果提升明显
METAL LAB 最新报道
图片来源: Michal A. Sterzel et al., arXiv:2608.19789, CC BY 4.0