--- license: apache-2.0 datasets: iarfmoose/qa_evaluator --- # viniLM-2021-qa-evaluator This model takes a question answer pair as an input and outputs a value representing its prediction about whether the input was a valid question and answer pair or not. The model is a pretrained [viniLM-2021](https://huggingface.co/VMware/vinilm-2021-from-large) with a sequence classification head. Observationally, this model produces similar results as the original [BERT-Base-cased QA Evaluator](https://huggingface.co/iarfmoose/bert-base-cased-qa-evaluator), but inference is twice as fast. ## Intended uses The QA evaluator was originally designed to be used with the [t5-base-question-generator](https://huggingface.co/iarfmoose/t5-base-question-generator) for evaluating the quality of generated questions. The input for the QA evaluator follows the format for `BertForSequenceClassification`, but using the question and answer as the two sequences. Inputs should take the following format: ``` [CLS] [SEP] [SEP] ``` ## Limitations and bias The model is trained to evaluate if a question and answer are semantically related, but cannot determine whether an answer is actually true/correct or not. ## Training data This model was trained with the same [dataset](https://huggingface.co/datasets/iarfmoose/qa_evaluator) as the original [BERT-Base-cased QA Evaluator](https://huggingface.co/iarfmoose/bert-base-cased-qa-evaluator), which is made up of question-answer pairs from the following datasets: - [SQuAD](https://rajpurkar.github.io/SQuAD-explorer/) - [RACE](http://www.cs.cmu.edu/~glai1/data/race/) - [CoQA](https://stanfordnlp.github.io/coqa/) - [MSMARCO](https://microsoft.github.io/msmarco/) ## Training procedure The question and answer were concatenated 50% of the time. In the other 50% of the time a corruption operation was performed (either swapping the answer for an unrelated answer, or by copying part of the question into the answer). The model was then trained to predict whether the input sequence represented one of the original QA pairs or a corrupted input.