我正在尝试使用 Yellowbrick ManualAlphaSelection API 为没有 CV 的 Ridge 模型找到最佳 Alpha。我的代码非常基础,取自 Yellowbrick 的文档。即使它不起作用:
from yellowbrick.regressor import ManualAlphaSelection
from sklearn.linear_model import Ridge
model = ManualAlphaSelection(Ridge(), scoring='neg_mean_squared_error')
model.fit(X_train, y_train)
model.show()
Python 提出信息:'Ridge' 不是 CV 正则化模型;改用 ManualAlphaSelection。但是这个消息是错误的,因为 ManualAlphaSelection 已经被使用了。