This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| from scipy.odr import models | |
| import unittest | |
| import os | |
| import os.path | |
| import tempfile | |
| import numpy | |
| import gensim | |
| import logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Author: Peter Prettenhofer <[email protected]> | |
| # Lars Buitinck <[email protected]> | |
| # License: Simplified BSD | |
| from sklearn.datasets import fetch_20newsgroups | |
| from sklearn.feature_extraction.text import TfidfVectorizer | |
| from sklearn.feature_extraction.text import HashingVectorizer | |
| from sklearn.feature_extraction.text import TfidfTransformer | |
| from sklearn.feature_extraction.text import FeatureHasher | |
| from sklearn.pipeline import Pipeline |
NewerOlder