我正在采取一种有效的方式来构建神经网络架构,并且基于这项工作: https ://towardsdatascience.com/a-guide-to-an-efficient-way-to-build-neural-network-architectures-部分-i-hyper-parameter-8129009f131b https://github.com/maxpumperla/hyperas/blob/master/README.md#notebook-adjustment
但我对最后的部分有疑问。在代码中问我 notebook_name='simple_notebook'。我尝试更改文件夹或 python 文件的名称但不起作用请帮助我
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')