File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
doc/tutorial/text_analytics Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -536,3 +536,32 @@ English.
536536Bonus point if the utility is able to give a confidence level for its
537537predictions.
538538
539+
540+ Where to From Here
541+ ------------------
542+
543+ Here are a few suggestions to help further your scikit-learn intuition
544+ upon the completion of this tutorial:
545+
546+
547+ - Try playing around with the `analyzer ` and `token normalisation ` under
548+ :class: `CountVectorizer `
549+
550+ - If you don't have labels, try using
551+ :ref: `Clustering <example_document_clustering.py >`
552+ on your problem.
553+
554+ - If you have multiple labels per document, e.g categories, have a look
555+ at the :ref: `Multiclass and multilabel section <multiclass >`
556+
557+ - Try using :ref: `PCA (Principal Component Analysis) <decompositions >` for
558+ `latent semantic analysis <http://en.wikipedia.org/wiki/Latent_semantic_analysis >`_.
559+
560+ - Have a look at using
561+ :ref: `Out-of-core Classification
562+ <example_applications_plot_out_of_core_classification.py>` to
563+ learn from data that would not fit into the computer main memory.
564+
565+ - If you have too many sparse features, try using the :ref: `Hashing Vectorizer
566+ <hashing_vectorizer>`.
567+
You can’t perform that action at this time.
0 commit comments