├── .idea ├── HSCRF.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── data ├── eng.testa ├── eng.testb └── eng.train ├── eval.py ├── model ├── __init__.py ├── crf_layer.py ├── data_packer.py ├── evaluator.py ├── highway_layer.py ├── hscrf_layer.py ├── model.py ├── utils.py └── word_rep_layer.py ├── requirements.txt └── train.py /.idea/HSCRF.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/.idea/HSCRF.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data/eng.testa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/data/eng.testa -------------------------------------------------------------------------------- /data/eng.testb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/data/eng.testb -------------------------------------------------------------------------------- /data/eng.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/data/eng.train -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/eval.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/crf_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/model/crf_layer.py -------------------------------------------------------------------------------- /model/data_packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/model/data_packer.py -------------------------------------------------------------------------------- /model/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/model/evaluator.py -------------------------------------------------------------------------------- /model/highway_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/model/highway_layer.py -------------------------------------------------------------------------------- /model/hscrf_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/model/hscrf_layer.py -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/model/model.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/model/utils.py -------------------------------------------------------------------------------- /model/word_rep_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/model/word_rep_layer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhixiuYe/HSCRF-pytorch/HEAD/train.py --------------------------------------------------------------------------------