-
Notifications
You must be signed in to change notification settings - Fork 7
/
constants.py
37 lines (31 loc) · 1 KB
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# ! Please change the following two path strings to you own one !
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
ELINA_PYTHON_INTERFACE_PATH = '/home/xxxxx/pkgs/ELINA/python_interface'
DEEPG_CODE_PATH = '/home/xxxxx/pkgs/deepg/code'
NORM_TYPES = ['0', '1', '2', 'inf']
DATASETS = ["imagenet", "cifar10", "mnist"]
METHOD_LIST = ['Clean',
'PGD',
'CW',
'MILP',
'FastMILP',
'PercySDP',
'FazlybSDP',
'AI2',
'RefineZono',
'LPAll',
'kReLU',
'DeepPoly',
'ZicoDualLP',
'CROWN',
'CROWN_IBP',
'CNNCert',
'FastLin_IBP',
'FastLin',
'FastLinSparse',
'FastLip',
'RecurJac',
'Spectral',
'IBP',
'IBPVer2']