├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── code └── dimsim │ ├── build │ └── lib │ │ └── dimsim │ │ └── dimsim.py │ └── dimsim │ └── dimsim.py ├── dimsim ├── __init__.py ├── core │ ├── __init__.py │ └── model.py ├── data │ ├── __init__.py │ ├── pinyin_to_simplified.pickle │ └── pinyin_to_traditional.pickle ├── tests │ ├── __init__.py │ └── test_dimsim.py └── utils │ ├── __init__.py │ ├── maps.py │ ├── pinyin.py │ └── utils.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include dimsim/data/*.* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/README.md -------------------------------------------------------------------------------- /code/dimsim/build/lib/dimsim/dimsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/code/dimsim/build/lib/dimsim/dimsim.py -------------------------------------------------------------------------------- /code/dimsim/dimsim/dimsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/code/dimsim/dimsim/dimsim.py -------------------------------------------------------------------------------- /dimsim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/dimsim/__init__.py -------------------------------------------------------------------------------- /dimsim/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dimsim/core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/dimsim/core/model.py -------------------------------------------------------------------------------- /dimsim/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dimsim/data/pinyin_to_simplified.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/dimsim/data/pinyin_to_simplified.pickle -------------------------------------------------------------------------------- /dimsim/data/pinyin_to_traditional.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/dimsim/data/pinyin_to_traditional.pickle -------------------------------------------------------------------------------- /dimsim/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dimsim/tests/test_dimsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/dimsim/tests/test_dimsim.py -------------------------------------------------------------------------------- /dimsim/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dimsim/utils/maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/dimsim/utils/maps.py -------------------------------------------------------------------------------- /dimsim/utils/pinyin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/dimsim/utils/pinyin.py -------------------------------------------------------------------------------- /dimsim/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/dimsim/utils/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/System-T/DimSim/HEAD/setup.py --------------------------------------------------------------------------------