Source code for textattack.constraints.pre_transformation.max_word_index_modification

"""

Max Word Index Modification
-----------------------------

"""

from textattack.constraints import PreTransformationConstraint


[docs]class MaxWordIndexModification(PreTransformationConstraint): """A constraint disallowing the modification of words which are past some maximum sentence word-length limit.""" def __init__(self, max_length): self.max_length = max_length def _get_modifiable_indices(self, current_text): """Returns the word indices in current_text which are able to be deleted.""" return set(range(min(self.max_length, len(current_text.words))))
[docs] def extra_repr_keys(self): return ["max_length"]