in experiments.py [0:0]
def makeExp(name, conf, sz, test=False):
NENT, NPOP = sz, sz//16
ROOT = 'resource/exps/' + name + '/'
try:
os.mkdir(ROOT)
os.mkdir(ROOT + 'model')
os.mkdir(ROOT + 'train')
os.mkdir(ROOT + 'test')
except FileExistsError:
pass
MODELDIR = ROOT + 'model/'
exp = conf(remote,
NENT=NENT, NPOP=NPOP,
MODELDIR=MODELDIR,
SAMPLE=sample,
BEST=best,
LOAD=load,
TEST=test)
exps[name] = exp
print(name, ', NENT: ', NENT, ', NPOP: ', NPOP)