第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

ValueError:發(fā)現(xiàn)樣本數(shù)量不一致的輸入變量:[218, 30]

ValueError:發(fā)現(xiàn)樣本數(shù)量不一致的輸入變量:[218, 30]

慕姐4208626 2023-06-13 10:42:01
我正在使用線性 SVC 進(jìn)行一些面部識(shí)別訓(xùn)練,我的數(shù)據(jù)集是 870x22。我有 29 個(gè)不同的人的 30 幀,我在圖像中使用 22 個(gè)簡(jiǎn)單值像素來(lái)識(shí)別面部圖像,說(shuō) 22 個(gè)像素是我的特征。此外,當(dāng)我調(diào)用 train_test_split() 時(shí),它會(huì)給我一個(gè)大小為 218x22 的 X_test 和大小為 218 的 y_test。一旦我訓(xùn)練了分類(lèi)器并嘗試運(yùn)行新面孔 (30x22) 矩陣的圖像,它就會(huì)給我錯(cuò)誤:ValueError: Found input variables with inconsistent numbers of samples: [218, 30]這是代碼:import sklearnfrom sklearn.model_selection import train_test_splitfrom sklearn import metricsfrom sklearn.svm import SVCfrom sklearn.metrics import confusion_matrixfrom sklearn.metrics import accuracy_score, f1_score? ? img_amount = 30? ? target = np.asarray([1]*img_amount + [2]*img_amount + [3]*img_amount + [4]*img_amount + [5]*img_amount + [6]*img_amount + [7]*img_amount + [8]*img_amount + [9]*img_amount + [10]*img_amount + [11]*img_amount + [12]*img_amount + [13]*img_amount + [14]*img_amount + [15]*img_amount + [16]*img_amount + [17]*img_amount + [18]*img_amount + [19]*img_amount + [20]*img_amount + [21]*img_amount + [22]*img_amount + [23]*img_amount + [24]*img_amount + [25]*img_amount + [26]*img_amount + [27]*img_amount + [28]*img_amount + [29]*img_amount)? ?? ? dataset= dataset[:, 0:22]? ? ? ??? ? ? ? svc_1 = SVC(kernel='linear', C=0.00005)? ? ? ? X_train, X_test, y_train, y_test = train_test_split( dataset, target, test_size=0.25, random_state=0)? ? ? ??? ? ? ? def train(clf, X_train, X_test, y_train, y_test):? ? ? ? ? ??? ? ? ? ? ? clf.fit(X_train, y_train)? ? ? ? ? ? print ("Accuracy on training set:")? ? ? ? ? ? print (clf.score(X_train, y_train))? ? ? ? ? ? print ("Accuracy on testing set:")? ? ? ? ? ? print (clf.score(X_test, y_test))? ? ? ? ? ??? ? ? ? ? ? y_pred = clf.predict(X_test)? ? ? ? ? ??? ? ? ? ? ? print ("Classification Report:")? ? ? ? ? ? print (metrics.classification_report(y_test, y_pred))? ? ? ? ? ? print ("Confusion Matrix:")? ? ? ? ? ? print (metrics.confusion_matrix(y_test, y_pred))
查看完整描述

1 回答

?
LEATH

TA貢獻(xiàn)1936條經(jīng)驗(yàn) 獲得超7個(gè)贊

這是問(wèn)題所在:


predictions = svc_1.predict(new_face_image) 

print ("Confusion Matrix:")

print (metrics.confusion_matrix(y_test, predictions))

您正在預(yù)測(cè) new_face_image 并使用您的測(cè)試數(shù)據(jù)集對(duì)其進(jìn)行預(yù)測(cè)。


predictions = svc_1.predict(new_face_image) 

# change this to what you expect but shape=(30,)

expected=np.ones(len(new_face_image))

print ("Confusion Matrix:")

print (metrics.confusion_matrix(expected, predictions))

編輯以使用數(shù)據(jù)集測(cè)試數(shù)據(jù)進(jìn)行驗(yàn)證:


predictions = svc_1.predict(x_test) 

print ("Confusion Matrix:")

print (metrics.confusion_matrix(y_test, predictions))


查看完整回答
反對(duì) 回復(fù) 2023-06-13
  • 1 回答
  • 0 關(guān)注
  • 161 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)