shchae7 / dnn_verification

Repo containing scripts to install & use various DNN verification methods

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dnn Verification Tools

Repository containing scripts to install, and use

(Note: all the installations are done without sudo privileges) Tested on Centos 7

Installation

To install tools currently supported, execute

sh ./scripts/install.sh install reluplex marabou ...

Experiments

ACAS Xu Experiments

Based on the definitions provided by Reluplex: An Efficient SMT Solver for Verifying Deep Neural Networks
Currently available properties

Tool Description
Reluplex 1,2,3,4,5,6,7,8,9,10
Marabou 2,3,4,5,6,9,10
ReluVal(Neurify) 1,2,3,4,5,6,7,8,9,10
ERAN 2,3,4,5,6,9,10
NNV

ACAS Xu DNNs provided in resources/acasxu directory in nnet and onnx format.
nnet: from /Marabou/resources/nnet/acasxu/
onnx: converted from the above nnet files using the nnet2onnx converter from NNet repository.

Repository Tree

.
├── README.md
├── resources
│   └── acasxu
│       ├── nnet
│       │   ├── ACASXU_experimental_v2a_1_1.nnet
│       │   ├── ...
│       ├── onnx
│       │   ├── ACASXU_experimental_v2a_1_1.onnx
│       │   ├── ...
│       └── properties
│           ├── eran
│           │   ├── property2_constraints.txt
│           │   ├── property2_input_prenormalized.txt
│           │   ├── ...
│           ├── marabou
│           │   ├── property2.txt
│           │   ├── ...
│           ├── reluplex
│           │   └── properties.md
│           └── reluval
│               └── properties.md
├── scripts
│   ├── exec
│   ├── installation
│   └── utils
│       ├── marabou
│       │   ├── run_property1.sh
│       │   ├── ...
│       └── maraboudnc
│           ├── run_property1.sh
│           ├── ...
├── slurm_scripts
│   ├── deeppoly
│   ├── marabou
│   │   ├── prop1.slurm.sh
│   │   ├── ...
│   ├── maraboudnc
│   │   ├── prop1.slurm.sh
│   │   ├── ...
│   ├── reluplex
│   │   ├── prop1.slurm.sh
│   │   ├── ...
│   └── reluval
│       ├── prop1.slurm.sh
│       ├── ...
├── tools
│   ├── acasxu_nnet2onnx.sh
│   └── nnet2onnx.py
└── verifiers

References

DNNV (https://github.com/dlshriver/DNNV)
NNet (https://github.com/sisl/NNet)
How to install ERAN on Linux without sudo

About

Repo containing scripts to install & use various DNN verification methods


Languages

Language:Shell 93.1%Language:Python 6.9%