├── .gitattributes ├── .gitignore ├── README.md ├── YakuYaku.ico ├── YakuYaku.py ├── beam_decoder.py ├── cleaner.py ├── lang └── zh-CN.qm ├── model.py ├── requirements.txt ├── tokenizer.py ├── ui.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | __pycache__/* 3 | models/* 4 | settings.ini 5 | resources 6 | build 7 | dist 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/README.md -------------------------------------------------------------------------------- /YakuYaku.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/YakuYaku.ico -------------------------------------------------------------------------------- /YakuYaku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/YakuYaku.py -------------------------------------------------------------------------------- /beam_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/beam_decoder.py -------------------------------------------------------------------------------- /cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/cleaner.py -------------------------------------------------------------------------------- /lang/zh-CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/lang/zh-CN.qm -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch 2 | pyqt6 3 | opencc 4 | requests 5 | -------------------------------------------------------------------------------- /tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/tokenizer.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/ui.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CjangCjengh/YakuYaku/HEAD/utils.py --------------------------------------------------------------------------------