File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -688,15 +688,19 @@ Main Takeway points
688688
689689- Supervised learning: ``clf.fit(X, y) `` and then ``clf.predict(X_new) ``
690690
691- - classification : ``y `` is an array of integers
691+ - Classification : ``y `` is an array of integers
692692
693- - regression : ``y `` is an array of floats
693+ - Regression : ``y `` is an array of floats
694694
695695- Unsupervised learning: ``clf.fit(X) ``
696696
697- - dimensionality reduction with ``clf.transform(X_new) ``
697+ - Dimensionality Reduction with ``clf.transform(X_new) ``
698698
699- - clustering to find group id for each sample
699+ - for visualization
700+
701+ - for scalability
702+
703+ - Clustering finds group id for each sample
700704
701705- Some models work much better with data normalized with PCA
702706
@@ -705,7 +709,7 @@ Main Takeway points
705709- Simple linear models often very useful in practice (esp. with
706710 large ``n_features ``)
707711
708- - Before starting training models, split train / test data:
712+ - Before starting to training a model: split train / test data:
709713
710714 - use training set for model selection and fitting
711715
You can’t perform that action at this time.
0 commit comments