当前位置: 首页 > article >正文

PyTorch随笔 - Glow: Generative Flow with Invertible 1×1 Convolutions

欢迎关注我的CSDN:https://spike.blog.csdn.net/
本文地址:https://blog.csdn.net/caroline_wendy/article/details/129939225

论文:Glow - Generative Flow with Invertible 1×1 Convolutions

  • 作者Kingma,来源于OpenAI,2018.7.10
  • 最早的Flow Paper,承上启下

摘要:

Flow-based generative models (Dinh et al., 2014) are conceptually attractive due to tractability of the exact log-likelihood, tractability of exact latent-variable inference, and parallelizability of both training and synthesis.

  • 基于流的生成模型(Dinh et al., 2014)在概念上具有吸引力,因为可以精确地计算对数似然值,可以精确地推断隐变量,而且训练和合成都可以并行化。

In this paper we propose Glow, a simple type of generative flow using an invertible 1 × 1 convolution.

  • 在本文中,我们提出了一种简单的生成流类型,使用可逆的 1 × 1 卷积。

Using our method we demonstrate a significant improvement in log-likelihood on standard benchmarks.

  • 使用我们的方法,我们在标准的基准测试上展示了对数似然值的显著提高。

Perhaps most strikingly, we demonstrate that a generative model optimized towards the plain log-likelihood objective is capable of efficient realisticlooking synthesis and manipulation of large images.

  • 也许最引人注目的是,我们展示了一种优化了普通对数似然目标的生成模型,能够有效地合成和操作大型图像,并且看起来很真实。”

1x1卷积主要作用是通道融合。Flow-based Generative Models,基于流的生成模型。PDF,Probability Density Function,概率密度函数;CDF,Cumulative Distribution Function,累积分布函数

标准流,可见数据分布转换为标准分布。
flow

概率密度函数:
PDF

输入 x -> log-det1(变换) -> z -> log-det2(变换) -> x,则 log-det1 + log-det2 = 0,即相反数的关系。

置换矩阵,行列式是0,三角矩阵(上三角或下三角都是0),对角线元素相乘,log就是对角线元素相加,即:

置换矩阵

Multi-scale architecture,Flow:Actnorm、Invertible 1x1 Conv、Affine coupling layer

Multi-scale architecture

函数和逆函数,以及对数行列式(对数似然的增量),NN是非线性变换(神经网络), ⊙ \odot 表示element-wise操作,即Hadamard product

  • x, y 都长度为c的向量

components

[x1, x2, x3] ⊙ \odot [w1, w2, w3] = [y1, y2, y3],初始的y是服从标准分布。

Jacobi矩阵

[ w 1 0 0 0 w 2 0 0 0 w 3 ] \begin{bmatrix} w_{1} & 0 & 0\\ 0 & w_{2} & 0\\ 0 & 0 & w_{3}\\ \end{bmatrix} w1000w2000w3

1x1的卷积操作,即一个点乘操作,一个矩阵操作。LU Decomposition(分解),L是下三角矩阵,U是上三角矩阵,复杂度从 O ( C 3 ) O(C^{3}) O(C3)降低为 O ( C ) O(C) O(C)

LU Decomposition

Affine Coupling Layer,仿射耦合层,Jacobi矩阵是分块矩阵,左上角和右上角有关。简易图如下:

Affine Coupling Layer

关于Real NVP,即real-valued Non-Volume Preserving,实值非体积保持。

  • Paper:Density Estimation using real NVP,来源于Google Brain

摘要:

Unsupervised learning of probabilistic models is a central yet challenging problem in machine learning. Specifically, designing models with tractable learning, sampling, inference and evaluation is crucial in solving this task. We extend the space of such models using real-valued non-volume preserving (real NVP) transformations, a set of powerful, stably invertible, and learnable transformations, resulting in an unsupervised learning algorithm with exact log-likelihood computation, exact and efficient sampling, exact and efficient inference of latent variables, and an interpretable latent space. We demonstrate its ability to model natural images on four datasets through sampling, log-likelihood evaluation, and latent variable manipulations.

  • 无监督学习概率模型是机器学习中一个核心而又具有挑战性的问题。具体来说,设计具有可处理的学习、采样、推理和评估的模型是解决这一任务的关键。我们使用实值非体积保持(real NVP)变换,一种强大、稳定可逆、可学习的变换,扩展了这类模型的空间,从而得到了一种无监督学习算法,该算法可以精确地计算对数似然,精确而高效地进行采样,精确而高效地推断潜在变量,并且具有可解释的潜在空间。我们通过在四个数据集上进行采样、对数似然评估和潜在变量操作,展示了它对自然图像建模的能力。

其中,Multi-scale architecture, z i z_{i} zi的相关计算,即:

Real NVP

Flow也可以引入条件生成。


http://www.kler.cn/a/7616.html

相关文章:

  • C++各类函数评点+详解
  • 【Redis】Redis的一些应用场景及使用策略
  • 【全面系统性介绍】虚拟机VM中CentOS 7 安装和网络配置指南
  • DB-GPT系列(四):DB-GPT六大基础应用场景part1
  • vue 项目使用 nginx 部署
  • Flutter下拉刷新上拉加载的简单实现方式二
  • springboot(07)邮件发送(qq邮箱)
  • 大地量子与亚马逊云科技合作,为新能源业务的发展提供更多的最佳实践
  • P1010 [NOIP1998 普及组] 幂次方
  • JAVASE 继承
  • 【python+requests】接口自动化测试
  • try catch的应用
  • python--虚拟环境搭建(使用命令安装)
  • 【ESP-IDF】你好世界
  • “智慧”的大楼,为啥落地这么难?
  • Java GenericObjectPool 对象池化技术--SpringBoot sftp 连接池工具类
  • 有些人失业是必然的,AIGC使用两周后体验
  • Python 3.7 有什么新变化 - 其他语言更改新模块
  • Python中request与Requests.request与session.reauest,session.reauest实现自动关联
  • 【第一节】- flink源码编译
  • USB土壤参数检测仪丨便捷、全面、耐用
  • fiddler(抓包)的用法和HTTP 协议的基本格式
  • 科特ECTN快捷办理
  • LinkedHashMap源码分析以及LRU的应用
  • 厉害了!Facebook优惠广告让你的广告预算翻倍
  • 华为OD机试-统一限载最小值-2022Q4 A卷-Py/Java/JS