├── .README_images ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png └── target.png ├── .dockerignore ├── .flaskenv ├── Dockerfile ├── README.md ├── base.py ├── bin ├── build_run_container.sh ├── flask_app_launch.sh └── run_container.sh ├── checkpoints └── echomsk6000 │ └── 20210430_125222_rubert-base-cased-sentence_segment_size_16_stacked_hidden_states_concat_4_mean_sent_agg │ └── hyperparameters.json ├── data.py ├── datasets └── README.md ├── dockerd-entrypoint.sh ├── inference.py ├── make_datasets.py ├── model.py ├── requests.http ├── requirements.txt ├── results └── comparison_results_table.xlsx ├── tests.py ├── train.py ├── web_app ├── __init__.py ├── config.py ├── main │ ├── __init__.py │ └── routes.py └── tests.py └── web_app_run.py /.README_images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.README_images/1.png -------------------------------------------------------------------------------- /.README_images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.README_images/2.png -------------------------------------------------------------------------------- /.README_images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.README_images/3.png -------------------------------------------------------------------------------- /.README_images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.README_images/4.png -------------------------------------------------------------------------------- /.README_images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.README_images/5.png -------------------------------------------------------------------------------- /.README_images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.README_images/6.png -------------------------------------------------------------------------------- /.README_images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.README_images/7.png -------------------------------------------------------------------------------- /.README_images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.README_images/8.png -------------------------------------------------------------------------------- /.README_images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.README_images/9.png -------------------------------------------------------------------------------- /.README_images/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.README_images/target.png -------------------------------------------------------------------------------- /.dockerignore : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_APP=web_app_run.py 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/README.md -------------------------------------------------------------------------------- /base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/base.py -------------------------------------------------------------------------------- /bin/build_run_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/bin/build_run_container.sh -------------------------------------------------------------------------------- /bin/flask_app_launch.sh: -------------------------------------------------------------------------------- 1 | export USED_PORT=$1 2 | python web_app_run.py -------------------------------------------------------------------------------- /bin/run_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/bin/run_container.sh -------------------------------------------------------------------------------- /checkpoints/echomsk6000/20210430_125222_rubert-base-cased-sentence_segment_size_16_stacked_hidden_states_concat_4_mean_sent_agg/hyperparameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/checkpoints/echomsk6000/20210430_125222_rubert-base-cased-sentence_segment_size_16_stacked_hidden_states_concat_4_mean_sent_agg/hyperparameters.json -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/data.py -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- 1 | Folder to keep datasets -------------------------------------------------------------------------------- /dockerd-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/dockerd-entrypoint.sh -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/inference.py -------------------------------------------------------------------------------- /make_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/make_datasets.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/model.py -------------------------------------------------------------------------------- /requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/requests.http -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/comparison_results_table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/results/comparison_results_table.xlsx -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/train.py -------------------------------------------------------------------------------- /web_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/web_app/__init__.py -------------------------------------------------------------------------------- /web_app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/web_app/config.py -------------------------------------------------------------------------------- /web_app/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/web_app/main/__init__.py -------------------------------------------------------------------------------- /web_app/main/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/web_app/main/routes.py -------------------------------------------------------------------------------- /web_app/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web_app_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotikkonstantin/ru-autopunctuation/HEAD/web_app_run.py --------------------------------------------------------------------------------