├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── docker-compose.yml └── work ├── dataset ├── 1_find_numbers.ipynb ├── 2_inverse_normalize.ipynb ├── 3_process_itn.ipynb ├── 4_process_kaggle.ipynb └── word_to_number_ru │ ├── LICENSE.txt │ ├── extractor.py │ └── number.py ├── infer ├── examples.json └── infer.ipynb ├── replaces.py ├── tb.ipynb └── train ├── readme.md ├── train-distributed.ipynb └── train.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /work/dataset/1_find_numbers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/dataset/1_find_numbers.ipynb -------------------------------------------------------------------------------- /work/dataset/2_inverse_normalize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/dataset/2_inverse_normalize.ipynb -------------------------------------------------------------------------------- /work/dataset/3_process_itn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/dataset/3_process_itn.ipynb -------------------------------------------------------------------------------- /work/dataset/4_process_kaggle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/dataset/4_process_kaggle.ipynb -------------------------------------------------------------------------------- /work/dataset/word_to_number_ru/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/dataset/word_to_number_ru/LICENSE.txt -------------------------------------------------------------------------------- /work/dataset/word_to_number_ru/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/dataset/word_to_number_ru/extractor.py -------------------------------------------------------------------------------- /work/dataset/word_to_number_ru/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/dataset/word_to_number_ru/number.py -------------------------------------------------------------------------------- /work/infer/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/infer/examples.json -------------------------------------------------------------------------------- /work/infer/infer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/infer/infer.ipynb -------------------------------------------------------------------------------- /work/replaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/replaces.py -------------------------------------------------------------------------------- /work/tb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/tb.ipynb -------------------------------------------------------------------------------- /work/train/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/train/readme.md -------------------------------------------------------------------------------- /work/train/train-distributed.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/train/train-distributed.ipynb -------------------------------------------------------------------------------- /work/train/train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saarus72/text_normalization/HEAD/work/train/train.ipynb --------------------------------------------------------------------------------