├── README.md ├── code ├── main.sh ├── metric_utils.py ├── run_NEZHA.py ├── run_UER.py ├── sequence_labeling.py ├── special_tokens.py ├── word_embedding_matrix.npy └── word_embedding_matrix_v2.npy ├── data └── External │ └── UER-large │ └── checkpoint ├── requirments.txt └── test ├── accum_optimizer.py ├── metric_utils.py ├── sequence_labeling.py ├── special_tokens.py ├── test.py ├── vocab.txt ├── vocab_chinese.txt └── vocab_clue.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/README.md -------------------------------------------------------------------------------- /code/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/code/main.sh -------------------------------------------------------------------------------- /code/metric_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/code/metric_utils.py -------------------------------------------------------------------------------- /code/run_NEZHA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/code/run_NEZHA.py -------------------------------------------------------------------------------- /code/run_UER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/code/run_UER.py -------------------------------------------------------------------------------- /code/sequence_labeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/code/sequence_labeling.py -------------------------------------------------------------------------------- /code/special_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/code/special_tokens.py -------------------------------------------------------------------------------- /code/word_embedding_matrix.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/code/word_embedding_matrix.npy -------------------------------------------------------------------------------- /code/word_embedding_matrix_v2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/code/word_embedding_matrix_v2.npy -------------------------------------------------------------------------------- /data/External/UER-large/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/data/External/UER-large/checkpoint -------------------------------------------------------------------------------- /requirments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/requirments.txt -------------------------------------------------------------------------------- /test/accum_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/test/accum_optimizer.py -------------------------------------------------------------------------------- /test/metric_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/test/metric_utils.py -------------------------------------------------------------------------------- /test/sequence_labeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/test/sequence_labeling.py -------------------------------------------------------------------------------- /test/special_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/test/special_tokens.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/test/test.py -------------------------------------------------------------------------------- /test/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/test/vocab.txt -------------------------------------------------------------------------------- /test/vocab_chinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/test/vocab_chinese.txt -------------------------------------------------------------------------------- /test/vocab_clue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsq357/rank6/HEAD/test/vocab_clue.txt --------------------------------------------------------------------------------