├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── files ├── accuracy.png ├── dice-std.png ├── f1.png ├── part1.html ├── part2-25k.html ├── part2.html ├── part3.html └── start.html ├── part1.ipynb ├── part2-25k.ipynb ├── part2.ipynb ├── part3.ipynb ├── pyproject.toml ├── requirements.txt └── start.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/README.md -------------------------------------------------------------------------------- /files/accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/files/accuracy.png -------------------------------------------------------------------------------- /files/dice-std.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/files/dice-std.png -------------------------------------------------------------------------------- /files/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/files/f1.png -------------------------------------------------------------------------------- /files/part1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/files/part1.html -------------------------------------------------------------------------------- /files/part2-25k.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/files/part2-25k.html -------------------------------------------------------------------------------- /files/part2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/files/part2.html -------------------------------------------------------------------------------- /files/part3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/files/part3.html -------------------------------------------------------------------------------- /files/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/files/start.html -------------------------------------------------------------------------------- /part1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/part1.ipynb -------------------------------------------------------------------------------- /part2-25k.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/part2-25k.ipynb -------------------------------------------------------------------------------- /part2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/part2.ipynb -------------------------------------------------------------------------------- /part3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/part3.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buriy/nlp_workshop/HEAD/start.ipynb --------------------------------------------------------------------------------