2011-11-30 17:30:13 +08:00
|
|
|
"""
|
2011-12-03 19:56:12 +08:00
|
|
|
The :mod:`sklearn.feature_extraction` module deals with feature extraction
|
|
|
|
|
from raw data. It currently includes methods to extract features from text and
|
|
|
|
|
images.
|
2011-11-30 17:30:13 +08:00
|
|
|
"""
|
2010-11-23 00:05:58 +08:00
|
|
|
|
2012-03-17 07:48:28 +08:00
|
|
|
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
|
2010-11-23 00:05:58 +08:00
|
|
|
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']
|