2

我正在尝试使用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 列] 不是模块、类、方法、函数、回溯、框架或代码对象

有什么问题的线索吗?

谢谢!

4

1 回答 1

0

optim.minimize 的数据必须是方法,我猜你使用 numpy 数组作为 optim.minimize ('new_data') 的输入

new_data 应改为如下:

def new_data() :

  return x_train, y_train, x_test, y_test

best_run, best_model = optim.minimize(model=create_model, data=new_data, algo=tpe.suggest,max_evals=100, trials=Trials(), notebook_name='xxxxxx')
于 2021-03-10T02:39:47.213 回答