I am doing an efficient way to build neural network architectures and I am basing it on this work: https://towardsdatascience.com/a-guide-to-an-efficient-way-to-build-neural-network-architectures-part-i-hyper-parameter-8129009f131b https://github.com/maxpumperla/hyperas/blob/master/README.md#notebook-adjustment
but i have a problem with the finally part. when in the code ask me for notebook_name='simple_notebook'. i tried change name of folder or python file but dont work please help me
X_train, Y_train, X_val, Y_val = data()
best_run, best_model = optim.minimize(model=model,
data=data,
algo=tpe.suggest,
max_evals=5,
trials=Trials(),
notebook_name='simple_notebook')