added AggegratedNeuralNetwork and FixpointExperiment

This commit is contained in:
Thomas Gabor
2019-03-03 02:58:20 +01:00
parent 3b0953c741
commit 865e3c4f36
2 changed files with 157 additions and 48 deletions

View File

@ -18,6 +18,10 @@ class Experiment:
self.base_dir = os.path.realpath((os.path.dirname(this_file) + "/..")) + "/"
self.next_iteration = 0
self.log_messages = []
self.initialize_more()
def initialize_more(self):
pass
def __enter__(self):
self.dir = self.base_dir + "experiments/exp-" + str(self.experiment_name) + "-" + str(self.experiment_id) + "-" + str(self.next_iteration) + "/"