Skip to content

Uno-Takashi/Universal-Adversarial-Perturbation-for-faster-and-higher-error-rate

Repository files navigation

Universal adversarial perturbations for fast and high error rate

This repos extended Universal Adversarial Perturbation to fast and high error rate in small data.

Only Python3.x ver included.

python: Python3.x code to generate universal perturbations using TensorFlow.Required library is written requirements.txt .

Usage

Get started

To get started, you can run the demo code to apply a pre-computed universal perturbation for Inception on the image of your choice

python demo_inception.py -i data/test_img.png	

This will download the pre-trained model, and show the image without and with universal perturbation with the estimated labels. In this example, the pre-computed targeted universal perturbation in data/universal.npy is used. This Perturbation targeted kit fox class.

Computing a universal perturbation for your model

To compute a universal perturbation for your model, please follow the same struture as in demo_inception.py. In particular, you should use the universal_perturbation function (see universal_pert.py for details), with the set of training images used to compute the perturbation, as well as the feedforward and gradient functions.

Reference

[1] S. Moosavi-Dezfooli*, A. Fawzi*, O. Fawzi, P. Frossard: Universal adversarial perturbations, CVPR 2017.

日本語ドキュメント

概要

このリポジトリは、Universal Adversarial Perturbationを元とし、より少ない入力情報で、同様の性質を持つ摂動を高速に生産することが可能なアルゴリズムを実装しています。

prepare_graph

上記の表は一般的なUniversal Adversarial Perturbationの生成アルゴリズムとこのリポジトリにおいて用いられているアルゴリズムによって得られる摂動の使用画像数ごとの比較である。 この結果を見ると基本的に提案手法のほうがより少ない枚数でも高いエラー率の摂動を獲得していることが見て取れる。

ただし、完全な上位互換というわけではない。各画像に対する多重度Mをパラメータとして設定しなくてはならない。多重度Mは整数値を取り、Mを変化させた場合のエラー率の推移は次のグラフに示す。実装では多重度Mは引数search_dimに該当する。

graph

このグラフを見ると、多重度は高ければ高いほど良いというわけではなく画像数に対する適切なパラメータを設定しなくては有効な摂動の生成は難しく、パラメータの探索コストが増えたともいえる。

しかしながら、実験したすべての画像数において、高い既存手法に比べ高いエラー率を出すことのできるパラメータが存在している。

About

clac universal adversarial perturbation for fast and high error rate

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages