.gitignore
LICENSE
README.md
setup.py
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/feature_request.md
hanlp/__init__.py
hanlp/version.py
hanlp.egg-info/PKG-INFO
hanlp.egg-info/SOURCES.txt
hanlp.egg-info/dependency_links.txt
hanlp.egg-info/requires.txt
hanlp.egg-info/top_level.txt
hanlp/callbacks/__init__.py
hanlp/callbacks/fine_csv_logger.py
hanlp/common/__init__.py
hanlp/common/component.py
hanlp/common/constant.py
hanlp/common/document.py
hanlp/common/structure.py
hanlp/common/transform.py
hanlp/common/trie.py
hanlp/common/vocab.py
hanlp/components/__init__.py
hanlp/components/lambda_wrapper.py
hanlp/components/ner.py
hanlp/components/pipeline.py
hanlp/components/pos.py
hanlp/components/rnn_language_model.py
hanlp/components/tok.py
hanlp/components/classifiers/__init__.py
hanlp/components/classifiers/transformer_classifier.py
hanlp/components/parsers/__init__.py
hanlp/components/parsers/alg.py
hanlp/components/parsers/biaffine_parser.py
hanlp/components/parsers/conll.py
hanlp/components/parsers/biaffine/__init__.py
hanlp/components/parsers/biaffine/layers.py
hanlp/components/parsers/biaffine/model.py
hanlp/components/taggers/__init__.py
hanlp/components/taggers/cnn_tagger.py
hanlp/components/taggers/rnn_tagger.py
hanlp/components/taggers/tagger.py
hanlp/components/taggers/ngram_conv/__init__.py
hanlp/components/taggers/ngram_conv/ngram_conv_tagger.py
hanlp/components/taggers/transformers/__init__.py
hanlp/components/taggers/transformers/metrics.py
hanlp/components/taggers/transformers/transformer_tagger.py
hanlp/components/taggers/transformers/transformer_transform.py
hanlp/components/taggers/transformers/utils.py
hanlp/datasets/__init__.py
hanlp/datasets/glue.py
hanlp/datasets/classification/__init__.py
hanlp/datasets/classification/sentiment.py
hanlp/datasets/cws/__init__.py
hanlp/datasets/cws/ctb.py
hanlp/datasets/cws/sighan2005/__init__.py
hanlp/datasets/cws/sighan2005/msr.py
hanlp/datasets/cws/sighan2005/pku.py
hanlp/datasets/ner/__init__.py
hanlp/datasets/ner/conll03.py
hanlp/datasets/ner/msra.py
hanlp/datasets/parsing/__init__.py
hanlp/datasets/parsing/ctb.py
hanlp/datasets/parsing/semeval2016.py
hanlp/datasets/pos/__init__.py
hanlp/datasets/pos/ctb.py
hanlp/layers/__init__.py
hanlp/layers/weight_normalization.py
hanlp/layers/crf/__init__.py
hanlp/layers/crf/crf.py
hanlp/layers/crf/crf_layer.py
hanlp/layers/embeddings/__init__.py
hanlp/layers/embeddings/char_cnn.py
hanlp/layers/embeddings/char_rnn.py
hanlp/layers/embeddings/concat_embedding.py
hanlp/layers/embeddings/contextual_string_embedding.py
hanlp/layers/embeddings/fast_text.py
hanlp/layers/embeddings/word2vec.py
hanlp/layers/transformers/__init__.py
hanlp/layers/transformers/albert_tokenization.py
hanlp/layers/transformers/loader.py
hanlp/losses/__init__.py
hanlp/losses/sparse_categorical_crossentropy.py
hanlp/metrics/__init__.py
hanlp/metrics/chunking/__init__.py
hanlp/metrics/chunking/bmes.py
hanlp/metrics/chunking/conlleval.py
hanlp/metrics/chunking/f1.py
hanlp/metrics/chunking/iobes.py
hanlp/metrics/chunking/sequence_labeling.py
hanlp/metrics/parsing/__init__.py
hanlp/metrics/parsing/labeled_f1.py
hanlp/metrics/parsing/labeled_score.py
hanlp/optimizers/__init__.py
hanlp/optimizers/adamw/__init__.py
hanlp/optimizers/adamw/optimization.py
hanlp/pretrained/__init__.py
hanlp/pretrained/classifiers.py
hanlp/pretrained/cws.py
hanlp/pretrained/dep.py
hanlp/pretrained/fasttext.py
hanlp/pretrained/glove.py
hanlp/pretrained/ner.py
hanlp/pretrained/pos.py
hanlp/pretrained/rnnlm.py
hanlp/pretrained/sdp.py
hanlp/pretrained/word2vec.py
hanlp/transform/__init__.py
hanlp/transform/table.py
hanlp/transform/text.py
hanlp/transform/tsv.py
hanlp/transform/txt.py
hanlp/utils/__init__.py
hanlp/utils/component_util.py
hanlp/utils/english_tokenizer.py
hanlp/utils/io_util.py
hanlp/utils/log_util.py
hanlp/utils/reflection.py
hanlp/utils/rules.py
hanlp/utils/string_util.py
hanlp/utils/tf_util.py
hanlp/utils/time_util.py
hanlp/utils/util.py
hanlp/utils/file_read_backwards/__init__.py
hanlp/utils/file_read_backwards/buffer_work_space.py
hanlp/utils/file_read_backwards/file_read_backwards.py
hanlp/utils/lang/__init__.py
hanlp/utils/lang/zh/__init__.py
hanlp/utils/lang/zh/char_table.py
tests/__init__.py
tests/debug/__init__.py
tests/debug/debug_bert_ner.py
tests/debug/debug_conll_sent.py
tests/debug/debug_transformer_transform.py
tests/debug/test_bert_ner.py
tests/debug/test_string_util.py
tests/debug/test_trie.py
tests/demo/__init__.py
tests/demo/en/__init__.py
tests/demo/en/demo_dep.py
tests/demo/en/demo_emotion_prediction.py
tests/demo/en/demo_lm.py
tests/demo/en/demo_ner.py
tests/demo/en/demo_pipeline.py
tests/demo/en/demo_pos.py
tests/demo/en/demo_sdp.py
tests/demo/en/demo_sentiment_analysis.py
tests/demo/en/demo_tok.py
tests/demo/zh/__init__.py
tests/demo/zh/demo_classifier.py
tests/demo/zh/demo_client.py
tests/demo/zh/demo_cws.py
tests/demo/zh/demo_cws_trie.py
tests/demo/zh/demo_dep.py
tests/demo/zh/demo_multiprocess.py
tests/demo/zh/demo_ner.py
tests/demo/zh/demo_pipeline.py
tests/demo/zh/demo_pos.py
tests/demo/zh/demo_sdp.py
tests/demo/zh/demo_serving.py
tests/script/__init__.py
tests/script/convert_dm_sdp.py
tests/script/convert_psd_sdp.py
tests/script/convert_ptb_dep.py
tests/script/evaluate_dep.py
tests/script/evaluate_sdp.py
tests/train/__init__.py
tests/train/en/__init__.py
tests/train/en/train_conll03_ner_bert.py
tests/train/en/train_conll03_ner_flair.py
tests/train/en/train_ptb_pos_rnn_fasttext.py
tests/train/en/train_semeval15_dm.py
tests/train/en/train_semeval15_pas.py
tests/train/en/train_semeval15_psd.py
tests/train/en/train_sst2_albert_base.py
tests/train/en/train_sst2_bert_base.py
tests/train/zh/__init__.py
tests/train/zh/train_chnsenticorp_bert.py
tests/train/zh/train_ctb5_dep.py
tests/train/zh/train_ctb5_pos_rnn.py
tests/train/zh/train_ctb7_dep.py
tests/train/zh/train_msra_ner_albert.py
tests/train/zh/train_msra_ner_bert.py
tests/train/zh/train_msra_ner_ngram_conv.py
tests/train/zh/train_msra_ner_rnn.py
tests/train/zh/train_semeval16_news.py
tests/train/zh/train_semeval16_text.py
tests/train/zh/cws/__init__.py
tests/train/zh/cws/train_ctb6_cws_albert.py
tests/train/zh/cws/train_ctb6_cws_bert.py
tests/train/zh/cws/train_ctb6_cws_convseg.py
tests/train/zh/cws/train_large_bert_cws.py
tests/train/zh/cws/train_large_conv_cws.py
tests/train/zh/cws/train_large_rnn_cws.py
tests/train/zh/cws/train_msr_cws_bert.py
tests/train/zh/cws/train_msr_cws_ngram_conv.py
tests/train/zh/cws/train_pku980106_conv_cws.py
tests/train/zh/cws/train_pku980106_rnn_cws.py
tests/train/zh/cws/train_pku_conv_cws.py