“Skor validasi silang Sklearn” Kode Jawaban

Skor validasi silang Sklearn

from sklearn.model_selection import cross_val_score
scores = cross_val_score(classifier_logreg, X_train, y_train, cv = 5, scoring='accuracy')
print('Cross-validation scores:{}'.format(scores))
print('Average cross-validation score: {}'.format(scores.mean()))
Xanthous Xenomorph

Skor validasi silang Sklearn

from sklearn.linear_model import RidgeClassifier
from sklearn.model_selection import cross_val_score

clf = RidgeClassifier() # estimator
score = cross_val_score(clf, X, y, cv=5)

# By default, the score computed at each CV iteration is the score
# method of the estimator. It is possible to change this by using 
# the scoring parameter:

scores = cross_val_score(clf, X, y, cv=5, scoring='f1_macro')
Arthur Elskens

Jawaban yang mirip dengan “Skor validasi silang Sklearn”

Pertanyaan yang mirip dengan “Skor validasi silang Sklearn”

Lebih banyak jawaban terkait untuk “Skor validasi silang Sklearn” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya