IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> Adversarial examples in the physical world论文解读 -> 正文阅读

[人工智能]Adversarial examples in the physical world论文解读

摘要

大多数现有的机器学习分类器对于对抗样本而言都十分脆弱。

2 生成对抗样本的方法

这一节描述了我们在实验部分使用的生成对抗样本的方法。需要注意的是,上述方法都不能保证生成的图像会被错误分类。然而,我们称所有生成的图像为“对抗图片”。

在这篇文章的后面,我们使用如下的符号表示:

  • X X X:表示一个图片,通常是一个三维张量(width、height、depth)。在这篇文章中,我们假定像素的值均为整型数字,范围为[0,255]。
  • J ( X , y ) J(X,y) J(X,y):表示给定输入图片 X X X以及类别 y y y后神经网络的交叉熵损失函数。我们有意在损失函数中省略网络权重(和其他参数) θ \theta θ,因为我们假设它们是固定的(与训练机器学习模型得到的值相同)。对于具有softmax输出层的神经网络,the cross-entropy cost function applied to integer class labels equals the negative log-probability of the true class given the image: J ( X , y ) = ? log p ( y ∣ X ) J(X,y)=-\text{log}p(y|X) J(X,y)=?logp(yX),this relationship will be used below.
  • C l i p X , ? { X ′ } Clip_{X,\epsilon}\{X'\} ClipX,??{X}: function which performs per-pixel clipping of the image X ′ X' X, so the result will be in L ∞ ? ? L_{\infty}\ \epsilon L??? -neighbourhood of the source image X X X. The exact clipping equation is as follows:
    C l i p X , ? { X ′ } ( x , y , z ) = min ? { 255 , X ( x , y , z ) + ? , max ? { 0 , X ( x , y , z ) ? ? , X ′ ( x , y , z ) } } Clip_{X,\epsilon}\{X'\}(x,y,z)=\min\{255,X(x,y,z)+\epsilon,\max\{0,X(x,y,z)-\epsilon,X'(x,y,z)\}\} ClipX,??{X}(x,y,z)=min{255,X(x,y,z)+?,max{0,X(x,y,z)??,X(x,y,z)}}
    这里 X ( x , y , z ) X(x,y,z) X(x,y,z) is the value of channel z z z of the image X X X at coordinates ( x , y ) (x,y) (x,y)

2.1 快速方法

Goodfellow等人2014年提出的方法是生成对抗样本的最简单的方法之一,这种方法线性化了损失函数并且在 L ∞ L_{\infty} L?限定下最大化损失。This may be accomplished in closed form,for the cost of one call to back-propagation:

X a d v = X + ? sign ( ? X J ( X , y t r u e ) ) X^{adv}=X+\epsilon\text{sign}(\nabla_XJ(X,y_{true})) Xadv=X+?sign(?X?J(X,ytrue?))

这里 ? \epsilon ?是我们待选择的一个超参数。

在本文中我们称这种方法是“快”因为它并不需要一个迭代的过程来计算得到对抗样本,因此相比其他方法而言快得多。

2.2 Basic Iterative Method(BIM方法)

我们引入了一种直接的方法来拓展“快”方法——我们使用一个较小的步长多次应用这种方法,and clip pixel values of intermediate results after each step to ensure that they are in an ? ? \epsilon- ??neighborhood of the orignial image:

X 0 a d v + X , X N + 1 a d v = C l i p X , ? { X N a d v + α sign ( ? x J ( X N a d v , y t r u e ) ) } X_0^{adv}+X,\quad X_{N+1}^{adv}=Clip_{X,\epsilon}\{X_N^{adv}+\alpha\text{sign}(\nabla_xJ(X_N^{adv},y_{true}))\} X0adv?+X,XN+1adv?=ClipX,??{XNadv?+αsign(?x?J(XNadv?,ytrue?))}

在我们的实验设定中我们使用 α = 1 \alpha=1 α=1,即我们每步都将每个像素的值改变1。我们选择的迭代轮数为 min ? ( ? + 4 , 1.25 ? ) \min(\epsilon+4,1.25\epsilon) min(?+4,1.25?)。这一迭代轮数was chosen heuristically;it is sufficient for the adversrail example to reach the edge of the ? \epsilon ? max-norm ball but restricted enough to keep the computational cost of experiments manageable。

在后面我们将这种方法称为“基本迭代”方法。

2.3 iterative least-likely class method

待补充

3 对抗样本的图片

3.1 destruction rate of adversarial images

为了研究任意变换对对抗图像的影响,我们引入了destruction rate的概念。它可以被描述为在变换后不再被错误分类的敌对图像的比例。正式定义如下:

To study the influence of arbitrary transformations on adversarial images we introduce the notion of destruction rate. It can be described as the fraction of adversarial images which are no longer misclassified after the transformations. The formal definition is the following:

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2022-02-26 11:31:25  更:2022-02-26 11:34:26 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 19:32:38-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码