我正在尝试使用Hyperas中的optim.minimize。运行的代码是google colab,python 3 + GPU。
当我运行这个:
best_run, best_model = optim.minimize(model=create_model, data=new_data, algo=tpe.suggest,max_evals=100, trials=Trials(), notebook_name='xxxxxx')
抛出此错误:
……
/usr/lib/python3.6/inspect.py in getfile(object)
664 return object.co_filename
665 raise TypeError('{!r} is not a module, class, method, '
--> 666 'function, traceback, frame, or code object'.format(object))
类型错误:
[6743 行 x 10 列] 不是模块、类、方法、函数、回溯、框架或代码对象
有什么问题的线索吗?
谢谢!