├── README.md ├── data └── conll2003 │ ├── dev.txt │ ├── test.txt │ └── train.txt ├── main.py ├── model ├── __init__.py ├── charbigru.py ├── charbilstm.py ├── charcnn.py ├── charcnn_3k.py ├── crf.py ├── mc_model.py ├── memory.py ├── seqmodel.py ├── transformer.py └── wordrep.py └── utils ├── __init__.py ├── alphabet.py ├── data.py ├── functions.py ├── metric.py ├── optimizer.py └── tagSchemeConverter.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/README.md -------------------------------------------------------------------------------- /data/conll2003/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/data/conll2003/dev.txt -------------------------------------------------------------------------------- /data/conll2003/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/data/conll2003/test.txt -------------------------------------------------------------------------------- /data/conll2003/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/data/conll2003/train.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/main.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/charbigru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/model/charbigru.py -------------------------------------------------------------------------------- /model/charbilstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/model/charbilstm.py -------------------------------------------------------------------------------- /model/charcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/model/charcnn.py -------------------------------------------------------------------------------- /model/charcnn_3k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/model/charcnn_3k.py -------------------------------------------------------------------------------- /model/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/model/crf.py -------------------------------------------------------------------------------- /model/mc_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/model/mc_model.py -------------------------------------------------------------------------------- /model/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/model/memory.py -------------------------------------------------------------------------------- /model/seqmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/model/seqmodel.py -------------------------------------------------------------------------------- /model/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/model/transformer.py -------------------------------------------------------------------------------- /model/wordrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/model/wordrep.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/alphabet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/utils/alphabet.py -------------------------------------------------------------------------------- /utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/utils/data.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/utils/functions.py -------------------------------------------------------------------------------- /utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/utils/metric.py -------------------------------------------------------------------------------- /utils/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/utils/optimizer.py -------------------------------------------------------------------------------- /utils/tagSchemeConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiacheng-ye/DocL-NER/HEAD/utils/tagSchemeConverter.py --------------------------------------------------------------------------------