chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,446 @@
|
||||
from collections import Counter
|
||||
from typing import TYPE_CHECKING, Any, Callable, Dict, List, Optional
|
||||
|
||||
import pandas as pd
|
||||
|
||||
from ray.data.preprocessor import SerializablePreprocessorBase
|
||||
from ray.data.preprocessors.utils import (
|
||||
_Computed,
|
||||
_PublicField,
|
||||
migrate_private_fields,
|
||||
simple_hash,
|
||||
simple_split_tokenizer,
|
||||
)
|
||||
from ray.data.preprocessors.version_support import SerializablePreprocessor
|
||||
from ray.util.annotations import PublicAPI
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from ray.data.dataset import Dataset
|
||||
|
||||
|
||||
@PublicAPI(stability="alpha")
|
||||
@SerializablePreprocessor(
|
||||
version=1, identifier="io.ray.preprocessors.hashing_vectorizer"
|
||||
)
|
||||
class HashingVectorizer(SerializablePreprocessorBase):
|
||||
"""Count the frequency of tokens using the
|
||||
`hashing trick <https://en.wikipedia.org/wiki/Feature_hashing>`_.
|
||||
|
||||
This preprocessors creates a list column for each input column. For each row,
|
||||
the list contains the frequency counts of tokens (for CountVectorizer) or hash values
|
||||
(for HashingVectorizer). For HashingVectorizer, the list will have length
|
||||
``num_features``. If ``num_features`` is large enough relative to the size of your
|
||||
vocabulary, then each index approximately corresponds to the frequency of a unique
|
||||
token.
|
||||
|
||||
:class:`HashingVectorizer` is memory efficient and quick to pickle. However, given a
|
||||
transformed column, you can't know which tokens correspond to it. This might make it
|
||||
hard to determine which tokens are important to your model.
|
||||
|
||||
.. note::
|
||||
|
||||
This preprocessor transforms each input column to a
|
||||
`document-term matrix <https://en.wikipedia.org/wiki/Document-term_matrix>`_.
|
||||
|
||||
A document-term matrix is a table that describes the frequency of tokens in a
|
||||
collection of documents. For example, the strings `"I like Python"` and `"I
|
||||
dislike Python"` might have the document-term matrix below:
|
||||
|
||||
.. code-block::
|
||||
|
||||
corpus_I corpus_Python corpus_dislike corpus_like
|
||||
0 1 1 1 0
|
||||
1 1 1 0 1
|
||||
|
||||
To generate the matrix, you typically map each token to a unique index. For
|
||||
example:
|
||||
|
||||
.. code-block::
|
||||
|
||||
token index
|
||||
0 I 0
|
||||
1 Python 1
|
||||
2 dislike 2
|
||||
3 like 3
|
||||
|
||||
The problem with this approach is that memory use scales linearly with the size
|
||||
of your vocabulary. :class:`HashingVectorizer` circumvents this problem by
|
||||
computing indices with a hash function:
|
||||
:math:`\\texttt{index} = hash(\\texttt{token})`.
|
||||
|
||||
.. warning::
|
||||
Sparse matrices aren't currently supported. If you use a large ``num_features``,
|
||||
this preprocessor might behave poorly.
|
||||
|
||||
Examples:
|
||||
>>> import pandas as pd
|
||||
>>> import ray
|
||||
>>> from ray.data.preprocessors import HashingVectorizer
|
||||
>>>
|
||||
>>> df = pd.DataFrame({
|
||||
... "corpus": [
|
||||
... "Jimmy likes volleyball",
|
||||
... "Bob likes volleyball too",
|
||||
... "Bob also likes fruit jerky"
|
||||
... ]
|
||||
... })
|
||||
>>> ds = ray.data.from_pandas(df) # doctest: +SKIP
|
||||
>>>
|
||||
>>> vectorizer = HashingVectorizer(["corpus"], num_features=8)
|
||||
>>> vectorizer.fit_transform(ds).to_pandas() # doctest: +SKIP
|
||||
corpus
|
||||
0 [1, 0, 1, 0, 0, 0, 0, 1]
|
||||
1 [1, 0, 1, 0, 0, 0, 1, 1]
|
||||
2 [0, 0, 1, 1, 0, 2, 1, 0]
|
||||
|
||||
:class:`HashingVectorizer` can also be used in append mode by providing the
|
||||
name of the output_columns that should hold the encoded values.
|
||||
|
||||
>>> vectorizer = HashingVectorizer(["corpus"], num_features=8, output_columns=["corpus_hashed"])
|
||||
>>> vectorizer.fit_transform(ds).to_pandas() # doctest: +SKIP
|
||||
corpus corpus_hashed
|
||||
0 Jimmy likes volleyball [1, 0, 1, 0, 0, 0, 0, 1]
|
||||
1 Bob likes volleyball too [1, 0, 1, 0, 0, 0, 1, 1]
|
||||
2 Bob also likes fruit jerky [0, 0, 1, 1, 0, 2, 1, 0]
|
||||
|
||||
Args:
|
||||
columns: The columns to separately tokenize and count.
|
||||
num_features: The number of features used to represent the vocabulary. You
|
||||
should choose a value large enough to prevent hash collisions between
|
||||
distinct tokens.
|
||||
tokenization_fn: The function used to generate tokens. This function
|
||||
should accept a string as input and return a list of tokens as
|
||||
output. If unspecified, the tokenizer uses a function equivalent to
|
||||
``lambda s: s.split(" ")``.
|
||||
output_columns: The names of the transformed columns. If None, the transformed
|
||||
columns will be the same as the input columns. If not None, the length of
|
||||
``output_columns`` must match the length of ``columns``, othwerwise an error
|
||||
will be raised.
|
||||
|
||||
.. seealso::
|
||||
|
||||
:class:`CountVectorizer`
|
||||
Another method for counting token frequencies. Unlike :class:`HashingVectorizer`,
|
||||
:class:`CountVectorizer` creates a feature for each unique token. This
|
||||
enables you to compute the inverse transformation.
|
||||
|
||||
:class:`FeatureHasher`
|
||||
This preprocessor is similar to :class:`HashingVectorizer`, except it expects
|
||||
a table describing token frequencies. In contrast,
|
||||
:class:`FeatureHasher` expects a column containing documents.
|
||||
""" # noqa: E501
|
||||
|
||||
_is_fittable = False
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
columns: List[str],
|
||||
num_features: int,
|
||||
tokenization_fn: Optional[Callable[[str], List[str]]] = None,
|
||||
*,
|
||||
output_columns: Optional[List[str]] = None,
|
||||
):
|
||||
super().__init__()
|
||||
self._columns = columns
|
||||
self._num_features = num_features
|
||||
self._tokenization_fn = tokenization_fn or simple_split_tokenizer
|
||||
self._output_columns = (
|
||||
SerializablePreprocessorBase._derive_and_validate_output_columns(
|
||||
columns, output_columns
|
||||
)
|
||||
)
|
||||
|
||||
@property
|
||||
def columns(self) -> List[str]:
|
||||
return self._columns
|
||||
|
||||
@property
|
||||
def num_features(self) -> int:
|
||||
return self._num_features
|
||||
|
||||
@property
|
||||
def tokenization_fn(self) -> Callable[[str], List[str]]:
|
||||
return self._tokenization_fn
|
||||
|
||||
@property
|
||||
def output_columns(self) -> List[str]:
|
||||
return self._output_columns
|
||||
|
||||
def _transform_pandas(self, df: pd.DataFrame):
|
||||
def hash_count(tokens: List[str]) -> Counter:
|
||||
hashed_tokens = [simple_hash(token, self._num_features) for token in tokens]
|
||||
return Counter(hashed_tokens)
|
||||
|
||||
for col, output_col in zip(self._columns, self._output_columns):
|
||||
tokenized = df[col].map(self._tokenization_fn)
|
||||
hashed = tokenized.map(hash_count)
|
||||
# Create a list to store the hash columns
|
||||
hash_columns = []
|
||||
for i in range(self._num_features):
|
||||
series = hashed.map(lambda counts: counts[i])
|
||||
series.name = f"hash_{i}"
|
||||
hash_columns.append(series)
|
||||
# Concatenate all hash columns into a single list column
|
||||
df[output_col] = pd.concat(hash_columns, axis=1).values.tolist()
|
||||
|
||||
return df
|
||||
|
||||
def __repr__(self):
|
||||
fn_name = getattr(self._tokenization_fn, "__name__", self._tokenization_fn)
|
||||
return (
|
||||
f"{self.__class__.__name__}(columns={self._columns!r}, "
|
||||
f"num_features={self._num_features!r}, tokenization_fn={fn_name}, "
|
||||
f"output_columns={self._output_columns!r})"
|
||||
)
|
||||
|
||||
def _get_serializable_fields(self) -> Dict[str, Any]:
|
||||
return {
|
||||
"columns": self._columns,
|
||||
"num_features": self._num_features,
|
||||
"tokenization_fn": self._tokenization_fn,
|
||||
"output_columns": self._output_columns,
|
||||
}
|
||||
|
||||
def _set_serializable_fields(self, fields: Dict[str, Any], version: int):
|
||||
# required fields
|
||||
self._columns = fields["columns"]
|
||||
self._num_features = fields["num_features"]
|
||||
self._tokenization_fn = fields["tokenization_fn"]
|
||||
self._output_columns = fields["output_columns"]
|
||||
|
||||
def __setstate__(self, state: Dict[str, Any]) -> None:
|
||||
"""Handle backwards compatibility for old pickled objects."""
|
||||
super().__setstate__(state)
|
||||
migrate_private_fields(
|
||||
self,
|
||||
fields={
|
||||
"_columns": _PublicField(public_field="columns"),
|
||||
"_num_features": _PublicField(public_field="num_features"),
|
||||
"_tokenization_fn": _PublicField(
|
||||
public_field="tokenization_fn", default=simple_split_tokenizer
|
||||
),
|
||||
"_output_columns": _PublicField(
|
||||
public_field="output_columns",
|
||||
default=_Computed(lambda obj: obj._columns),
|
||||
),
|
||||
},
|
||||
)
|
||||
|
||||
|
||||
@PublicAPI(stability="alpha")
|
||||
@SerializablePreprocessor(version=1, identifier="io.ray.preprocessors.count_vectorizer")
|
||||
class CountVectorizer(SerializablePreprocessorBase):
|
||||
"""Count the frequency of tokens in a column of strings.
|
||||
|
||||
:class:`CountVectorizer` operates on columns that contain strings. For example:
|
||||
|
||||
.. code-block::
|
||||
|
||||
corpus
|
||||
0 I dislike Python
|
||||
1 I like Python
|
||||
|
||||
This preprocessor creates a list column for each input column. Each list contains
|
||||
the frequency counts of tokens in order of their first appearance. For example:
|
||||
|
||||
.. code-block::
|
||||
|
||||
corpus
|
||||
0 [1, 1, 1, 0] # Counts for [I, dislike, Python, like]
|
||||
1 [1, 0, 1, 1] # Counts for [I, dislike, Python, like]
|
||||
|
||||
Examples:
|
||||
>>> import pandas as pd
|
||||
>>> import ray
|
||||
>>> from ray.data.preprocessors import CountVectorizer
|
||||
>>>
|
||||
>>> df = pd.DataFrame({
|
||||
... "corpus": [
|
||||
... "Jimmy likes volleyball",
|
||||
... "Bob likes volleyball too",
|
||||
... "Bob also likes fruit jerky"
|
||||
... ]
|
||||
... })
|
||||
>>> ds = ray.data.from_pandas(df) # doctest: +SKIP
|
||||
>>>
|
||||
>>> vectorizer = CountVectorizer(["corpus"])
|
||||
>>> vectorizer.fit_transform(ds).to_pandas() # doctest: +SKIP
|
||||
corpus
|
||||
0 [1, 0, 1, 1, 0, 0, 0, 0]
|
||||
1 [1, 1, 1, 0, 0, 0, 0, 1]
|
||||
2 [1, 1, 0, 0, 1, 1, 1, 0]
|
||||
|
||||
You can limit the number of tokens in the vocabulary with ``max_features``.
|
||||
|
||||
>>> vectorizer = CountVectorizer(["corpus"], max_features=3)
|
||||
>>> vectorizer.fit_transform(ds).to_pandas() # doctest: +SKIP
|
||||
corpus
|
||||
0 [1, 0, 1]
|
||||
1 [1, 1, 1]
|
||||
2 [1, 1, 0]
|
||||
|
||||
:class:`CountVectorizer` can also be used in append mode by providing the
|
||||
name of the output_columns that should hold the encoded values.
|
||||
|
||||
>>> vectorizer = CountVectorizer(["corpus"], output_columns=["corpus_counts"])
|
||||
>>> vectorizer.fit_transform(ds).to_pandas() # doctest: +SKIP
|
||||
corpus corpus_counts
|
||||
0 Jimmy likes volleyball [1, 0, 1, 1, 0, 0, 0, 0]
|
||||
1 Bob likes volleyball too [1, 1, 1, 0, 0, 0, 0, 1]
|
||||
2 Bob also likes fruit jerky [1, 1, 0, 0, 1, 1, 1, 0]
|
||||
|
||||
Args:
|
||||
columns: The columns to separately tokenize and count.
|
||||
tokenization_fn: The function used to generate tokens. This function
|
||||
should accept a string as input and return a list of tokens as
|
||||
output. If unspecified, the tokenizer uses a function equivalent to
|
||||
``lambda s: s.split(" ")``.
|
||||
max_features: The maximum number of tokens to encode in the transformed
|
||||
dataset. If specified, only the most frequent tokens are encoded.
|
||||
output_columns: The names of the transformed columns. If None, the transformed
|
||||
columns will be the same as the input columns. If not None, the length of
|
||||
``output_columns`` must match the length of ``columns``, othwerwise an error
|
||||
will be raised.
|
||||
""" # noqa: E501
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
columns: List[str],
|
||||
tokenization_fn: Optional[Callable[[str], List[str]]] = None,
|
||||
max_features: Optional[int] = None,
|
||||
*,
|
||||
output_columns: Optional[List[str]] = None,
|
||||
):
|
||||
super().__init__()
|
||||
self._columns = columns
|
||||
self._tokenization_fn = tokenization_fn or simple_split_tokenizer
|
||||
self._max_features = max_features
|
||||
self._output_columns = (
|
||||
SerializablePreprocessorBase._derive_and_validate_output_columns(
|
||||
columns, output_columns
|
||||
)
|
||||
)
|
||||
|
||||
@property
|
||||
def columns(self) -> List[str]:
|
||||
return self._columns
|
||||
|
||||
@property
|
||||
def tokenization_fn(self) -> Callable[[str], List[str]]:
|
||||
return self._tokenization_fn
|
||||
|
||||
@property
|
||||
def max_features(self) -> Optional[int]:
|
||||
return self._max_features
|
||||
|
||||
@property
|
||||
def output_columns(self) -> List[str]:
|
||||
return self._output_columns
|
||||
|
||||
def _fit(self, dataset: "Dataset") -> SerializablePreprocessorBase:
|
||||
def stat_fn(key_gen):
|
||||
def get_pd_value_counts(df: pd.DataFrame) -> List[Counter]:
|
||||
def get_token_counts(col):
|
||||
token_series = df[col].apply(self._tokenization_fn)
|
||||
tokens = token_series.sum()
|
||||
return Counter(tokens)
|
||||
|
||||
return {col: [get_token_counts(col)] for col in self._columns}
|
||||
|
||||
value_counts = dataset.map_batches(
|
||||
get_pd_value_counts, batch_format="pandas"
|
||||
)
|
||||
total_counts = {col: Counter() for col in self._columns}
|
||||
for batch in value_counts.iter_batches(batch_size=None):
|
||||
for col, counters in batch.items():
|
||||
for counter in counters:
|
||||
total_counts[col].update(counter)
|
||||
|
||||
def most_common(counter: Counter, n: int):
|
||||
return Counter(dict(counter.most_common(n)))
|
||||
|
||||
top_counts = [
|
||||
most_common(counter, self._max_features)
|
||||
for counter in total_counts.values()
|
||||
]
|
||||
|
||||
return {
|
||||
key_gen(col): counts # noqa
|
||||
for (col, counts) in zip(self._columns, top_counts)
|
||||
}
|
||||
|
||||
self._stat_computation_plan.add_callable_stat(
|
||||
stat_fn=lambda key_gen: stat_fn(key_gen),
|
||||
stat_key_fn=lambda col: f"token_counts({col})",
|
||||
columns=self._columns,
|
||||
)
|
||||
|
||||
return self
|
||||
|
||||
def _transform_pandas(self, df: pd.DataFrame):
|
||||
result_columns = []
|
||||
for col, output_col in zip(self._columns, self._output_columns):
|
||||
token_counts = self.stats_[f"token_counts({col})"]
|
||||
sorted_tokens = [token for (token, count) in token_counts.most_common()]
|
||||
tokenized = df[col].map(self._tokenization_fn).map(Counter)
|
||||
|
||||
# Create a list to store token frequencies
|
||||
token_columns = []
|
||||
for token in sorted_tokens:
|
||||
series = tokenized.map(lambda val: val[token])
|
||||
series.name = token
|
||||
token_columns.append(series)
|
||||
|
||||
# Concatenate all token columns into a single list column
|
||||
if token_columns:
|
||||
df[output_col] = pd.concat(token_columns, axis=1).values.tolist()
|
||||
else:
|
||||
df[output_col] = [[]] * len(df)
|
||||
result_columns.append(output_col)
|
||||
|
||||
return df
|
||||
|
||||
def __repr__(self):
|
||||
fn_name = getattr(self._tokenization_fn, "__name__", self._tokenization_fn)
|
||||
return (
|
||||
f"{self.__class__.__name__}(columns={self._columns!r}, "
|
||||
f"tokenization_fn={fn_name}, max_features={self._max_features!r}, "
|
||||
f"output_columns={self._output_columns!r})"
|
||||
)
|
||||
|
||||
def _get_serializable_fields(self) -> Dict[str, Any]:
|
||||
return {
|
||||
"columns": self._columns,
|
||||
"tokenization_fn": self._tokenization_fn,
|
||||
"max_features": self._max_features,
|
||||
"output_columns": self._output_columns,
|
||||
"_fitted": getattr(self, "_fitted", None),
|
||||
}
|
||||
|
||||
def _set_serializable_fields(self, fields: Dict[str, Any], version: int):
|
||||
# required fields
|
||||
self._columns = fields["columns"]
|
||||
self._tokenization_fn = fields["tokenization_fn"]
|
||||
self._max_features = fields["max_features"]
|
||||
self._output_columns = fields["output_columns"]
|
||||
# optional fields
|
||||
self._fitted = fields.get("_fitted")
|
||||
|
||||
def __setstate__(self, state: Dict[str, Any]) -> None:
|
||||
super().__setstate__(state)
|
||||
migrate_private_fields(
|
||||
self,
|
||||
fields={
|
||||
"_columns": _PublicField(public_field="columns"),
|
||||
"_tokenization_fn": _PublicField(
|
||||
public_field="tokenization_fn", default=simple_split_tokenizer
|
||||
),
|
||||
"_max_features": _PublicField(
|
||||
public_field="max_features", default=None
|
||||
),
|
||||
"_output_columns": _PublicField(
|
||||
public_field="output_columns",
|
||||
default=_Computed(lambda obj: obj._columns),
|
||||
),
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user