├── Code_for_paper ├── ReadMe.md ├── fine_tuning.py ├── networks │ ├── BiLSTM.py │ ├── __pycache__ │ │ ├── BiLSTM.cpython-36.pyc │ │ └── __init__.cpython-36.pyc │ └── keraslayers │ │ ├── ChainCRF.py │ │ └── __pycache__ │ │ ├── ChainCRF.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── train_camera.py ├── train_computer.py ├── train_multi_task.py ├── train_phone.py └── util │ ├── BIOF1Validation.py │ ├── CoNLL.py │ ├── WordEmbeddings.py │ ├── __pycache__ │ ├── BIOF1Validation.cpython-36.pyc │ ├── CoNLL.cpython-36.pyc │ ├── WordEmbeddings.cpython-36.pyc │ ├── __init__.cpython-36.pyc │ └── preprocessing.cpython-36.pyc │ └── preprocessing.py ├── Paper.pdf ├── Poster_10_7.pdf ├── README.md └── data ├── camera ├── dev.txt ├── test.txt └── train.txt ├── computer ├── dev.txt ├── test.txt └── train.txt └── phone ├── dev.txt ├── test.txt └── train.txt /Code_for_paper/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/ReadMe.md -------------------------------------------------------------------------------- /Code_for_paper/fine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/fine_tuning.py -------------------------------------------------------------------------------- /Code_for_paper/networks/BiLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/networks/BiLSTM.py -------------------------------------------------------------------------------- /Code_for_paper/networks/__pycache__/BiLSTM.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/networks/__pycache__/BiLSTM.cpython-36.pyc -------------------------------------------------------------------------------- /Code_for_paper/networks/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/networks/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Code_for_paper/networks/keraslayers/ChainCRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/networks/keraslayers/ChainCRF.py -------------------------------------------------------------------------------- /Code_for_paper/networks/keraslayers/__pycache__/ChainCRF.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/networks/keraslayers/__pycache__/ChainCRF.cpython-36.pyc -------------------------------------------------------------------------------- /Code_for_paper/networks/keraslayers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/networks/keraslayers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Code_for_paper/train_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/train_camera.py -------------------------------------------------------------------------------- /Code_for_paper/train_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/train_computer.py -------------------------------------------------------------------------------- /Code_for_paper/train_multi_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/train_multi_task.py -------------------------------------------------------------------------------- /Code_for_paper/train_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/train_phone.py -------------------------------------------------------------------------------- /Code_for_paper/util/BIOF1Validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/util/BIOF1Validation.py -------------------------------------------------------------------------------- /Code_for_paper/util/CoNLL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/util/CoNLL.py -------------------------------------------------------------------------------- /Code_for_paper/util/WordEmbeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/util/WordEmbeddings.py -------------------------------------------------------------------------------- /Code_for_paper/util/__pycache__/BIOF1Validation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/util/__pycache__/BIOF1Validation.cpython-36.pyc -------------------------------------------------------------------------------- /Code_for_paper/util/__pycache__/CoNLL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/util/__pycache__/CoNLL.cpython-36.pyc -------------------------------------------------------------------------------- /Code_for_paper/util/__pycache__/WordEmbeddings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/util/__pycache__/WordEmbeddings.cpython-36.pyc -------------------------------------------------------------------------------- /Code_for_paper/util/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/util/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Code_for_paper/util/__pycache__/preprocessing.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/util/__pycache__/preprocessing.cpython-36.pyc -------------------------------------------------------------------------------- /Code_for_paper/util/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Code_for_paper/util/preprocessing.py -------------------------------------------------------------------------------- /Paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Paper.pdf -------------------------------------------------------------------------------- /Poster_10_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/Poster_10_7.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/README.md -------------------------------------------------------------------------------- /data/camera/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/data/camera/dev.txt -------------------------------------------------------------------------------- /data/camera/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/data/camera/test.txt -------------------------------------------------------------------------------- /data/camera/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/data/camera/train.txt -------------------------------------------------------------------------------- /data/computer/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/data/computer/dev.txt -------------------------------------------------------------------------------- /data/computer/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/data/computer/test.txt -------------------------------------------------------------------------------- /data/computer/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/data/computer/train.txt -------------------------------------------------------------------------------- /data/phone/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/data/phone/dev.txt -------------------------------------------------------------------------------- /data/phone/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/data/phone/test.txt -------------------------------------------------------------------------------- /data/phone/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JansonKong/Deep-Multi-task-Learning-with-Cross-Connected-Layer-for-Slot-Filling/HEAD/data/phone/train.txt --------------------------------------------------------------------------------