AttributeError Traceback (most recent call last)
<ipython-input-9-c527140e2475> in <module>()
----> 1 (x_train, y_train), (x_test, y_test) = fetch_lfw_people.load_data()
AttributeError: 'function' object has no attribute 'load_data'
答案 0 :(得分:0)
正如我在上面评论的那样,提供minimal reproducible example被认为是最佳实践,这样其他人可以识别出哪里可能出错了。尽管如此,我认为official documentation上的描述可能正是您想要的。 fetch_lfw_people
函数的参数之一是return_X_y
:
return_X_y:布尔值,默认为False。
如果为True,则返回(dataset.data,dataset.target)而不是Bunch对象。
根据此描述,您可能想尝试类似的
(X, y) = fetch_lfw_people(return_X_y=True)
当然,您可以根据需要指定其他任何参数。