added third experiment

This commit is contained in:
Thomas Gabor
2019-03-10 20:20:03 +01:00
parent b8c27e318c
commit 88e8b61d36
4 changed files with 60 additions and 10 deletions

View File

@ -41,7 +41,7 @@ with Experiment('fixpoint-density') as exp:
notable_nets = []
for _ in tqdm(range(exp.trials)):
net = net_generator().with_params(epsilon=exp.epsilon)
name = str(net.__class__.__name__) + " " + str(net.get_keras_params().get('activation'))
name = str(net.__class__.__name__) + " activiation='" + str(net.get_keras_params().get('activation')) + "' use_bias='" + str(net.get_keras_params().get('use_bias')) + "'"
count(counters, net, notable_nets)
all_counters += [counters]
all_notable_nets += [notable_nets]