def __init__()

in src/morphological_filtering.py [0:0]


    def __init__(self):
        # this dictionary tracks the possible forms of the *matching* gender label (e.g. 'fem', 'feminine', 'femn')
        self.MATCH_GENDER_LABELS = {FEM_LABEL: {FEM_LABEL}, MSC_LABEL: {MSC_LABEL}}
        # mapping our gender labels to the non-indicated gender labels from the morphological analyzer(s)
        # (because we want to detect cases where a *different* gender from the source is present)
        self.OTHER_GENDER_LABELS = {FEM_LABEL: {MSC_LABEL}, MSC_LABEL: {FEM_LABEL}}