├── README.md ├── data ├── dataset │ └── README.md └── embeddings │ └── README.md ├── layer ├── crf.py └── gatlayer.py ├── main.py ├── model └── bilstm_gat_crf.py ├── paper └── Leverage Lexical Knowledge for Chinese Named Entity Recognition via Collaborative Graph Network.pdf ├── run_main.sh └── utils ├── alphabet.py ├── batchify.py ├── config.py ├── data.py ├── functions.py ├── gazetter.py ├── graph_generator.py ├── metric.py └── trie.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/README.md -------------------------------------------------------------------------------- /data/dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/data/dataset/README.md -------------------------------------------------------------------------------- /data/embeddings/README.md: -------------------------------------------------------------------------------- 1 | A folder for embeddings file 2 | -------------------------------------------------------------------------------- /layer/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/layer/crf.py -------------------------------------------------------------------------------- /layer/gatlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/layer/gatlayer.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/main.py -------------------------------------------------------------------------------- /model/bilstm_gat_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/model/bilstm_gat_crf.py -------------------------------------------------------------------------------- /paper/Leverage Lexical Knowledge for Chinese Named Entity Recognition via Collaborative Graph Network.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/paper/Leverage Lexical Knowledge for Chinese Named Entity Recognition via Collaborative Graph Network.pdf -------------------------------------------------------------------------------- /run_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/run_main.sh -------------------------------------------------------------------------------- /utils/alphabet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/utils/alphabet.py -------------------------------------------------------------------------------- /utils/batchify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/utils/batchify.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/utils/data.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/utils/functions.py -------------------------------------------------------------------------------- /utils/gazetter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/utils/gazetter.py -------------------------------------------------------------------------------- /utils/graph_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/utils/graph_generator.py -------------------------------------------------------------------------------- /utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/utils/metric.py -------------------------------------------------------------------------------- /utils/trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DianboWork/Graph4CNER/HEAD/utils/trie.py --------------------------------------------------------------------------------