├── .gitignore ├── LICENSE ├── README.md ├── crf.py ├── final_report.pdf ├── logger.py ├── main.py ├── model.py ├── read_data.py ├── requirements.txt ├── scripts └── fetch_datasets.sh └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/README.md -------------------------------------------------------------------------------- /crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/crf.py -------------------------------------------------------------------------------- /final_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/final_report.pdf -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/logger.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/model.py -------------------------------------------------------------------------------- /read_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/read_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/fetch_datasets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/scripts/fetch_datasets.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vedantc6/mtl-dts/HEAD/utils.py --------------------------------------------------------------------------------