0

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')
pepoBKN
  • 11
  • 4
  • Could you show or describe the error you are getting? – catasaurus Feb 12 '22 at 00:56
  • SyntaxError Traceback (most recent call last) [... skipping hidden 1 frame] ~\AppData\Local\Temp/ipykernel_1956/292979561.py in 6 trials=Trials(), ----> 7 notebook_name='simple_notebook') UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf3 in position 1184: invalid continuation byte – pepoBKN Feb 14 '22 at 11:53
  • make sure that this is the name of your file as indicated in the [documentation](https://github.com/maxpumperla/hyperas/blob/master/README.md#notebook-adjustment) – user11717481 Feb 22 '22 at 16:13

0 Answers0