Salesforce / mixqg-base

huggingface.co
Total runs: 33
24-hour runs: -3
7-day runs: 4
30-day runs: -57
Model's Last Updated: January 15 2025
text-generation

Introduction of mixqg-base

Model Details of mixqg-base

MixQG (base-sized model)

MixQG is a new question generation model pre-trained on a collection of QA datasets with a mix of answer types. It was introduced in the paper MixQG: Neural Question Generation with Mixed Answer Types and the associated code is released in this repository.

How to use

Using Huggingface pipeline abstraction:

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

33
Total runs
-3
24-hour runs
0
3-day runs
4
7-day runs
-57
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.

Salesforce mixqg-base online free

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:

https://huggingface.co/Salesforce/mixqg-base

mixqg-base install

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.

mixqg-base install url in huggingface.co:

https://huggingface.co/Salesforce/mixqg-base

Url of mixqg-base

Provider of mixqg-base huggingface.co

Salesforce
ORGANIZATIONS

Other API from Salesforce

huggingface.co

Total runs: 106.8K
Run Growth: 12.6K
Growth Rate: 12.08%
Updated:February 03 2025
huggingface.co

Total runs: 80.1K
Run Growth: 80.0K
Growth Rate: 99.89%
Updated:April 12 2025
huggingface.co

Total runs: 1.5K
Run Growth: 361
Growth Rate: 57.76%
Updated:January 21 2025
huggingface.co

Total runs: 250
Run Growth: -278
Growth Rate: -111.20%
Updated:January 15 2025
huggingface.co

Total runs: 150
Run Growth: -3
Growth Rate: -2.00%
Updated:November 05 2025
huggingface.co

Total runs: 146
Run Growth: -4.9K
Growth Rate: -3328.57%
Updated:October 04 2025