Views
No views yet
1
2from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
3#Load the tokenizer
4tokenizer = AutoTokenizer.from_pretrained("geekydevu/bart-qg-mlquestions-backtraining")
5#Load the model
6model = AutoModelForSeq2SeqLM.from_pretrained("geekydevu/bart-qg-mlquestions-backtraining")1@inproceedings{kulshreshtha-etal-2021-back,
2 title = "Back-Training excels Self-Training at Unsupervised Domain Adaptation of Question Generation and Passage Retrieval",
3 author = "Kulshreshtha, Devang and
4 Belfer, Robert and
5 Serban, Iulian Vlad and
6 Reddy, Siva",
7 booktitle = "Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing",
8 month = nov,
9 year = "2021",
10 address = "Online and Punta Cana, Dominican Republic",
11 publisher = "Association for Computational Linguistics",
12 url = "https://aclanthology.org/2021.emnlp-main.566",
13 pages = "7064--7078",
14 abstract = "In this work, we introduce back-training, an alternative to self-training for unsupervised domain adaptation (UDA). While self-training generates synthetic training data where natural inputs are aligned with noisy outputs, back-training results in natural outputs aligned with noisy inputs. This significantly reduces the gap between target domain and synthetic data distribution, and reduces model overfitting to source domain. We run UDA experiments on question generation and passage retrieval from the Natural Questions domain to machine learning and biomedical domains. We find that back-training vastly outperforms self-training by a mean improvement of 7.8 BLEU-4 points on generation, and 17.6{\%} top-20 retrieval accuracy across both domains. We further propose consistency filters to remove low-quality synthetic data before training. We also release a new domain-adaptation dataset - MLQuestions containing 35K unaligned questions, 50K unaligned passages, and 3K aligned question-passage pairs.",
15}Created by Devang Kulshreshtha
Made with ♥ in Spain