We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7767d82 commit 542ededCopy full SHA for 542eded
chapter11/dimensionality_reduction.py
@@ -23,4 +23,4 @@
23
# Estimate accuracy on the data set with top n components
24
classifier = SVC(gamma=0.005)
25
score_n_components = cross_val_score(classifier, X_n_kept, y).mean()
26
- print(f'Score with the data set of top {n} components: {score_n_components:.2f}')
+ print(f'Score with the dataset of top {n} components: {score_n_components:.2f}')
0 commit comments