We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35f364f commit 7767d82Copy full SHA for 7767d82
chapter11/feature_selection.py
@@ -35,5 +35,5 @@
35
# Estimate accuracy on the data set with k selected features
36
classifier = SVC(gamma=0.005)
37
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}')
+ print(f'Score with the dataset of top {k} features: {score_k_features:.2f}')
39
0 commit comments