README.md
setup.py
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/dataset.py
hanlp/common/keras_component.py
hanlp/common/structure.py
hanlp/common/torch_component.py
hanlp/common/transform.py
hanlp/common/transform_tf.py
hanlp/common/vocab.py
hanlp/common/vocab_tf.py
hanlp/components/__init__.py
hanlp/components/lambda_wrapper.py
hanlp/components/lemmatizer.py
hanlp/components/pipeline.py
hanlp/components/rnn_language_model_tf.py
hanlp/components/amr/__init__.py
hanlp/components/amr/seq2seq/__init__.py
hanlp/components/amr/seq2seq/evaluation.py
hanlp/components/amr/seq2seq/optim.py
hanlp/components/amr/seq2seq/seq2seq_amr_parser.py
hanlp/components/amr/seq2seq/dataset/IO.py
hanlp/components/amr/seq2seq/dataset/__init__.py
hanlp/components/amr/seq2seq/dataset/dataset.py
hanlp/components/amr/seq2seq/dataset/linearization.py
hanlp/components/amr/seq2seq/dataset/penman.py
hanlp/components/amr/seq2seq/dataset/postprocessing.py
hanlp/components/amr/seq2seq/dataset/tokenization_bart.py
hanlp/components/amr/seq2seq/dataset/tokenization_t5.py
hanlp/components/classifiers/__init__.py
hanlp/components/classifiers/transformer_classifier.py
hanlp/components/classifiers/transformer_classifier_tf.py
hanlp/components/distillation/__init__.py
hanlp/components/distillation/distillable_component.py
hanlp/components/distillation/losses.py
hanlp/components/distillation/schedulers.py
hanlp/components/eos/__init__.py
hanlp/components/eos/ngram.py
hanlp/components/lm/__init__.py
hanlp/components/lm/mlm.py
hanlp/components/mtl/__init__.py
hanlp/components/mtl/multi_task_learning.py
hanlp/components/mtl/tasks/__init__.py
hanlp/components/mtl/tasks/amr.py
hanlp/components/mtl/tasks/constituency.py
hanlp/components/mtl/tasks/dep.py
hanlp/components/mtl/tasks/dep_2nd.py
hanlp/components/mtl/tasks/lem.py
hanlp/components/mtl/tasks/pos.py
hanlp/components/mtl/tasks/sdp.py
hanlp/components/mtl/tasks/ud.py
hanlp/components/mtl/tasks/ner/__init__.py
hanlp/components/mtl/tasks/ner/biaffine_ner.py
hanlp/components/mtl/tasks/ner/tag_ner.py
hanlp/components/mtl/tasks/srl/__init__.py
hanlp/components/mtl/tasks/srl/bio_srl.py
hanlp/components/mtl/tasks/srl/rank_srl.py
hanlp/components/mtl/tasks/tok/__init__.py
hanlp/components/mtl/tasks/tok/reg_tok.py
hanlp/components/mtl/tasks/tok/tag_tok.py
hanlp/components/ner/__init__.py
hanlp/components/ner/ner_tf.py
hanlp/components/ner/rnn_ner.py
hanlp/components/ner/transformer_ner.py
hanlp/components/ner/biaffine_ner/__init__.py
hanlp/components/ner/biaffine_ner/biaffine_ner.py
hanlp/components/ner/biaffine_ner/biaffine_ner_model.py
hanlp/components/parsers/__init__.py
hanlp/components/parsers/alg.py
hanlp/components/parsers/alg_tf.py
hanlp/components/parsers/biaffine_parser_tf.py
hanlp/components/parsers/chu_liu_edmonds.py
hanlp/components/parsers/conll.py
hanlp/components/parsers/parse_alg.py
hanlp/components/parsers/biaffine/__init__.py
hanlp/components/parsers/biaffine/biaffine.py
hanlp/components/parsers/biaffine/biaffine_2nd_dep.py
hanlp/components/parsers/biaffine/biaffine_dep.py
hanlp/components/parsers/biaffine/biaffine_model.py
hanlp/components/parsers/biaffine/biaffine_sdp.py
hanlp/components/parsers/biaffine/mlp.py
hanlp/components/parsers/biaffine/structual_attention.py
hanlp/components/parsers/biaffine/variationalbilstm.py
hanlp/components/parsers/biaffine_tf/__init__.py
hanlp/components/parsers/biaffine_tf/alg.py
hanlp/components/parsers/biaffine_tf/layers.py
hanlp/components/parsers/biaffine_tf/model.py
hanlp/components/parsers/constituency/__init__.py
hanlp/components/parsers/constituency/crf_constituency_model.py
hanlp/components/parsers/constituency/crf_constituency_parser.py
hanlp/components/parsers/constituency/treecrf.py
hanlp/components/parsers/ud/__init__.py
hanlp/components/parsers/ud/lemma_edit.py
hanlp/components/parsers/ud/tag_decoder.py
hanlp/components/parsers/ud/ud_model.py
hanlp/components/parsers/ud/ud_parser.py
hanlp/components/parsers/ud/udify_util.py
hanlp/components/parsers/ud/util.py
hanlp/components/srl/__init__.py
hanlp/components/srl/span_bio/__init__.py
hanlp/components/srl/span_bio/baffine_tagging.py
hanlp/components/srl/span_bio/span_bio.py
hanlp/components/srl/span_rank/__init__.py
hanlp/components/srl/span_rank/highway_variational_lstm.py
hanlp/components/srl/span_rank/inference_utils.py
hanlp/components/srl/span_rank/layer.py
hanlp/components/srl/span_rank/span_rank.py
hanlp/components/srl/span_rank/span_ranking_srl_model.py
hanlp/components/srl/span_rank/srl_eval_utils.py
hanlp/components/srl/span_rank/util.py
hanlp/components/sts/__init__.py
hanlp/components/sts/transformer_sts.py
hanlp/components/taggers/__init__.py
hanlp/components/taggers/cnn_tagger_tf.py
hanlp/components/taggers/pos_tf.py
hanlp/components/taggers/rnn_tagger.py
hanlp/components/taggers/rnn_tagger_tf.py
hanlp/components/taggers/tagger.py
hanlp/components/taggers/tagger_tf.py
hanlp/components/taggers/util.py
hanlp/components/taggers/ngram_conv/__init__.py
hanlp/components/taggers/ngram_conv/ngram_conv_tagger.py
hanlp/components/taggers/rnn/__init__.py
hanlp/components/taggers/rnn/rnntaggingmodel.py
hanlp/components/taggers/transformers/__init__.py
hanlp/components/taggers/transformers/metrics_tf.py
hanlp/components/taggers/transformers/transformer_tagger.py
hanlp/components/taggers/transformers/transformer_tagger_tf.py
hanlp/components/taggers/transformers/transformer_transform_tf.py
hanlp/components/tokenizers/__init__.py
hanlp/components/tokenizers/multi_criteria_cws_transformer.py
hanlp/components/tokenizers/tok.py
hanlp/components/tokenizers/tok_tf.py
hanlp/components/tokenizers/transformer.py
hanlp/datasets/__init__.py
hanlp/datasets/classification/__init__.py
hanlp/datasets/classification/sentiment.py
hanlp/datasets/coref/__init__.py
hanlp/datasets/coref/loaders/__init__.py
hanlp/datasets/coref/loaders/conll12coref.py
hanlp/datasets/eos/__init__.py
hanlp/datasets/eos/eos.py
hanlp/datasets/eos/loaders/__init__.py
hanlp/datasets/eos/loaders/nn_eos.py
hanlp/datasets/lm/__init__.py
hanlp/datasets/lm/loaders/__init__.py
hanlp/datasets/lm/loaders/lm_dataset.py
hanlp/datasets/lu/__init__.py
hanlp/datasets/lu/glue.py
hanlp/datasets/ner/__init__.py
hanlp/datasets/ner/conll03.py
hanlp/datasets/ner/msra.py
hanlp/datasets/ner/resume.py
hanlp/datasets/ner/weibo.py
hanlp/datasets/ner/loaders/__init__.py
hanlp/datasets/ner/loaders/json_ner.py
hanlp/datasets/ner/loaders/tsv.py
hanlp/datasets/parsing/__init__.py
hanlp/datasets/parsing/amr.py
hanlp/datasets/parsing/ctb5.py
hanlp/datasets/parsing/ctb7.py
hanlp/datasets/parsing/ctb8.py
hanlp/datasets/parsing/ctb9.py
hanlp/datasets/parsing/pmt1.py
hanlp/datasets/parsing/ptb.py
hanlp/datasets/parsing/semeval15.py
hanlp/datasets/parsing/semeval16.py
hanlp/datasets/parsing/loaders/__init__.py
hanlp/datasets/parsing/loaders/_ctb_utils.py
hanlp/datasets/parsing/loaders/conll_dataset.py
hanlp/datasets/parsing/loaders/constituency_dataset.py
hanlp/datasets/parsing/ud/__init__.py
hanlp/datasets/parsing/ud/ud23.py
hanlp/datasets/parsing/ud/ud23m.py
hanlp/datasets/parsing/ud/ud27.py
hanlp/datasets/parsing/ud/ud27m.py
hanlp/datasets/pos/__init__.py
hanlp/datasets/pos/ctb5.py
hanlp/datasets/qa/__init__.py
hanlp/datasets/qa/hotpotqa.py
hanlp/datasets/srl/__init__.py
hanlp/datasets/srl/loaders/__init__.py
hanlp/datasets/srl/loaders/conll2012.py
hanlp/datasets/srl/loaders/ontonotes_loader.py
hanlp/datasets/srl/ontonotes5/__init__.py
hanlp/datasets/srl/ontonotes5/_utils.py
hanlp/datasets/srl/ontonotes5/chinese.py
hanlp/datasets/srl/ontonotes5/english.py
hanlp/datasets/sts/__init__.py
hanlp/datasets/sts/stsb.py
hanlp/datasets/tokenization/__init__.py
hanlp/datasets/tokenization/ctb6.py
hanlp/datasets/tokenization/loaders/__init__.py
hanlp/datasets/tokenization/loaders/chunking_dataset.py
hanlp/datasets/tokenization/loaders/txt.py
hanlp/datasets/tokenization/loaders/multi_criteria_cws/__init__.py
hanlp/datasets/tokenization/loaders/multi_criteria_cws/mcws_dataset.py
hanlp/datasets/tokenization/sighan2005/__init__.py
hanlp/datasets/tokenization/sighan2005/as_.py
hanlp/datasets/tokenization/sighan2005/cityu.py
hanlp/datasets/tokenization/sighan2005/msr.py
hanlp/datasets/tokenization/sighan2005/pku.py
hanlp/layers/__init__.py
hanlp/layers/cnn_encoder.py
hanlp/layers/dropout.py
hanlp/layers/feed_forward.py
hanlp/layers/feedforward.py
hanlp/layers/scalar_mix.py
hanlp/layers/time_distributed.py
hanlp/layers/weight_normalization.py
hanlp/layers/crf/__init__.py
hanlp/layers/crf/crf.py
hanlp/layers/crf/crf_layer_tf.py
hanlp/layers/crf/crf_tf.py
hanlp/layers/embeddings/__init__.py
hanlp/layers/embeddings/char_cnn.py
hanlp/layers/embeddings/char_cnn_tf.py
hanlp/layers/embeddings/char_rnn.py
hanlp/layers/embeddings/char_rnn_tf.py
hanlp/layers/embeddings/concat_embedding.py
hanlp/layers/embeddings/contextual_string_embedding.py
hanlp/layers/embeddings/contextual_string_embedding_tf.py
hanlp/layers/embeddings/contextual_word_embedding.py
hanlp/layers/embeddings/embedding.py
hanlp/layers/embeddings/fast_text.py
hanlp/layers/embeddings/fast_text_tf.py
hanlp/layers/embeddings/util.py
hanlp/layers/embeddings/util_tf.py
hanlp/layers/embeddings/word2vec.py
hanlp/layers/embeddings/word2vec_tf.py
hanlp/layers/transformers/__init__.py
hanlp/layers/transformers/encoder.py
hanlp/layers/transformers/loader_tf.py
hanlp/layers/transformers/pt_imports.py
hanlp/layers/transformers/relative_transformer.py
hanlp/layers/transformers/resource.py
hanlp/layers/transformers/tf_imports.py
hanlp/layers/transformers/utils.py
hanlp/layers/transformers/utils_tf.py
hanlp/losses/__init__.py
hanlp/losses/sparse_categorical_crossentropy.py
hanlp/metrics/__init__.py
hanlp/metrics/accuracy.py
hanlp/metrics/f1.py
hanlp/metrics/metric.py
hanlp/metrics/mtl.py
hanlp/metrics/spearman_correlation.py
hanlp/metrics/amr/__init__.py
hanlp/metrics/amr/smatch_eval.py
hanlp/metrics/chunking/__init__.py
hanlp/metrics/chunking/binary_chunking_f1.py
hanlp/metrics/chunking/bmes_tf.py
hanlp/metrics/chunking/chunking_f1.py
hanlp/metrics/chunking/chunking_f1_tf.py
hanlp/metrics/chunking/conlleval.py
hanlp/metrics/chunking/iobes_tf.py
hanlp/metrics/chunking/sequence_labeling.py
hanlp/metrics/parsing/__init__.py
hanlp/metrics/parsing/attachmentscore.py
hanlp/metrics/parsing/conllx_eval.py
hanlp/metrics/parsing/labeled_f1.py
hanlp/metrics/parsing/labeled_f1_tf.py
hanlp/metrics/parsing/labeled_score.py
hanlp/metrics/parsing/semdep_eval.py
hanlp/metrics/parsing/span.py
hanlp/metrics/srl/__init__.py
hanlp/metrics/srl/srlconll.py
hanlp/optimizers/__init__.py
hanlp/optimizers/adamw/__init__.py
hanlp/optimizers/adamw/optimization.py
hanlp/pretrained/__init__.py
hanlp/pretrained/amr.py
hanlp/pretrained/classifiers.py
hanlp/pretrained/constituency.py
hanlp/pretrained/dep.py
hanlp/pretrained/eos.py
hanlp/pretrained/fasttext.py
hanlp/pretrained/glove.py
hanlp/pretrained/mtl.py
hanlp/pretrained/ner.py
hanlp/pretrained/pos.py
hanlp/pretrained/rnnlm.py
hanlp/pretrained/sdp.py
hanlp/pretrained/srl.py
hanlp/pretrained/sts.py
hanlp/pretrained/tok.py
hanlp/pretrained/word2vec.py
hanlp/transform/__init__.py
hanlp/transform/conll_tf.py
hanlp/transform/glue_tf.py
hanlp/transform/table_tf.py
hanlp/transform/tacred_tf.py
hanlp/transform/text_tf.py
hanlp/transform/transformer_tokenizer.py
hanlp/transform/tsv_tf.py
hanlp/transform/txt_tf.py
hanlp/utils/__init__.py
hanlp/utils/component_util.py
hanlp/utils/init_util.py
hanlp/utils/io_util.py
hanlp/utils/log_util.py
hanlp/utils/rules.py
hanlp/utils/span_util.py
hanlp/utils/string_util.py
hanlp/utils/tf_util.py
hanlp/utils/time_util.py
hanlp/utils/torch_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/en/__init__.py
hanlp/utils/lang/en/english_tokenizer.py
hanlp/utils/lang/ja/__init__.py
hanlp/utils/lang/ja/bert_tok.py
hanlp/utils/lang/zh/__init__.py
hanlp/utils/lang/zh/char_table.py
hanlp/utils/lang/zh/localization.py