added two more experiments, now we possibly have all of them

This commit is contained in:
Thomas Gabor
2019-03-13 03:55:04 +01:00
parent 0bcc25121f
commit 5c7a646d69
8 changed files with 232 additions and 15 deletions

View File

@ -11,6 +11,9 @@ from experiment import *
from network import *
from soup import prng
import keras.backend
from statistics import mean
avg = mean
@ -70,8 +73,9 @@ with Experiment('known-fixpoint-variation') as exp:
still_fixpoint = False
time_to_something += 1
exp.xs += [current_scale]
exp.ys += [time_to_something]
exp.zs += [time_as_fixpoint]
exp.ys += [time_to_something] #time steps taken to reach divergence or zero (reaching another fix-point is basically never happening)
exp.zs += [time_as_fixpoint] #time steps still regarded as sthe initial fix-point
keras.backend.clear_session()
current_scale /= 10.0
for d in range(exp.depth):
exp.log('variation 10e-' + str(d))