This is the single-dataset adapter for the HotpotQA partition of the MRQA 2019 Shared Task Dataset. The adapter was created by Friedman et al. (2021) and should be used with the roberta-base encoder.
The UKP-SQuARE team created this model repository to simplify the deployment of this model on the UKP-SQuARE platform. The GitHub repository of the original authors is https://github.com/princeton-nlp/MADE
from transformers import RobertaForQuestionAnswering, RobertaTokenizerFast
model = RobertaForQuestionAnswering.from_pretrained("roberta-base")
model.load_adapter("UKP-SQuARE/HotpotQA_Adapter_RoBERTa", source="hf")
model.set_active_adapters("HotpotQA")
tokenizer = RobertaTokenizerFast.from_pretrained('roberta-base')
pipe = pipeline("question-answering", model=model, tokenizer=tokenizer)
pipe({"question": "What is the capital of Germany?", "context": "The capital of Germany is Berlin."})