├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── fastDeploy_recipes ├── example.pkl ├── predictor.py └── requirements.txt ├── fastpunct ├── __init__.py └── fastpunct.py └── setup.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notAI-tech/fastPunct/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notAI-tech/fastPunct/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notAI-tech/fastPunct/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notAI-tech/fastPunct/HEAD/README.md -------------------------------------------------------------------------------- /fastDeploy_recipes/example.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notAI-tech/fastPunct/HEAD/fastDeploy_recipes/example.pkl -------------------------------------------------------------------------------- /fastDeploy_recipes/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notAI-tech/fastPunct/HEAD/fastDeploy_recipes/predictor.py -------------------------------------------------------------------------------- /fastDeploy_recipes/requirements.txt: -------------------------------------------------------------------------------- 1 | fastpunct 2 | sentencepiece 3 | -------------------------------------------------------------------------------- /fastpunct/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notAI-tech/fastPunct/HEAD/fastpunct/__init__.py -------------------------------------------------------------------------------- /fastpunct/fastpunct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notAI-tech/fastPunct/HEAD/fastpunct/fastpunct.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notAI-tech/fastPunct/HEAD/setup.py --------------------------------------------------------------------------------