LICENSE
MANIFEST.in
README.md
requirements.txt
setup.py
FastNLP.egg-info/PKG-INFO
FastNLP.egg-info/SOURCES.txt
FastNLP.egg-info/dependency_links.txt
FastNLP.egg-info/requires.txt
FastNLP.egg-info/top_level.txt
fastNLP/__init__.py
fastNLP/doc_utils.py
fastNLP/core/__init__.py
fastNLP/core/_logger.py
fastNLP/core/_parallel_utils.py
fastNLP/core/batch.py
fastNLP/core/callback.py
fastNLP/core/collate_fn.py
fastNLP/core/const.py
fastNLP/core/dataset.py
fastNLP/core/dist_trainer.py
fastNLP/core/field.py
fastNLP/core/instance.py
fastNLP/core/losses.py
fastNLP/core/metrics.py
fastNLP/core/optimizer.py
fastNLP/core/predictor.py
fastNLP/core/sampler.py
fastNLP/core/tester.py
fastNLP/core/trainer.py
fastNLP/core/utils.py
fastNLP/core/vocabulary.py
fastNLP/embeddings/__init__.py
fastNLP/embeddings/bert_embedding.py
fastNLP/embeddings/char_embedding.py
fastNLP/embeddings/contextual_embedding.py
fastNLP/embeddings/elmo_embedding.py
fastNLP/embeddings/embedding.py
fastNLP/embeddings/gpt2_embedding.py
fastNLP/embeddings/roberta_embedding.py
fastNLP/embeddings/stack_embedding.py
fastNLP/embeddings/static_embedding.py
fastNLP/embeddings/transformers_embedding.py
fastNLP/embeddings/utils.py
fastNLP/io/__init__.py
fastNLP/io/data_bundle.py
fastNLP/io/embed_loader.py
fastNLP/io/file_reader.py
fastNLP/io/file_utils.py
fastNLP/io/model_io.py
fastNLP/io/utils.py
fastNLP/io/loader/__init__.py
fastNLP/io/loader/classification.py
fastNLP/io/loader/conll.py
fastNLP/io/loader/coreference.py
fastNLP/io/loader/csv.py
fastNLP/io/loader/cws.py
fastNLP/io/loader/json.py
fastNLP/io/loader/loader.py
fastNLP/io/loader/matching.py
fastNLP/io/loader/qa.py
fastNLP/io/loader/summarization.py
fastNLP/io/pipe/__init__.py
fastNLP/io/pipe/classification.py
fastNLP/io/pipe/conll.py
fastNLP/io/pipe/coreference.py
fastNLP/io/pipe/cws.py
fastNLP/io/pipe/matching.py
fastNLP/io/pipe/pipe.py
fastNLP/io/pipe/qa.py
fastNLP/io/pipe/summarization.py
fastNLP/io/pipe/utils.py
fastNLP/models/__init__.py
fastNLP/models/base_model.py
fastNLP/models/bert.py
fastNLP/models/biaffine_parser.py
fastNLP/models/cnn_text_classification.py
fastNLP/models/seq2seq_generator.py
fastNLP/models/seq2seq_model.py
fastNLP/models/sequence_labeling.py
fastNLP/models/snli.py
fastNLP/models/star_transformer.py
fastNLP/modules/__init__.py
fastNLP/modules/attention.py
fastNLP/modules/dropout.py
fastNLP/modules/utils.py
fastNLP/modules/decoder/__init__.py
fastNLP/modules/decoder/crf.py
fastNLP/modules/decoder/mlp.py
fastNLP/modules/decoder/seq2seq_decoder.py
fastNLP/modules/decoder/seq2seq_state.py
fastNLP/modules/decoder/utils.py
fastNLP/modules/encoder/__init__.py
fastNLP/modules/encoder/_elmo.py
fastNLP/modules/encoder/bert.py
fastNLP/modules/encoder/char_encoder.py
fastNLP/modules/encoder/conv_maxpool.py
fastNLP/modules/encoder/gpt2.py
fastNLP/modules/encoder/lstm.py
fastNLP/modules/encoder/pooling.py
fastNLP/modules/encoder/roberta.py
fastNLP/modules/encoder/seq2seq_encoder.py
fastNLP/modules/encoder/star_transformer.py
fastNLP/modules/encoder/transformer.py
fastNLP/modules/encoder/variational_rnn.py
fastNLP/modules/generator/__init__.py
fastNLP/modules/generator/seq2seq_generator.py
fastNLP/modules/tokenizer/__init__.py
fastNLP/modules/tokenizer/bert_tokenizer.py
fastNLP/modules/tokenizer/gpt2_tokenizer.py
fastNLP/modules/tokenizer/roberta_tokenizer.py