jitenbot/bot/yomichan/grammar.py

58 lines
2.1 KiB
Python
Raw Normal View History

2023-04-10 20:20:33 +00:00
from sudachipy import tokenizer
from sudachipy import dictionary
2023-04-23 17:33:42 +00:00
from bot.data import load_yomichan_inflection_categories
2023-04-10 20:20:33 +00:00
2023-04-22 17:03:00 +00:00
__U_KANA_LIST = ["", "", "", "", "", "", "",
"", "", "", "", "", "", ""]
__SUDACHI_DICTIONARY = None
def sudachi_rules(expression):
global __SUDACHI_DICTIONARY
if __SUDACHI_DICTIONARY is None:
__SUDACHI_DICTIONARY = dictionary.Dictionary(dict="full").create()
categories = load_yomichan_inflection_categories()
sudachi_inflection_categories = categories["sudachi"]
2023-04-10 20:20:33 +00:00
splitmode = tokenizer.Tokenizer.SplitMode.A
2023-04-22 17:03:00 +00:00
tokens = __SUDACHI_DICTIONARY.tokenize(expression, splitmode)
if len(tokens) == 0:
return ""
2023-04-10 20:20:33 +00:00
pos = tokens[len(tokens)-1].part_of_speech()[4]
tags = pos.split("-")
rules = tags_to_rules(expression, tags, sudachi_inflection_categories)
2023-04-10 20:20:33 +00:00
return rules
def tags_to_rules(expression, tags, inflection_categories):
2023-04-10 20:20:33 +00:00
rules = set()
2023-04-22 17:03:00 +00:00
exp_final_character = expression[len(expression)-1:]
2023-04-10 20:20:33 +00:00
for tag in tags:
if tag in inflection_categories["sahen"]:
2023-04-22 17:03:00 +00:00
if expression.endswith("する"):
rules.add("vs")
elif expression.endswith("為る"):
rules.add("vs")
elif expression.endswith("ずる"):
rules.add("vz")
elif expression.endswith(""):
rules.add("v5")
if tag in inflection_categories["godan"]:
2023-04-22 17:03:00 +00:00
if exp_final_character in __U_KANA_LIST:
rules.add("v5")
if tag in inflection_categories["ichidan"]:
2023-04-22 17:03:00 +00:00
if expression.endswith(""):
2023-04-10 20:20:33 +00:00
rules.add("v1")
if tag in inflection_categories["keiyoushi"]:
2023-04-22 17:03:00 +00:00
if expression.endswith(""):
rules.add("adj-i")
if tag in inflection_categories["kahen"]:
2023-04-22 17:03:00 +00:00
if expression.endswith("くる"):
rules.add("vk")
elif expression.endswith("来る"):
rules.add("vk")
if tag in inflection_categories["sudachi"]:
2023-04-22 17:03:00 +00:00
return sudachi_rules(expression)
2023-04-10 20:20:33 +00:00
return " ".join(list(rules))