def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) if "N" in tags: for gender in {"MASC", "FEM", "NEUT", "{MASC/NEUT}"}: tags.discard(gender) tags.discard("ANIM") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) if "V.PTCP" in tags: tags.discard("V") if "PASS" in tags: tags.remove("PASS") tags.add("PST") if "PRS" not in tags: tags.add("PST") if (cols.form.endswith("do") or cols.form.endswith("to")) and tags == set( "PST;V.PTCP".split(";")): tags.add("MASC") tags.add("SG") if tags == {"V", "V.MSDR"}: tags = {"V.PTCP", "PRS"} if "V" in tags: tags.discard("FIN") if "PST" in tags and "IPFV" not in tags: tags.add("PFV") if "IPFV" in tags: tags.add("PST") if cols.form.endswith("ram") and tags == set( "3;IND;PL;V".split(";")): tags.add("PFV") tags.add("PST") tags.discard("PASS") if "PST+PRF" in tags: tags.add("PST") tags.add("PRF") tags.remove("PST+PRF") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) # if "N" in tags: # for gender in {"MASC", "FEM", "NEUT", "{MASC/NEUT}"}: # tags.discard(gender) if "V.PTCP" in tags: tags.discard("V") tags.discard("MASC") tags.discard("FEM") tags.discard("SG") tags.discard("PL") if "V" in tags: tags.discard("FIN") if "PST" in tags: tags.add("PFV") if "IPFV" in tags: tags.add("PST") if "COND" in tags: tags.discard("PRS") if "IMP" in tags: tags.add("POS") tags.discard("PRS") if tags == set("MASC;PST;SG;V;V.PTCP".split(";")): tags = {"PST", "V.PTCP"} if tags == set("V;V.MSDR".split(";")): tags = set("PRS;V.CVB".split(";")) return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) tags.discard("FIN") if "ADJ" in tags: tags.discard("NOM") if "V.PTCP" in tags: tags.remove("V.PTCP") tags.discard("PST") tags.discard("PRS") if tags == {"ADJ", "PL"}: tags.add("INDF") if "N" in tags: tags.discard("MASC+FEM") tags.discard("NEUT") if tags == {"ACT", "SUP", "V"} or tags == {"PASS", "SUP", "V"}: tags.remove("SUP") tags.remove("V") tags.add("V.CVB") if tags == {"ADJ", "DEF", "SG"}: tags = {"ADJ", "DEF"} if {"IND", "PRS", "V"} == tags: tags.add("ACT") if {"ACT", "IMP", "V"} == tags: tags.remove("ACT") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) for gender in {"MASC", "FEM", "NEUT", "{MASC/NEUT}"}: if gender in tags: tags.remove(gender) if {"N", "SG"} <= tags or {"N", "PL"} <= tags or "PROPN" in tags: tags.discard("3") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) for gender in {"MASC", "FEM", "NEUT", "{MASC/NEUT}"}: if gender in tags: tags.remove(gender) tags.discard("FIN") if tags == {"V", "V.PTCP"}: tags = {"PST", "V.PTCP"} return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) tags.discard("FIN") tags.discard("IND") if tags == {"V", "PRS"}: tags = {"V", "NFIN"} if tags == {"V", "V.MSDR"}: tags = {"PRS", "V", "V.PTCP"} if "V" in tags: tags.discard("PASS") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) if "V" in tags: tags.discard("FIN") if "{ACC/NOM}" in tags: tags.remove("{ACC/NOM}") tags.add("NOM/ACC") if "N" in tags: for gender in {"MASC", "FEM", "NEUT", "{MASC/NEUT}"}: tags.discard(gender) if {"V", "PST", "IND"} < tags: tags.add("PFV") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) if "V" in tags: tags.discard("FH") tags.discard("POS") tags.discard("NEG") tags.discard("ACT") tags.discard("FIN") tags.discard("REFL") if "N" in tags: for gender in {"MASC", "FEM", "NEUT", "{MASC/NEUT}"}: tags.discard(gender) if tags == set("COND;V".split(";")): tags.add("PRS") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) if "ADJ" in tags: tags.discard("POS") if "N" in tags: tags.discard("POS") tags.discard("INAN") tags.discard("ANIM") for gender in {"MASC", "FEM", "NEUT", "{MASC/NEUT}"}: if gender in tags: tags.remove(gender) if "V" in tags: tags.discard("ACT") tags.discard("FIN") tags.discard("POS") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) tags.discard("FIN") tags.discard("ACT") if "NFIN" in tags: tags.discard("PRS") # if "IN+ABL" in tags: # tags.discard("IN+ABL") # tags.add("ON+ABL") # if "IN+ESS" in tags: # tags.discard("IN+ESS") # tags.add("ON+ESS") # if "IN+ALL" in tags: # tags.discard("IN+ALL") # tags.add("ON+ALL") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) for gender in {"MASC", "FEM", "NEUT", "{FEM/MASC}"}: if gender in tags: tags.remove(gender) if "V.PTCP" in tags: tags.discard("V") if "V" in tags: tags.discard("ACT") tags.discard("POS") if "N" in tags: if len(tags) == 2: if "SG" in tags or "PL" in tags: tags.add("NDEF") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) if "V" in tags: if "FIN" in tags: tags.remove("FIN") tags.add("POS") if tags == set("NOM;PASS;SG;V;V.PTCP".split(";")): tags = set("PASS;PST;V.PTCP".split(";")) if tags == set("ACT;NOM;SG;V;V.PTCP".split(";")): tags.remove("NOM") tags.remove("SG") tags.remove("V") tags.add("PST") if tags == set("ACT;NFIN;SG;V".split(";")): tags.remove("ACT") tags.remove("SG") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) if "N" in tags: for gender in {"MASC", "FEM", "NEUT", "{MASC/NEUT}"}: if gender in tags: tags.remove(gender) if "N" in tags: tags.discard("INAN") tags.discard("ANIM") if tags >= {"NFIN", "V"}: tags.discard("IPFV") tags.discard("PFV") if "V" in tags: for tag in "FIN;IND;PFV;IPFV".split(";"): tags.discard(tag) if "V.CVB" in tags: tags.discard("V") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) if "V" in tags: tags.discard("FIN") tags.discard("ACT") tags.discard("IPFV") tags.discard("PFV") if "V.PTCP" in tags: tags.discard("ADJ") tags.discard("V") if "PRS" in tags: tags.discard("IPFV") if "PASS" not in tags: tags.add("ACT") if "PFV" in tags: tags.discard("PFV") tags.add("PST") if "RL" in tags: tags.remove("RL") tags.add("SPRL") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) tags.discard("FIN") if "AUX" in tags: tags.remove("AUX") tags.add("V") if {"V", "V.PTCP"} < tags: tags.remove("V") if {"V", "V.MSDR"} == tags: tags = {"PRS", "V.CVB"} if "PST" in tags and "V.PTCP" not in tags: tags.add("PFV") if {"IND", "IPFV"} < tags: tags.add("PST") if "IMP" in tags: tags.add("POS") if {"IPFV", "SBJV"} < tags: tags.remove("IPFV") tags.add("PST") if cols.form[-2:] == "ra" or cols.form[-3:] == "ran": tags.add("LGSPEC1") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) if "N" in tags: for gender in {"MASC", "FEM", "NEUT"}: tags.discard(gender) tags.discard("INAN") tags.discard("HUM") tags.discard("NHUM") if "ADJ" in tags: if "PL" in tags: for gender in {"MASC", "FEM", "NEUT"}: tags.discard(gender) tags.discard("HUM") tags.discard("INAN") if set("IPFV;NFIN;V".split(";")) == tags: tags.remove("IPFV") if set("PFV;NFIN;V".split(";")) == tags: tags.remove("PFV") if "V" in tags: tags.discard("ACT") tags.discard("FIN") tags.discard("IND") tags.discard("IPFV") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) tags.discard("IND") tags.discard("FIN") return UmTag(";".join(tags))
def lgspec_modify(self, cols: CoNLLRow, um: UmTag) -> UmTag: tags = set(um.split(";")) if "N" in tags: tags.discard("3") return UmTag(";".join(tags))