gpt4 book ai didi

python - fit() 得到了一个意外的关键字参数 'criterion'

转载 作者:太空宇宙 更新时间:2023-11-04 00:28:30 24 4
gpt4 key购买 nike

我正在使用 sklearn.tree.DecisionTreeClassifier here是它的链接。我想使用关键字 criterion 并将其设置为 "entropy"

我做了以下事情:

model = DecisionTreeClassifier()
model.fit(X_train, y_train, criterion = "entropy")

但它给出了这个错误:

---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-103-509174b2caad> in <module>()
1 model = DecisionTreeClassifier()
----> 2 model.fit(X_train, y_train, criterion = "entropy")

TypeError: fit() got an unexpected keyword argument 'criterion'

使用默认参数 'gini' 可以正常工作,但不能使用这个。

最佳答案

你可能想要

model = DecisionTreeClassifier(criterion="entropy")
model.fit(X_train, y_train)

关于python - fit() 得到了一个意外的关键字参数 'criterion',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46628837/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com