gpt4 book ai didi

python - SkLearn : ValueError shapes not aligned during prediction

转载 作者:太空宇宙 更新时间:2023-11-03 11:12:35 24 4
gpt4 key购买 nike

我正在构建一个为文本描述分配多个标签/标签的程序。我正在使用 MultiOutputRegressor 来标记我的文本描述。当我预测一个向量化文本数组时,在最后一行 (y_pred = clf.predict(yTest)) 中弹出以下错误:

ValueError: shapes (74,28) and (3532,2) not aligned: 28 (dim 1) != 3532 (dim 0)

下面是我的代码:

textList = df.Text
vectorizer2 = TfidfVectorizer(stop_words=stopWords)
vectorizer2.fit(textList)
x = vectorizer2.transform(textList)

tagList = df.Tags
vectorizer = MultiLabelBinarizer()
vectorizer.fit(tagList)
y = vectorizer.transform(tagList)

print("x.shape = " + str(x.shape))
print("y.shape = " + str(y.shape))

xTrain, xTest, yTrain, yTest = train_test_split(x, y, test_size=0.50)

nb_clf = MultinomialNB()
sgd = SGDClassifier()
lr = LogisticRegression()
mn = MultinomialNB()

xTrain = csr_matrix(xTrain).toarray()
xTest = csr_matrix(xTest).toarray()
yTrain = csr_matrix(yTrain).toarray()

print("xTrain.shape = " + str(xTrain.shape))
print("xTest.shape = " + str(xTest.shape))
print("yTrain.shape = " + str(yTrain.shape))
print("yTest.shape = " + str(yTest.shape))

for classifier in [nb_clf, sgd, lr, mn]:
clf = MultiOutputRegressor(classifier)
clf.fit(xTrain, yTrain)
y_pred = clf.predict(yTest)

下面是形状的打印语句:

x.shape = (147, 3532)
y.shape = (147, 28)
xTrain.shape = (73, 3532)
xTest.shape = (74, 3532)
yTrain.shape = (73, 28)
yTest.shape = (74, 28)

最佳答案

这可能只是因为您将 yTest 作为 clf.test() 的输入而不是 xTest

关于python - SkLearn : ValueError shapes not aligned during prediction,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57388144/

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