Skip to content

Commit 7767d82

Browse files
committed
Changed from data set to dataset in feature_selection.py in chapter 11.
1 parent 35f364f commit 7767d82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapter11/feature_selection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
# Estimate accuracy on the data set with k selected features
3636
classifier = SVC(gamma=0.005)
3737
score_k_features = cross_val_score(classifier, X_k_selected, y).mean()
38-
print(f'Score with the data set of top {k} features: {score_k_features:.2f}')
38+
print(f'Score with the dataset of top {k} features: {score_k_features:.2f}')
3939

0 commit comments

Comments
 (0)