├── .env ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── docs └── mt2.png ├── requirements.txt └── trainer └── task.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronGrainer/pytorch-nlp-multitask/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | models -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronGrainer/pytorch-nlp-multitask/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronGrainer/pytorch-nlp-multitask/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronGrainer/pytorch-nlp-multitask/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronGrainer/pytorch-nlp-multitask/HEAD/README.md -------------------------------------------------------------------------------- /docs/mt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronGrainer/pytorch-nlp-multitask/HEAD/docs/mt2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronGrainer/pytorch-nlp-multitask/HEAD/requirements.txt -------------------------------------------------------------------------------- /trainer/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronGrainer/pytorch-nlp-multitask/HEAD/trainer/task.py --------------------------------------------------------------------------------