Skip to content

Commit

Permalink
clear merge
Browse files Browse the repository at this point in the history
  • Loading branch information
MekAkUActOR committed Nov 26, 2022
1 parent 5c8665d commit fe969a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/verifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,17 +275,17 @@ def main():

inputs, true_label, eps = get_spec(args.spec, dataset)
net = get_net(args.net, net_name)
# print(net)
print(net)

outs = net(inputs)
pred_label = outs.max(dim=1)[1].item()
assert pred_label == true_label
# '''
'''
if analyze(net, inputs, eps, true_label):
print('verified')
else:
print('not verified')
# '''
'''

if __name__ == '__main__':
main()

0 comments on commit fe969a1

Please sign in to comment.