from transformers import pipeline
nlp = pipeline("text2text-generation", model='Salesforce/mixqg-base', tokenizer='Salesforce/mixqg-base')
CONTEXT = "In the late 17th century, Robert Boyle proved that air is necessary for combustion."
ANSWER = "Robert Boyle"
def format_inputs(context: str, answer: str):
return f"{answer} \\n {context}"
text = format_inputs(CONTEXT, ANSWER)
nlp(text)
# should output [{'generated_text': 'Who proved that air is necessary for combustion?'}]
Using the pre-trained model directly:
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained('Salesforce/mixqg-base')
model = AutoModelForSeq2SeqLM.from_pretrained('Salesforce/mixqg-base')
CONTEXT = "In the late 17th century, Robert Boyle proved that air is necessary for combustion."
ANSWER = "Robert Boyle"
def format_inputs(context: str, answer: str):
return f"{answer} \\n {context}"
text = format_inputs(CONTEXT, ANSWER)
input_ids = tokenizer(text, return_tensors="pt").input_ids
generated_ids = model.generate(input_ids, max_length=32, num_beams=4)
output = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)
print(output)
# should output "Who proved that air is necessary for combustion?"
Citation
@misc{murakhovska2021mixqg,
title={MixQG: Neural Question Generation with Mixed Answer Types},
author={Lidiya Murakhovs'ka and Chien-Sheng Wu and Tong Niu and Wenhao Liu and Caiming Xiong},
year={2021},
eprint={2110.08175},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
Runs of Salesforce mixqg-base on huggingface.co
50
Total runs
0
24-hour runs
2
3-day runs
0
7-day runs
-58
30-day runs
More Information About mixqg-base huggingface.co Model
mixqg-base huggingface.co
mixqg-base huggingface.co is an AI model on huggingface.co that provides mixqg-base's model effect (), which can be used instantly with this Salesforce mixqg-base model. huggingface.co supports a free trial of the mixqg-base model, and also provides paid use of the mixqg-base. Support call mixqg-base model through api, including Node.js, Python, http.
mixqg-base huggingface.co is an online trial and call api platform, which integrates mixqg-base's modeling effects, including api services, and provides a free online trial of mixqg-base, you can try mixqg-base online for free by clicking the link below.
Salesforce mixqg-base online free url in huggingface.co:
mixqg-base is an open source model from GitHub that offers a free installation service, and any user can find mixqg-base on GitHub to install. At the same time, huggingface.co provides the effect of mixqg-base install, users can directly use mixqg-base installed effect in huggingface.co for debugging and trial. It also supports api for free installation.