Salesforce / mixqg-base

huggingface.co
Total runs: 50
24-hour runs: 0
7-day runs: 0
30-day runs: -58
Model's Last Updated: January 15 2025
text2text-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

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.

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: 41.7K
Run Growth: -9.1K
Growth Rate: -21.92%
Updated: January 21 2025
huggingface.co

Total runs: 8.5K
Run Growth: 1.2K
Growth Rate: 15.14%
Updated: February 19 2024
huggingface.co

Total runs: 3.3K
Run Growth: 1.1K
Growth Rate: 32.37%
Updated: January 25 2025
huggingface.co

Total runs: 586
Run Growth: 510
Growth Rate: 87.03%
Updated: January 21 2025
huggingface.co

Total runs: 542
Run Growth: 265
Growth Rate: 46.01%
Updated: January 21 2025
huggingface.co

Total runs: 290
Run Growth: -31
Growth Rate: -12.02%
Updated: January 15 2025