1

我正在尝试优化sklearn.svm.LinearSVC使用hyperopt-sklearn的性能。我正在使用LinearSVC来预测 CIFAR-10 数据集的图像标签,并希望通过hyperopt能够提高性能。

但是,尽管多次运行,当我运行以下命令时:

model = HyperoptEstimator(classifier=hpc.svc_linear('mySVC'),
                           max_evals=10,trial_timeout=10)
model.fit(x,y)

我收到此错误:

AttributeError: 'hyperopt_estimator' object has no attribute '_best_preprocs'

这是一个错误,如hyperopt-sklearn GitHub 上的这个开放问题中所述,但没有解决方案。任何人都能够绕过这个错误?

4

0 回答 0