├── .gitignore ├── FINETUNING_RESULT.md ├── LICENSE ├── README.md ├── assets ├── cardiff_nlp_logo.png └── cardiff_nlp_logo_name.png ├── setup.cfg ├── setup.py ├── tests ├── test_load_dataset.py ├── test_models.py ├── test_qa_qag.py ├── test_sentence_embedding.py ├── test_trainer.py ├── test_trainer_tweet_eval.csv ├── test_trainer_tweet_eval.py ├── test_trainer_tweet_others.csv └── test_trainer_tweet_others.py └── tweetnlp ├── __init__.py ├── loader.py ├── mlm ├── __init__.py └── model.py ├── ner ├── __init__.py ├── allennlp_crf.py ├── dataset.py ├── model.py └── trainer.py ├── question_answer_generation ├── __init__.py ├── dataset.py └── model.py ├── question_answering ├── __init__.py ├── dataset.py └── model.py ├── sentence_embedding ├── __init__.py └── model.py ├── text_classification ├── __init__.py ├── dataset.py ├── model.py ├── readme_template.py └── trainer.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | metric_files 2 | tmp* 3 | _resource 4 | -------------------------------------------------------------------------------- /FINETUNING_RESULT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/FINETUNING_RESULT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/README.md -------------------------------------------------------------------------------- /assets/cardiff_nlp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/assets/cardiff_nlp_logo.png -------------------------------------------------------------------------------- /assets/cardiff_nlp_logo_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/assets/cardiff_nlp_logo_name.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_load_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tests/test_load_dataset.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_qa_qag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tests/test_qa_qag.py -------------------------------------------------------------------------------- /tests/test_sentence_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tests/test_sentence_embedding.py -------------------------------------------------------------------------------- /tests/test_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tests/test_trainer.py -------------------------------------------------------------------------------- /tests/test_trainer_tweet_eval.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tests/test_trainer_tweet_eval.csv -------------------------------------------------------------------------------- /tests/test_trainer_tweet_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tests/test_trainer_tweet_eval.py -------------------------------------------------------------------------------- /tests/test_trainer_tweet_others.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tests/test_trainer_tweet_others.csv -------------------------------------------------------------------------------- /tests/test_trainer_tweet_others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tests/test_trainer_tweet_others.py -------------------------------------------------------------------------------- /tweetnlp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/__init__.py -------------------------------------------------------------------------------- /tweetnlp/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/loader.py -------------------------------------------------------------------------------- /tweetnlp/mlm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweetnlp/mlm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/mlm/model.py -------------------------------------------------------------------------------- /tweetnlp/ner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweetnlp/ner/allennlp_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/ner/allennlp_crf.py -------------------------------------------------------------------------------- /tweetnlp/ner/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/ner/dataset.py -------------------------------------------------------------------------------- /tweetnlp/ner/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/ner/model.py -------------------------------------------------------------------------------- /tweetnlp/ner/trainer.py: -------------------------------------------------------------------------------- 1 | # TODO -------------------------------------------------------------------------------- /tweetnlp/question_answer_generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweetnlp/question_answer_generation/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/question_answer_generation/dataset.py -------------------------------------------------------------------------------- /tweetnlp/question_answer_generation/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/question_answer_generation/model.py -------------------------------------------------------------------------------- /tweetnlp/question_answering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweetnlp/question_answering/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/question_answering/dataset.py -------------------------------------------------------------------------------- /tweetnlp/question_answering/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/question_answering/model.py -------------------------------------------------------------------------------- /tweetnlp/sentence_embedding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweetnlp/sentence_embedding/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/sentence_embedding/model.py -------------------------------------------------------------------------------- /tweetnlp/text_classification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweetnlp/text_classification/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/text_classification/dataset.py -------------------------------------------------------------------------------- /tweetnlp/text_classification/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/text_classification/model.py -------------------------------------------------------------------------------- /tweetnlp/text_classification/readme_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/text_classification/readme_template.py -------------------------------------------------------------------------------- /tweetnlp/text_classification/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/text_classification/trainer.py -------------------------------------------------------------------------------- /tweetnlp/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardiffnlp/tweetnlp/HEAD/tweetnlp/util.py --------------------------------------------------------------------------------