├── .gitignore ├── README.md ├── bert ├── convert_tf_checkpoint_to_pytorch.py ├── make_corpus.py └── make_vocab.py ├── net ├── Net.py ├── __init__.py ├── dataset.py ├── module │ ├── Embeds.py │ ├── Features.py │ └── __init__.py └── task │ ├── Locate_Entity.py │ └── __init__.py ├── submit_test.py ├── train.py └── word2vec ├── make_corpus.py ├── make_weight.py └── train_word2vec.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/README.md -------------------------------------------------------------------------------- /bert/convert_tf_checkpoint_to_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/bert/convert_tf_checkpoint_to_pytorch.py -------------------------------------------------------------------------------- /bert/make_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/bert/make_corpus.py -------------------------------------------------------------------------------- /bert/make_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/bert/make_vocab.py -------------------------------------------------------------------------------- /net/Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/net/Net.py -------------------------------------------------------------------------------- /net/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/net/__init__.py -------------------------------------------------------------------------------- /net/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/net/dataset.py -------------------------------------------------------------------------------- /net/module/Embeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/net/module/Embeds.py -------------------------------------------------------------------------------- /net/module/Features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/net/module/Features.py -------------------------------------------------------------------------------- /net/module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/net/module/__init__.py -------------------------------------------------------------------------------- /net/task/Locate_Entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/net/task/Locate_Entity.py -------------------------------------------------------------------------------- /net/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/net/task/__init__.py -------------------------------------------------------------------------------- /submit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/submit_test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/train.py -------------------------------------------------------------------------------- /word2vec/make_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/word2vec/make_corpus.py -------------------------------------------------------------------------------- /word2vec/make_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/word2vec/make_weight.py -------------------------------------------------------------------------------- /word2vec/train_word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renjunxiang/daguan_2019/HEAD/word2vec/train_word2vec.py --------------------------------------------------------------------------------