scikit-learn/sklearn/feature_extraction/__init__.py

14 lines
424 B
Python
Raw Normal View History

"""
The :mod:`sklearn.feature_extraction` module deals with feature extraction
from raw data. It currently includes methods to extract features from text and
images.
"""
from .dict_vectorizer import DictVectorizer
2012-06-16 01:08:49 +08:00
from .hashing import FeatureHasher
2011-08-05 19:11:24 +08:00
from .image import img_to_graph, grid_to_graph
from . import text
2012-08-23 05:20:49 +08:00
2012-12-22 20:02:50 +08:00
__all__ = ['DictVectorizer', 'image', 'img_to_graph', 'grid_to_graph', 'text',
'FeatureHasher']