diff --git a/demo/tutorials/misc/Loading_Data_with_Custom_Columns.ipynb b/demo/tutorials/misc/Loading_Data_with_Custom_Columns.ipynb
new file mode 100644
index 000000000..08924c910
--- /dev/null
+++ b/demo/tutorials/misc/Loading_Data_with_Custom_Columns.ipynb
@@ -0,0 +1,7435 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ ""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "[](https://colab.research.google.com/github/JohnSnowLabs/langtest/blob/main/demo/tutorials/misc/custom_column_csv.ipynb)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "**LangTest** is an open-source python library designed to help developers deliver safe and effective Natural Language Processing (NLP) models. Whether you are using **John Snow Labs, Hugging Face, Spacy** models or **OpenAI, Cohere, AI21, Hugging Face Inference API and Azure-OpenAI** based LLMs, it has got you covered. You can test any Named Entity Recognition (NER), Text Classification model using the library. We also support testing LLMS for Question-Answering and Summarization tasks on benchmark datasets. The library supports 50+ out of the box tests. These tests fall into robustness, accuracy, bias, representation, toxicity and fairness test categories.\n",
+ "\n",
+ "Metrics are calculated by comparing the model's extractions in the original list of sentences against the extractions carried out in the noisy list of sentences. The original annotated labels are not used at any point, we are simply comparing the model against itself in a 2 settings."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Getting started with LangTest"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "vZhP806JRkdE",
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "!pip install \"langtest[langchain,openai,transformers,evaluate]\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Harness and Its Parameters\n",
+ "\n",
+ "The Harness class is a testing class for Natural Language Processing (NLP) models. It evaluates the performance of a NLP model on a given task using test data and generates a report with test results.Harness can be imported from the LangTest library in the following way."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {
+ "execution": {
+ "iopub.execute_input": "2023-08-18T11:18:48.937990Z",
+ "iopub.status.busy": "2023-08-18T11:18:48.937430Z",
+ "iopub.status.idle": "2023-08-18T11:18:50.488391Z",
+ "shell.execute_reply": "2023-08-18T11:18:50.487834Z",
+ "shell.execute_reply.started": "2023-08-18T11:18:48.937968Z"
+ },
+ "executionInfo": {
+ "elapsed": 688,
+ "status": "ok",
+ "timestamp": 1692355615490,
+ "user": {
+ "displayName": "Prikshit sharma",
+ "userId": "07819241395213139913"
+ },
+ "user_tz": -330
+ },
+ "id": "CCGUqqIPQPVa",
+ "tags": []
+ },
+ "outputs": [],
+ "source": [
+ "from langtest import Harness"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "It imports the Harness class from within the module, that is designed to provide a blueprint or framework for conducting NLP testing, and that instances of the Harness class can be customized or configured for different testing scenarios or environments.\n",
+ "\n",
+ "Here is a list of the different parameters that can be passed to the Harness function:\n",
+ "\n",
+ "
\n",
+ "\n",
+ "\n",
+ "\n",
+ "| Parameter | Description |\n",
+ "| ------------- | ----------- |\n",
+ "| **task** | Task for which the model is to be evaluated (text-classification or ner) |\n",
+ "| **model** | Specifies the model(s) to be evaluated. Can be a dictionary or a list of dictionaries. Each dictionary should contain 'model' and 'hub' keys. If a path is specified, the dictionary must contain 'model' and 'hub' keys. |\n",
+ "| **data** | The data to be used for evaluation. A dictionary providing flexibility and options for data sources. It should include the following keys:
| \n", + " | category | \n", + "test_type | \n", + "original | \n", + "test_case | \n", + "
|---|---|---|---|---|
| 0 | \n", + "accuracy | \n", + "min_macro_f1_score | \n", + "- | \n", + "macro | \n", + "
| 1 | \n", + "robustness | \n", + "add_typo | \n", + "One of the other reviewers has mentioned that ... | \n", + "One of the other reviewers has mentioned that ... | \n", + "
| 2 | \n", + "robustness | \n", + "add_typo | \n", + "A wonderful little production. <br /><br />The... | \n", + "A wonderful little production. <br /><br />The... | \n", + "
| 3 | \n", + "robustness | \n", + "add_typo | \n", + "I thought this was a wonderful way to spend ti... | \n", + "I thought this was a wonderful way to spend ti... | \n", + "
| 4 | \n", + "robustness | \n", + "add_typo | \n", + "Basically there's a family where a little boy ... | \n", + "Basically there's a family where s little boy ... | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 2996 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "Nothing is sacred. Just ask Ernie Fosselius. T... | \n", + "Nothing is sacred. Just ask Ernie Fosselius. T... | \n", + "
| 2997 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "I hated it. I hate self-aware pretentious inan... | \n", + "I hated it. I hate self-aware pretentious inan... | \n", + "
| 2998 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "I usually try to be professional and construct... | \n", + "I usually try to be professional and construct... | \n", + "
| 2999 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "If you like me is going to see this in a film ... | \n", + "If you like me is going to see this in a film ... | \n", + "
| 3000 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "This is like a zoology textbook, given that it... | \n", + "This is like a zoology textbook, given that it... | \n", + "
3001 rows × 4 columns
\n", + "| \n", + " | category | \n", + "test_type | \n", + "original | \n", + "test_case | \n", + "expected_result | \n", + "actual_result | \n", + "pass | \n", + "
|---|---|---|---|---|---|---|---|
| 0 | \n", + "accuracy | \n", + "min_macro_f1_score | \n", + "- | \n", + "macro | \n", + "0.7 | \n", + "0.0 | \n", + "False | \n", + "
| 1 | \n", + "robustness | \n", + "add_typo | \n", + "One of the other reviewers has mentioned that ... | \n", + "One of the other reviewers has mentioned that ... | \n", + "POSITIVE | \n", + "POSITIVE | \n", + "True | \n", + "
| 2 | \n", + "robustness | \n", + "add_typo | \n", + "A wonderful little production. <br /><br />The... | \n", + "A wonderful little production. <br /><br />The... | \n", + "POSITIVE | \n", + "POSITIVE | \n", + "True | \n", + "
| 3 | \n", + "robustness | \n", + "add_typo | \n", + "I thought this was a wonderful way to spend ti... | \n", + "I thought this was a wonderful way to spend ti... | \n", + "POSITIVE | \n", + "POSITIVE | \n", + "True | \n", + "
| 4 | \n", + "robustness | \n", + "add_typo | \n", + "Basically there's a family where a little boy ... | \n", + "Basically there's a family where s little boy ... | \n", + "NEGATIVE | \n", + "NEGATIVE | \n", + "True | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 2996 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "Nothing is sacred. Just ask Ernie Fosselius. T... | \n", + "Nothing is sacred. Just ask Ernie Fosselius. T... | \n", + "POSITIVE | \n", + "POSITIVE | \n", + "True | \n", + "
| 2997 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "I hated it. I hate self-aware pretentious inan... | \n", + "I hated it. I hate self-aware pretentious inan... | \n", + "NEGATIVE | \n", + "NEGATIVE | \n", + "True | \n", + "
| 2998 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "I usually try to be professional and construct... | \n", + "I usually try to be professional and construct... | \n", + "NEGATIVE | \n", + "NEGATIVE | \n", + "True | \n", + "
| 2999 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "If you like me is going to see this in a film ... | \n", + "If you like me is going to see this in a film ... | \n", + "NEGATIVE | \n", + "NEGATIVE | \n", + "True | \n", + "
| 3000 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "This is like a zoology textbook, given that it... | \n", + "This is like a zoology textbook, given that it... | \n", + "NEGATIVE | \n", + "NEGATIVE | \n", + "True | \n", + "
3001 rows × 7 columns
\n", + "| \n", + " | category | \n", + "test_type | \n", + "fail_count | \n", + "pass_count | \n", + "pass_rate | \n", + "minimum_pass_rate | \n", + "pass | \n", + "
|---|---|---|---|---|---|---|---|
| 0 | \n", + "accuracy | \n", + "min_macro_f1_score | \n", + "1 | \n", + "0 | \n", + "0% | \n", + "50% | \n", + "False | \n", + "
| 1 | \n", + "robustness | \n", + "add_typo | \n", + "9 | \n", + "991 | \n", + "99% | \n", + "70% | \n", + "True | \n", + "
| 2 | \n", + "robustness | \n", + "lowercase | \n", + "0 | \n", + "1000 | \n", + "100% | \n", + "70% | \n", + "True | \n", + "
| 3 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "1 | \n", + "999 | \n", + "100% | \n", + "70% | \n", + "True | \n", + "
| \n", + " | category | \n", + "test_type | \n", + "original | \n", + "test_case | \n", + "
|---|---|---|---|---|
| 0 | \n", + "robustness | \n", + "add_typo | \n", + "This division also contains the Ventana Wilder... | \n", + "This division also contsins the Ventana Wilder... | \n", + "
| 1 | \n", + "robustness | \n", + "add_typo | \n", + "\" So here is the balance NBC has to consider :... | \n", + "\" So here is the balance NBC has to consider :... | \n", + "
| 2 | \n", + "robustness | \n", + "add_typo | \n", + "It is a protest song that \" creates a cinemati... | \n", + "It is a protest song that \" creates a cinemati... | \n", + "
| 3 | \n", + "robustness | \n", + "add_typo | \n", + "This differs from approaches such as IP or Eth... | \n", + "This differs from approaches such as IP or Eyh... | \n", + "
| 4 | \n", + "robustness | \n", + "add_typo | \n", + "Since then , only Terry Bradshaw in 147 games ... | \n", + "Since then , only Terry Bradshaw ia 147 games ... | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 404 | \n", + "representation | \n", + "min_label_representation_count | \n", + "- | \n", + "LOC | \n", + "
| 405 | \n", + "representation | \n", + "min_label_representation_count | \n", + "- | \n", + "MISC | \n", + "
| 406 | \n", + "representation | \n", + "min_label_representation_count | \n", + "- | \n", + "ORG | \n", + "
| 407 | \n", + "representation | \n", + "min_label_representation_count | \n", + "- | \n", + "PER | \n", + "
| 408 | \n", + "representation | \n", + "min_label_representation_count | \n", + "- | \n", + "O | \n", + "
409 rows × 4 columns
\n", + "| \n", + " | category | \n", + "test_type | \n", + "original | \n", + "test_case | \n", + "expected_result | \n", + "actual_result | \n", + "pass | \n", + "
|---|---|---|---|---|---|---|---|
| 0 | \n", + "robustness | \n", + "add_typo | \n", + "This division also contains the Ventana Wilder... | \n", + "This division also contsins the Ventana Wilder... | \n", + "Ventana Wilderness: LOC, California: LOC | \n", + "Ventana Wilderness: LOC, California: LOC | \n", + "True | \n", + "
| 1 | \n", + "robustness | \n", + "add_typo | \n", + "\" So here is the balance NBC has to consider :... | \n", + "\" So here is the balance NBC has to consider :... | \n", + "NBC: ORG, The Who: MISC, Animal Practice: MISC | \n", + "NBC: ORG, Xho: MISC, Animal Practice: MISC | \n", + "False | \n", + "
| 2 | \n", + "robustness | \n", + "add_typo | \n", + "It is a protest song that \" creates a cinemati... | \n", + "It is a protest song that \" creates a cinemati... | \n", + "America: LOC | \n", + "America: LOC | \n", + "True | \n", + "
| 3 | \n", + "robustness | \n", + "add_typo | \n", + "This differs from approaches such as IP or Eth... | \n", + "This differs from approaches such as IP or Eyh... | \n", + "IP: MISC, Ethernet: MISC | \n", + "IP: MISC, Eyhernet: MISC | \n", + "True | \n", + "
| 4 | \n", + "robustness | \n", + "add_typo | \n", + "Since then , only Terry Bradshaw in 147 games ... | \n", + "Since then , only Terry Bradshaw ia 147 games ... | \n", + "Terry Bradshaw: PER, Joe Montana: PER, Tom Bra... | \n", + "Terry Bradshaw: PER, Joe Montana: PER, Tom Bra... | \n", + "True | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 404 | \n", + "representation | \n", + "min_label_representation_count | \n", + "- | \n", + "LOC | \n", + "50.0 | \n", + "128.0 | \n", + "True | \n", + "
| 405 | \n", + "representation | \n", + "min_label_representation_count | \n", + "- | \n", + "MISC | \n", + "50.0 | \n", + "80.0 | \n", + "True | \n", + "
| 406 | \n", + "representation | \n", + "min_label_representation_count | \n", + "- | \n", + "ORG | \n", + "50.0 | \n", + "43.0 | \n", + "False | \n", + "
| 407 | \n", + "representation | \n", + "min_label_representation_count | \n", + "- | \n", + "PER | \n", + "50.0 | \n", + "51.0 | \n", + "True | \n", + "
| 408 | \n", + "representation | \n", + "min_label_representation_count | \n", + "- | \n", + "O | \n", + "50.0 | \n", + "2001.0 | \n", + "True | \n", + "
409 rows × 7 columns
\n", + "| \n", + " | category | \n", + "test_type | \n", + "fail_count | \n", + "pass_count | \n", + "pass_rate | \n", + "minimum_pass_rate | \n", + "pass | \n", + "
|---|---|---|---|---|---|---|---|
| 0 | \n", + "robustness | \n", + "add_typo | \n", + "10 | \n", + "90 | \n", + "90% | \n", + "70% | \n", + "True | \n", + "
| 1 | \n", + "robustness | \n", + "american_to_british | \n", + "2 | \n", + "98 | \n", + "98% | \n", + "70% | \n", + "True | \n", + "
| 2 | \n", + "accuracy | \n", + "min_micro_f1_score | \n", + "0 | \n", + "1 | \n", + "100% | \n", + "100% | \n", + "True | \n", + "
| 3 | \n", + "bias | \n", + "replace_to_female_pronouns | \n", + "0 | \n", + "100 | \n", + "100% | \n", + "70% | \n", + "True | \n", + "
| 4 | \n", + "bias | \n", + "replace_to_low_income_country | \n", + "2 | \n", + "98 | \n", + "98% | \n", + "70% | \n", + "True | \n", + "
| 5 | \n", + "fairness | \n", + "min_gender_f1_score | \n", + "0 | \n", + "3 | \n", + "100% | \n", + "100% | \n", + "True | \n", + "
| 6 | \n", + "representation | \n", + "min_label_representation_count | \n", + "1 | \n", + "4 | \n", + "80% | \n", + "100% | \n", + "False | \n", + "
| \n", + " | category | \n", + "test_type | \n", + "original_context | \n", + "original_question | \n", + "perturbed_context | \n", + "perturbed_question | \n", + "
|---|---|---|---|---|---|---|
| 0 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyonce start becoming popular? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyonce start brcoming popular? | \n", + "
| 1 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What areas did Beyonce compete in when she was... | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What areas did Beyonce compete in whrn she was... | \n", + "
| 2 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyonce leave Destiny's Child and bec... | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beypnce leave Destiny's Child and bec... | \n", + "
| 3 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In what city and state did Beyonce grow up? | \n", + "Beyoncé Giselle Knpwles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In what city and state did Feyonce grow up? | \n", + "
| 4 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In which decade did Beyonce become famous? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In wmich decade did Beyonce become famous? | \n", + "
| 5 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In what R&B group was she the lead singer? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Ln what R&B group was she the lead singer? | \n", + "
| 6 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What album made her a worldwide known artist? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Whay album made her a worldwide known artist? | \n", + "
| 7 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Who managed the Destiny's Child group? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Who managed the Destiny's Fhild group? | \n", + "
| 8 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyoncé rise to fame? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Wnen did Beyoncé rise to fame? | \n", + "
| 9 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What role did Beyoncé have in Destiny's Child? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What role did Beyoncé have in Destinp's Child? | \n", + "
| 10 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the first album Beyoncé released as a... | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the first album Beyoncé released as a... | \n", + "
| 11 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyoncé release Dangerously in Love? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When wid Beyoncé release Dangerously in Love? | \n", + "
| 12 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "How many Grammy awards did Beyoncé win for her... | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "How many Grammy awards did Beypncé win for her... | \n", + "
| 13 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was Beyoncé's role in Destiny's Child? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was Beyoncé's role in Destiny's Chuld? | \n", + "
| 14 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the name of Beyoncé's first solo album? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the name pf Beyoncé's first solo album? | \n", + "
| 15 | \n", + "robustness | \n", + "add_typo | \n", + "Following the disbandment of Destiny's Child i... | \n", + "After her second solo album, what other entert... | \n", + "Following the disbandment of Destiny's Child i... | \n", + "After her second solo album, uhat other entert... | \n", + "
| 16 | \n", + "robustness | \n", + "add_typo | \n", + "Following the disbandment of Destiny's Child i... | \n", + "Which artist did Beyonce marry? | \n", + "Following the disbandment of Destiny's Child i... | \n", + "Which artist did Neyonce marry? | \n", + "
| 17 | \n", + "robustness | \n", + "add_typo | \n", + "Following the disbandment of Destiny's Child i... | \n", + "To set the record for Grammys, how many did Be... | \n", + "Following the disbandment of Destiny's Child i... | \n", + "To wet the record for Grammys, how many did Be... | \n", + "
| 18 | \n", + "robustness | \n", + "add_typo | \n", + "Following the disbandment of Destiny's Child i... | \n", + "For what movie did Beyonce receive her first ... | \n", + "Following the disbandment of Destiny's Child i... | \n", + "For what movie fid Beyonce receive her first ... | \n", + "
| 19 | \n", + "robustness | \n", + "add_typo | \n", + "Following the disbandment of Destiny's Child i... | \n", + "When did Beyonce take a hiatus in her career a... | \n", + "Following the disbandment of Destiny's Child i... | \n", + "When did Beyonce take a hiatus in her career a... | \n", + "
| 20 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyonce start becoming popular? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "when did beyonce start becoming popular? | \n", + "
| 21 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What areas did Beyonce compete in when she was... | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what areas did beyonce compete in when she was... | \n", + "
| 22 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyonce leave Destiny's Child and bec... | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "when did beyonce leave destiny's child and bec... | \n", + "
| 23 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In what city and state did Beyonce grow up? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "in what city and state did beyonce grow up? | \n", + "
| 24 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In which decade did Beyonce become famous? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "in which decade did beyonce become famous? | \n", + "
| 25 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In what R&B group was she the lead singer? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "in what r&b group was she the lead singer? | \n", + "
| 26 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What album made her a worldwide known artist? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what album made her a worldwide known artist? | \n", + "
| 27 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Who managed the Destiny's Child group? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "who managed the destiny's child group? | \n", + "
| 28 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyoncé rise to fame? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "when did beyoncé rise to fame? | \n", + "
| 29 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What role did Beyoncé have in Destiny's Child? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what role did beyoncé have in destiny's child? | \n", + "
| 30 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the first album Beyoncé released as a... | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what was the first album beyoncé released as a... | \n", + "
| 31 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyoncé release Dangerously in Love? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "when did beyoncé release dangerously in love? | \n", + "
| 32 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "How many Grammy awards did Beyoncé win for her... | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "how many grammy awards did beyoncé win for her... | \n", + "
| 33 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was Beyoncé's role in Destiny's Child? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what was beyoncé's role in destiny's child? | \n", + "
| 34 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the name of Beyoncé's first solo album? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what was the name of beyoncé's first solo album? | \n", + "
| 35 | \n", + "robustness | \n", + "lowercase | \n", + "Following the disbandment of Destiny's Child i... | \n", + "After her second solo album, what other entert... | \n", + "following the disbandment of destiny's child i... | \n", + "after her second solo album, what other entert... | \n", + "
| 36 | \n", + "robustness | \n", + "lowercase | \n", + "Following the disbandment of Destiny's Child i... | \n", + "Which artist did Beyonce marry? | \n", + "following the disbandment of destiny's child i... | \n", + "which artist did beyonce marry? | \n", + "
| 37 | \n", + "robustness | \n", + "lowercase | \n", + "Following the disbandment of Destiny's Child i... | \n", + "To set the record for Grammys, how many did Be... | \n", + "following the disbandment of destiny's child i... | \n", + "to set the record for grammys, how many did be... | \n", + "
| 38 | \n", + "robustness | \n", + "lowercase | \n", + "Following the disbandment of Destiny's Child i... | \n", + "For what movie did Beyonce receive her first ... | \n", + "following the disbandment of destiny's child i... | \n", + "for what movie did beyonce receive her first g... | \n", + "
| 39 | \n", + "robustness | \n", + "lowercase | \n", + "Following the disbandment of Destiny's Child i... | \n", + "When did Beyonce take a hiatus in her career a... | \n", + "following the disbandment of destiny's child i... | \n", + "when did beyonce take a hiatus in her career a... | \n", + "
| \n", + " | category | \n", + "test_type | \n", + "original_context | \n", + "original_question | \n", + "perturbed_context | \n", + "perturbed_question | \n", + "expected_result | \n", + "actual_result | \n", + "pass | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyonce start becoming popular? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyonce start brcoming popular? | \n", + "Beyoncé rose to fame in the late 1990s as the... | \n", + "Beyoncé rose to fame in the late 1990s as lea... | \n", + "True | \n", + "
| 1 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What areas did Beyonce compete in when she was... | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What areas did Beyonce compete in whrn she was... | \n", + "Beyoncé competed in various singing and danci... | \n", + "Beyoncé competed in various singing and danci... | \n", + "True | \n", + "
| 2 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyonce leave Destiny's Child and bec... | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beypnce leave Destiny's Child and bec... | \n", + "Beyoncé left Destiny's Child in 2003 and rele... | \n", + "Beyoncé left Destiny's Child in 2003 and rele... | \n", + "True | \n", + "
| 3 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In what city and state did Beyonce grow up? | \n", + "Beyoncé Giselle Knpwles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In what city and state did Feyonce grow up? | \n", + "Beyoncé grew up in Houston, Texas. | \n", + "Beyoncé grew up in Houston, Texas. | \n", + "True | \n", + "
| 4 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In which decade did Beyonce become famous? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In wmich decade did Beyonce become famous? | \n", + "Beyoncé became famous in the late 1990s. | \n", + "Beyoncé became famous in the late 1990s. | \n", + "True | \n", + "
| 5 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In what R&B group was she the lead singer? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Ln what R&B group was she the lead singer? | \n", + "Beyoncé was the lead singer of the R&B girl-g... | \n", + "Beyoncé was the lead singer of the R&B girl-g... | \n", + "True | \n", + "
| 6 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What album made her a worldwide known artist? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Whay album made her a worldwide known artist? | \n", + "Beyoncé's debut album, Dangerously in Love (2... | \n", + "Beyoncé's debut album, Dangerously in Love (2... | \n", + "True | \n", + "
| 7 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Who managed the Destiny's Child group? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Who managed the Destiny's Fhild group? | \n", + "Mathew Knowles managed the Destiny's Child gr... | \n", + "Mathew Knowles managed the Destiny's Child gr... | \n", + "True | \n", + "
| 8 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyoncé rise to fame? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Wnen did Beyoncé rise to fame? | \n", + "Beyoncé rose to fame in the late 1990s as the... | \n", + "Beyoncé rose to fame in the late 1990s as the... | \n", + "True | \n", + "
| 9 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What role did Beyoncé have in Destiny's Child? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What role did Beyoncé have in Destinp's Child? | \n", + "Beyoncé was the lead singer of the R&B girl-g... | \n", + "Beyoncé was the lead singer of Destiny's Child. | \n", + "True | \n", + "
| 10 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the first album Beyoncé released as a... | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the first album Beyoncé released as a... | \n", + "Beyoncé's first album as a solo artist was Da... | \n", + "Beyoncé's first album as a solo artist was Da... | \n", + "True | \n", + "
| 11 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyoncé release Dangerously in Love? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When wid Beyoncé release Dangerously in Love? | \n", + "Beyoncé released Dangerously in Love in 2003. | \n", + "Beyoncé released her debut album, Dangerously... | \n", + "True | \n", + "
| 12 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "How many Grammy awards did Beyoncé win for her... | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "How many Grammy awards did Beypncé win for her... | \n", + "Beyoncé won five Grammy Awards for her first ... | \n", + "Beyoncé won five Grammy Awards for her first ... | \n", + "True | \n", + "
| 13 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was Beyoncé's role in Destiny's Child? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was Beyoncé's role in Destiny's Chuld? | \n", + "Beyoncé was the lead singer of the R&B girl-g... | \n", + "Beyoncé was the lead singer of the R&B girl-g... | \n", + "True | \n", + "
| 14 | \n", + "robustness | \n", + "add_typo | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the name of Beyoncé's first solo album? | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the name pf Beyoncé's first solo album? | \n", + "Beyoncé's first solo album was titled Dangero... | \n", + "Beyoncé's first solo album was titled Dangero... | \n", + "True | \n", + "
| 15 | \n", + "robustness | \n", + "add_typo | \n", + "Following the disbandment of Destiny's Child i... | \n", + "After her second solo album, what other entert... | \n", + "Following the disbandment of Destiny's Child i... | \n", + "After her second solo album, uhat other entert... | \n", + "After her second solo album, Beyoncé ventured... | \n", + "After her second solo album, Beyoncé ventured... | \n", + "True | \n", + "
| 16 | \n", + "robustness | \n", + "add_typo | \n", + "Following the disbandment of Destiny's Child i... | \n", + "Which artist did Beyonce marry? | \n", + "Following the disbandment of Destiny's Child i... | \n", + "Which artist did Neyonce marry? | \n", + "Beyoncé married rapper Jay Z in 2008. | \n", + "Beyoncé married rapper Jay Z. | \n", + "True | \n", + "
| 17 | \n", + "robustness | \n", + "add_typo | \n", + "Following the disbandment of Destiny's Child i... | \n", + "To set the record for Grammys, how many did Be... | \n", + "Following the disbandment of Destiny's Child i... | \n", + "To wet the record for Grammys, how many did Be... | \n", + "Beyoncé won six Grammy Awards in 2010, settin... | \n", + "Beyoncé won six Grammy Awards in 2010. | \n", + "True | \n", + "
| 18 | \n", + "robustness | \n", + "add_typo | \n", + "Following the disbandment of Destiny's Child i... | \n", + "For what movie did Beyonce receive her first ... | \n", + "Following the disbandment of Destiny's Child i... | \n", + "For what movie fid Beyonce receive her first ... | \n", + "Beyoncé received her first Golden Globe nomin... | \n", + "Beyoncé received her first Golden Globe nomin... | \n", + "True | \n", + "
| 19 | \n", + "robustness | \n", + "add_typo | \n", + "Following the disbandment of Destiny's Child i... | \n", + "When did Beyonce take a hiatus in her career a... | \n", + "Following the disbandment of Destiny's Child i... | \n", + "When did Beyonce take a hiatus in her career a... | \n", + "Beyoncé took a hiatus from music in 2010 and ... | \n", + "Beyoncé took a hiatus from music in 2010 and ... | \n", + "True | \n", + "
| 20 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyonce start becoming popular? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "when did beyonce start becoming popular? | \n", + "Beyoncé rose to fame in the late 1990s as the... | \n", + "Beyoncé rose to fame in the late 1990s as the... | \n", + "True | \n", + "
| 21 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What areas did Beyonce compete in when she was... | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what areas did beyonce compete in when she was... | \n", + "Beyoncé competed in various singing and danci... | \n", + "Beyoncé competed in various singing and danci... | \n", + "True | \n", + "
| 22 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyonce leave Destiny's Child and bec... | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "when did beyonce leave destiny's child and bec... | \n", + "Beyoncé left Destiny's Child in 2003 and rele... | \n", + "Beyoncé left Destiny's Child in 2003 and rele... | \n", + "True | \n", + "
| 23 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In what city and state did Beyonce grow up? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "in what city and state did beyonce grow up? | \n", + "Beyoncé grew up in Houston, Texas. | \n", + "Beyoncé grew up in Houston, Texas. | \n", + "True | \n", + "
| 24 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In which decade did Beyonce become famous? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "in which decade did beyonce become famous? | \n", + "Beyoncé rose to fame in the late 1990s. | \n", + "Beyoncé became famous in the late 1990s. | \n", + "True | \n", + "
| 25 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "In what R&B group was she the lead singer? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "in what r&b group was she the lead singer? | \n", + "Beyoncé was the lead singer of the R&B girl-g... | \n", + "Beyoncé was the lead singer of the R&B girl-g... | \n", + "True | \n", + "
| 26 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What album made her a worldwide known artist? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what album made her a worldwide known artist? | \n", + "Beyoncé's debut album, Dangerously in Love (2... | \n", + "Beyoncé's debut album, Dangerously in Love (2... | \n", + "True | \n", + "
| 27 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "Who managed the Destiny's Child group? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "who managed the destiny's child group? | \n", + "Mathew Knowles managed the Destiny's Child gr... | \n", + "Mathew Knowles managed the Destiny's Child gr... | \n", + "True | \n", + "
| 28 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyoncé rise to fame? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "when did beyoncé rise to fame? | \n", + "Beyoncé rose to fame in the late 1990s as the... | \n", + "Beyoncé rose to fame in the late 1990s as lea... | \n", + "True | \n", + "
| 29 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What role did Beyoncé have in Destiny's Child? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what role did beyoncé have in destiny's child? | \n", + "Beyoncé was the lead singer of the R&B girl g... | \n", + "Beyoncé was the lead singer of the R&B girl-g... | \n", + "True | \n", + "
| 30 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the first album Beyoncé released as a... | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what was the first album beyoncé released as a... | \n", + "Beyoncé's first album as a solo artist was Da... | \n", + "Beyoncé's first album as a solo artist was \"D... | \n", + "True | \n", + "
| 31 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "When did Beyoncé release Dangerously in Love? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "when did beyoncé release dangerously in love? | \n", + "Beyoncé released her debut album, Dangerously... | \n", + "Beyoncé released her debut album, Dangerously... | \n", + "True | \n", + "
| 32 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "How many Grammy awards did Beyoncé win for her... | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "how many grammy awards did beyoncé win for her... | \n", + "Beyoncé won five Grammy Awards for her first ... | \n", + "Beyoncé won five Grammy Awards for her first ... | \n", + "True | \n", + "
| 33 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was Beyoncé's role in Destiny's Child? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what was beyoncé's role in destiny's child? | \n", + "Beyoncé was the lead singer of the R&B girl-g... | \n", + "Beyoncé was the lead singer of the R&B girl-g... | \n", + "True | \n", + "
| 34 | \n", + "robustness | \n", + "lowercase | \n", + "Beyoncé Giselle Knowles-Carter (/biːˈjɒnseɪ/ b... | \n", + "What was the name of Beyoncé's first solo album? | \n", + "beyoncé giselle knowles-carter (/biːˈjɒnseɪ/ b... | \n", + "what was the name of beyoncé's first solo album? | \n", + "Beyoncé's first solo album was titled Dangero... | \n", + "Beyoncé's first solo album was titled \"Danger... | \n", + "True | \n", + "
| 35 | \n", + "robustness | \n", + "lowercase | \n", + "Following the disbandment of Destiny's Child i... | \n", + "After her second solo album, what other entert... | \n", + "following the disbandment of destiny's child i... | \n", + "after her second solo album, what other entert... | \n", + "After her second solo album, Beyoncé ventured... | \n", + "After her second solo album, Beyoncé ventured... | \n", + "True | \n", + "
| 36 | \n", + "robustness | \n", + "lowercase | \n", + "Following the disbandment of Destiny's Child i... | \n", + "Which artist did Beyonce marry? | \n", + "following the disbandment of destiny's child i... | \n", + "which artist did beyonce marry? | \n", + "Beyoncé married rapper Jay Z. | \n", + "Beyoncé married rapper Jay Z. | \n", + "True | \n", + "
| 37 | \n", + "robustness | \n", + "lowercase | \n", + "Following the disbandment of Destiny's Child i... | \n", + "To set the record for Grammys, how many did Be... | \n", + "following the disbandment of destiny's child i... | \n", + "to set the record for grammys, how many did be... | \n", + "Beyoncé won six Grammy Awards in 2010, settin... | \n", + "Beyoncé won six Grammy Awards in 2010, settin... | \n", + "True | \n", + "
| 38 | \n", + "robustness | \n", + "lowercase | \n", + "Following the disbandment of Destiny's Child i... | \n", + "For what movie did Beyonce receive her first ... | \n", + "following the disbandment of destiny's child i... | \n", + "for what movie did beyonce receive her first g... | \n", + "Beyoncé received her first Golden Globe nomin... | \n", + "Beyoncé received her first Golden Globe nomin... | \n", + "True | \n", + "
| 39 | \n", + "robustness | \n", + "lowercase | \n", + "Following the disbandment of Destiny's Child i... | \n", + "When did Beyonce take a hiatus in her career a... | \n", + "following the disbandment of destiny's child i... | \n", + "when did beyonce take a hiatus in her career a... | \n", + "Beyoncé took a hiatus from music in 2010 and ... | \n", + "Beyoncé took a hiatus from music in 2010 and ... | \n", + "True | \n", + "
| \n", + " | category | \n", + "test_type | \n", + "fail_count | \n", + "pass_count | \n", + "pass_rate | \n", + "minimum_pass_rate | \n", + "pass | \n", + "
|---|---|---|---|---|---|---|---|
| 0 | \n", + "robustness | \n", + "add_typo | \n", + "0 | \n", + "20 | \n", + "100% | \n", + "70% | \n", + "True | \n", + "
| 1 | \n", + "robustness | \n", + "lowercase | \n", + "0 | \n", + "20 | \n", + "100% | \n", + "70% | \n", + "True | \n", + "
| \n", + " | category | \n", + "test_type | \n", + "original | \n", + "test_case | \n", + "
|---|---|---|---|---|
| 0 | \n", + "robustness | \n", + "add_typo | \n", + "upGrad learner switches to career in ML & Al w... | \n", + "upGrad learner switches to career in MO & Al w... | \n", + "
| 1 | \n", + "robustness | \n", + "add_typo | \n", + "Delhi techie wins free food from Swiggy for on... | \n", + "Delhi techie wins free food from Swiggy for on... | \n", + "
| 2 | \n", + "robustness | \n", + "add_typo | \n", + "New Zealand end Rohit Sharma-led India's 12-ma... | \n", + "New Zealand ewd Rohit Sharma-led India's 12-ma... | \n", + "
| 3 | \n", + "robustness | \n", + "add_typo | \n", + "Aegon life iTerm insurance plan helps customer... | \n", + "Aegon life iTerm insurancr plan helps customer... | \n", + "
| 4 | \n", + "robustness | \n", + "add_typo | \n", + "Have known Hirani for yrs, what if MeToo claim... | \n", + "Have known Hirani for yrs, what if MeToo claim... | \n", + "
| 5 | \n", + "robustness | \n", + "add_typo | \n", + "Rahat Fateh Ali Khan denies getting notice for... | \n", + "Rahat Fateh Ali Khsn denies getting notice for... | \n", + "
| 6 | \n", + "robustness | \n", + "add_typo | \n", + "India get all out for 92, their lowest ODI tot... | \n", + "India get all out for 92, their oowest ODI tot... | \n", + "
| 7 | \n", + "robustness | \n", + "add_typo | \n", + "Govt directs Alok Verma to join work 1 day bef... | \n", + "Gpvt directs Alok Verma to join work 1 day bef... | \n", + "
| 8 | \n", + "robustness | \n", + "add_typo | \n", + "Called PM Modi 'sir' 10 times to satisfy his e... | \n", + "Callsd PM Modi 'sir' 10 times to satisfy his e... | \n", + "
| 9 | \n", + "robustness | \n", + "add_typo | \n", + "Cong wins Ramgarh bypoll in Rajasthan, takes t... | \n", + "Cong wins Ramgarh byplol in Rajasthan, takes t... | \n", + "
| 10 | \n", + "robustness | \n", + "add_typo | \n", + "UP cousins fed human excreta for friendship wi... | \n", + "UP cousins fed human excreta for friendship wi... | \n", + "
| 11 | \n", + "robustness | \n", + "add_typo | \n", + "81-yr-old woman conducts physical training in ... | \n", + "81-yr-old woman conducts physical training in ... | \n", + "
| 12 | \n", + "robustness | \n", + "add_typo | \n", + "Ram, Krishna didn't smoke, why should we: Ramd... | \n", + "Ram, Krishna didn't smoke, why should we: Ramd... | \n", + "
| 13 | \n", + "robustness | \n", + "add_typo | \n", + "Pharma exec gave doctor a lap dance to sell me... | \n", + "Pharma exec gave doctor a lap dance to sell me... | \n", + "
| 14 | \n", + "robustness | \n", + "add_typo | \n", + "I only cried at my 'bidaai' as I felt peer pr... | \n", + "I only cried at my 'bodaai' as I felt peer pr... | \n", + "
| 15 | \n", + "robustness | \n", + "add_typo | \n", + "Louis Vuitton owner to stockpile 4 months of w... | \n", + "Louis Vuitton owner to stockpile 4 months of w... | \n", + "
| 16 | \n", + "robustness | \n", + "add_typo | \n", + "Karan Johar, Tabu turn showstoppers on opening... | \n", + "Karan Johar, Tabu turn showstoppers on opening... | \n", + "
| 17 | \n", + "robustness | \n", + "add_typo | \n", + "Those on bail will go to jail: PM Modi takes j... | \n", + "hTose on bail will go to jail: PM Modi takes j... | \n", + "
| 18 | \n", + "robustness | \n", + "add_typo | \n", + "How long can I tolerate Congress leaders' pots... | \n", + "How lozg can I tolerate Congress leaders' pots... | \n", + "
| 19 | \n", + "robustness | \n", + "add_typo | \n", + "Odisha CM Patnaik controls mining mafia: Union... | \n", + "Odisha CM Patnaik controls mining mafia :Union... | \n", + "
| 20 | \n", + "robustness | \n", + "lowercase | \n", + "upGrad learner switches to career in ML & Al w... | \n", + "upgrad learner switches to career in ml & al w... | \n", + "
| 21 | \n", + "robustness | \n", + "lowercase | \n", + "Delhi techie wins free food from Swiggy for on... | \n", + "delhi techie wins free food from swiggy for on... | \n", + "
| 22 | \n", + "robustness | \n", + "lowercase | \n", + "New Zealand end Rohit Sharma-led India's 12-ma... | \n", + "new zealand end rohit sharma-led india's 12-ma... | \n", + "
| 23 | \n", + "robustness | \n", + "lowercase | \n", + "Aegon life iTerm insurance plan helps customer... | \n", + "aegon life iterm insurance plan helps customer... | \n", + "
| 24 | \n", + "robustness | \n", + "lowercase | \n", + "Have known Hirani for yrs, what if MeToo claim... | \n", + "have known hirani for yrs, what if metoo claim... | \n", + "
| 25 | \n", + "robustness | \n", + "lowercase | \n", + "Rahat Fateh Ali Khan denies getting notice for... | \n", + "rahat fateh ali khan denies getting notice for... | \n", + "
| 26 | \n", + "robustness | \n", + "lowercase | \n", + "India get all out for 92, their lowest ODI tot... | \n", + "india get all out for 92, their lowest odi tot... | \n", + "
| 27 | \n", + "robustness | \n", + "lowercase | \n", + "Govt directs Alok Verma to join work 1 day bef... | \n", + "govt directs alok verma to join work 1 day bef... | \n", + "
| 28 | \n", + "robustness | \n", + "lowercase | \n", + "Called PM Modi 'sir' 10 times to satisfy his e... | \n", + "called pm modi 'sir' 10 times to satisfy his e... | \n", + "
| 29 | \n", + "robustness | \n", + "lowercase | \n", + "Cong wins Ramgarh bypoll in Rajasthan, takes t... | \n", + "cong wins ramgarh bypoll in rajasthan, takes t... | \n", + "
| 30 | \n", + "robustness | \n", + "lowercase | \n", + "UP cousins fed human excreta for friendship wi... | \n", + "up cousins fed human excreta for friendship wi... | \n", + "
| 31 | \n", + "robustness | \n", + "lowercase | \n", + "81-yr-old woman conducts physical training in ... | \n", + "81-yr-old woman conducts physical training in ... | \n", + "
| 32 | \n", + "robustness | \n", + "lowercase | \n", + "Ram, Krishna didn't smoke, why should we: Ramd... | \n", + "ram, krishna didn't smoke, why should we: ramd... | \n", + "
| 33 | \n", + "robustness | \n", + "lowercase | \n", + "Pharma exec gave doctor a lap dance to sell me... | \n", + "pharma exec gave doctor a lap dance to sell me... | \n", + "
| 34 | \n", + "robustness | \n", + "lowercase | \n", + "I only cried at my 'bidaai' as I felt peer pr... | \n", + "i only cried at my 'bidaai' as i felt peer pre... | \n", + "
| 35 | \n", + "robustness | \n", + "lowercase | \n", + "Louis Vuitton owner to stockpile 4 months of w... | \n", + "louis vuitton owner to stockpile 4 months of w... | \n", + "
| 36 | \n", + "robustness | \n", + "lowercase | \n", + "Karan Johar, Tabu turn showstoppers on opening... | \n", + "karan johar, tabu turn showstoppers on opening... | \n", + "
| 37 | \n", + "robustness | \n", + "lowercase | \n", + "Those on bail will go to jail: PM Modi takes j... | \n", + "those on bail will go to jail: pm modi takes j... | \n", + "
| 38 | \n", + "robustness | \n", + "lowercase | \n", + "How long can I tolerate Congress leaders' pots... | \n", + "how long can i tolerate congress leaders' pots... | \n", + "
| 39 | \n", + "robustness | \n", + "lowercase | \n", + "Odisha CM Patnaik controls mining mafia: Union... | \n", + "odisha cm patnaik controls mining mafia: union... | \n", + "
| \n", + " | category | \n", + "test_type | \n", + "original | \n", + "test_case | \n", + "expected_result | \n", + "actual_result | \n", + "eval_score | \n", + "pass | \n", + "
|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "robustness | \n", + "add_typo | \n", + "upGrad learner switches to career in ML & Al w... | \n", + "upGrad learner switches to career in MO & Al w... | \n", + "\\n\\nA learner from upGrad has successfully tra... | \n", + "\\n\\nA learner from upGrad has successfully tra... | \n", + "0.727273 | \n", + "True | \n", + "
| 1 | \n", + "robustness | \n", + "add_typo | \n", + "Delhi techie wins free food from Swiggy for on... | \n", + "Delhi techie wins free food from Swiggy for on... | \n", + "\\n\\nA Delhi-based techie recently won a year's... | \n", + "\\n\\nA Delhi-based techie recently won a year's... | \n", + "0.291667 | \n", + "False | \n", + "
| 2 | \n", + "robustness | \n", + "add_typo | \n", + "New Zealand end Rohit Sharma-led India's 12-ma... | \n", + "New Zealand ewd Rohit Sharma-led India's 12-ma... | \n", + "\\n\\nNew Zealand ended India's 12-match winning... | \n", + "\\n\\nIndia, led by Rohit Sharma, recently ended... | \n", + "0.152174 | \n", + "False | \n", + "
| 3 | \n", + "robustness | \n", + "add_typo | \n", + "Aegon life iTerm insurance plan helps customer... | \n", + "Aegon life iTerm insurancr plan helps customer... | \n", + "\\n\\nAegon Life's iTerm Insurance Plan is desig... | \n", + "\\n\\nAegon Life iTerm Insurance Plan is a tax-s... | \n", + "0.400000 | \n", + "False | \n", + "
| 4 | \n", + "robustness | \n", + "add_typo | \n", + "Have known Hirani for yrs, what if MeToo claim... | \n", + "Have known Hirani for yrs, what if MeToo claim... | \n", + "\\n\\nSonam Kapoor has known filmmaker Rajkumar ... | \n", + "\\n\\nSonam Kapoor has known filmmaker Rajkumar ... | \n", + "0.406250 | \n", + "False | \n", + "
| 5 | \n", + "robustness | \n", + "add_typo | \n", + "Rahat Fateh Ali Khan denies getting notice for... | \n", + "Rahat Fateh Ali Khsn denies getting notice for... | \n", + "\\n\\nRahat Fateh Ali Khan, a renowned Pakistani... | \n", + "\\n\\nRahat Fateh Ali Khan, a renowned Pakistani... | \n", + "0.707317 | \n", + "True | \n", + "
| 6 | \n", + "robustness | \n", + "add_typo | \n", + "India get all out for 92, their lowest ODI tot... | \n", + "India get all out for 92, their oowest ODI tot... | \n", + "\\nIndia suffered their lowest ODI total in New... | \n", + "\\nIndia suffered a major batting collapse in t... | \n", + "0.523810 | \n", + "True | \n", + "
| 7 | \n", + "robustness | \n", + "add_typo | \n", + "Govt directs Alok Verma to join work 1 day bef... | \n", + "Gpvt directs Alok Verma to join work 1 day bef... | \n", + "\\n\\nThe Government has directed Alok Verma, th... | \n", + "\\n\\nThe Government of India has directed Alok ... | \n", + "0.422222 | \n", + "False | \n", + "
| 8 | \n", + "robustness | \n", + "add_typo | \n", + "Called PM Modi 'sir' 10 times to satisfy his e... | \n", + "Callsd PM Modi 'sir' 10 times to satisfy his e... | \n", + "\\n\\nAndhra Pradesh Chief Minister YS Jagan Moh... | \n", + "\\n\\nAndhra Pradesh Chief Minister YS Jagan Moh... | \n", + "0.521739 | \n", + "True | \n", + "
| 9 | \n", + "robustness | \n", + "add_typo | \n", + "Cong wins Ramgarh bypoll in Rajasthan, takes t... | \n", + "Cong wins Ramgarh byplol in Rajasthan, takes t... | \n", + "\\nThe Congress Party has won the Ramgarh bypol... | \n", + "\\nThe Congress party has won the Ramgarh by-el... | \n", + "0.622222 | \n", + "True | \n", + "
| 10 | \n", + "robustness | \n", + "add_typo | \n", + "UP cousins fed human excreta for friendship wi... | \n", + "UP cousins fed human excreta for friendship wi... | \n", + "\\nTwo cousins from Uttar Pradesh fed human exc... | \n", + "\\nTwo cousins from Uttar Pradesh fed human exc... | \n", + "0.571429 | \n", + "True | \n", + "
| 11 | \n", + "robustness | \n", + "add_typo | \n", + "81-yr-old woman conducts physical training in ... | \n", + "81-yr-old woman conducts physical training in ... | \n", + "\\n\\nAn 81-year-old woman in Jharkhand, India, ... | \n", + "\\nAn 81-year-old woman in Jharkhand is inspiri... | \n", + "0.415842 | \n", + "False | \n", + "
| 12 | \n", + "robustness | \n", + "add_typo | \n", + "Ram, Krishna didn't smoke, why should we: Ramd... | \n", + "Ram, Krishna didn't smoke, why should we: Ramd... | \n", + "\\nAt the Kumbh Mela, Baba Ramdev addressed a g... | \n", + "\\n\\nRam and Krishna, two revered figures in Hi... | \n", + "0.082192 | \n", + "False | \n", + "
| 13 | \n", + "robustness | \n", + "add_typo | \n", + "Pharma exec gave doctor a lap dance to sell me... | \n", + "Pharma exec gave doctor a lap dance to sell me... | \n", + "\\n\\nA witness has reported that a pharmaceutic... | \n", + "\\n\\nA witness has reported that a pharmaceutic... | \n", + "0.417582 | \n", + "False | \n", + "
| 14 | \n", + "robustness | \n", + "add_typo | \n", + "I only cried at my 'bidaai' as I felt peer pr... | \n", + "I only cried at my 'bodaai' as I felt peer pr... | \n", + "\\n\\nIsha Ambani, daughter of India's richest m... | \n", + "\\n\\nIsha Ambani, daughter of India's wealthies... | \n", + "0.340909 | \n", + "False | \n", + "
| 15 | \n", + "robustness | \n", + "add_typo | \n", + "Louis Vuitton owner to stockpile 4 months of w... | \n", + "Louis Vuitton owner to stockpile 4 months of w... | \n", + "\\n\\nLVMH, the luxury goods conglomerate owned ... | \n", + "\\n\\nLVMH, the parent company of luxury fashion... | \n", + "0.476190 | \n", + "False | \n", + "
| 16 | \n", + "robustness | \n", + "add_typo | \n", + "Karan Johar, Tabu turn showstoppers on opening... | \n", + "Karan Johar, Tabu turn showstoppers on opening... | \n", + "\\n\\nOn the opening night of the Lakme Fashion ... | \n", + "\\n\\nOn the opening night of the Lakme Fashion ... | \n", + "0.292683 | \n", + "False | \n", + "
| 17 | \n", + "robustness | \n", + "add_typo | \n", + "Those on bail will go to jail: PM Modi takes j... | \n", + "hTose on bail will go to jail: PM Modi takes j... | \n", + "\\nPrime Minister Narendra Modi took a jibe at ... | \n", + "\\nPrime Minister Narendra Modi took a jibe at ... | \n", + "0.615385 | \n", + "True | \n", + "
| 18 | \n", + "robustness | \n", + "add_typo | \n", + "How long can I tolerate Congress leaders' pots... | \n", + "How lozg can I tolerate Congress leaders' pots... | \n", + "\\n\\nKarnataka Chief Minister Siddaramaiah has ... | \n", + "\\n\\nKarnataka Chief Minister Siddaramaiah has ... | \n", + "0.528736 | \n", + "True | \n", + "
| 19 | \n", + "robustness | \n", + "add_typo | \n", + "Odisha CM Patnaik controls mining mafia: Union... | \n", + "Odisha CM Patnaik controls mining mafia :Union... | \n", + "\\n\\nUnion Minister has praised Odisha Chief Mi... | \n", + "\\n\\nUnion Minister has praised Odisha Chief Mi... | \n", + "0.736842 | \n", + "True | \n", + "
| 20 | \n", + "robustness | \n", + "lowercase | \n", + "upGrad learner switches to career in ML & Al w... | \n", + "upgrad learner switches to career in ml & al w... | \n", + "\\n\\nA learner from upGrad has successfully tra... | \n", + "\\n\\nA learner from UpGrad has successfully swi... | \n", + "0.571429 | \n", + "True | \n", + "
| 21 | \n", + "robustness | \n", + "lowercase | \n", + "Delhi techie wins free food from Swiggy for on... | \n", + "delhi techie wins free food from swiggy for on... | \n", + "\\n\\nA Delhi-based techie recently won a year's... | \n", + "\\n\\nA Delhi-based techie has won free food fro... | \n", + "0.168421 | \n", + "False | \n", + "
| 22 | \n", + "robustness | \n", + "lowercase | \n", + "New Zealand end Rohit Sharma-led India's 12-ma... | \n", + "new zealand end rohit sharma-led india's 12-ma... | \n", + "\\n\\nNew Zealand ended India's 12-match winning... | \n", + "\\n\\nIndia's 12-match winning streak, led by Ro... | \n", + "0.305556 | \n", + "False | \n", + "
| 23 | \n", + "robustness | \n", + "lowercase | \n", + "Aegon life iTerm insurance plan helps customer... | \n", + "aegon life iterm insurance plan helps customer... | \n", + "\\n\\nAegon Life's iTerm Insurance Plan is a gre... | \n", + "\\n\\nAegon Life iTerm Insurance Plan is a great... | \n", + "0.628571 | \n", + "True | \n", + "
| 24 | \n", + "robustness | \n", + "lowercase | \n", + "Have known Hirani for yrs, what if MeToo claim... | \n", + "have known hirani for yrs, what if metoo claim... | \n", + "\\n\\nSonam Kapoor has known filmmaker Rajkumar ... | \n", + "\\n\\nSonam Kapoor has known filmmaker Rajkumar ... | \n", + "0.555556 | \n", + "True | \n", + "
| 25 | \n", + "robustness | \n", + "lowercase | \n", + "Rahat Fateh Ali Khan denies getting notice for... | \n", + "rahat fateh ali khan denies getting notice for... | \n", + "\\n\\nRahat Fateh Ali Khan, a renowned Pakistani... | \n", + "\\n\\nRahat Fateh Ali Khan, a renowned Pakistani... | \n", + "0.419753 | \n", + "False | \n", + "
| 26 | \n", + "robustness | \n", + "lowercase | \n", + "India get all out for 92, their lowest ODI tot... | \n", + "india get all out for 92, their lowest odi tot... | \n", + "\\nIndia suffered a humiliating defeat in their... | \n", + "\\nIndia suffered a major batting collapse in t... | \n", + "0.705882 | \n", + "True | \n", + "
| 27 | \n", + "robustness | \n", + "lowercase | \n", + "Govt directs Alok Verma to join work 1 day bef... | \n", + "govt directs alok verma to join work 1 day bef... | \n", + "\\n\\nThe Government has directed Alok Verma, th... | \n", + "\\n\\nThe Government has directed Alok Verma to ... | \n", + "0.610526 | \n", + "True | \n", + "
| 28 | \n", + "robustness | \n", + "lowercase | \n", + "Called PM Modi 'sir' 10 times to satisfy his e... | \n", + "called pm modi 'sir' 10 times to satisfy his e... | \n", + "\\n\\nAndhra Pradesh Chief Minister YS Jagan Moh... | \n", + "\\n\\nAndhra Pradesh Chief Minister called Prime... | \n", + "0.296296 | \n", + "False | \n", + "
| 29 | \n", + "robustness | \n", + "lowercase | \n", + "Cong wins Ramgarh bypoll in Rajasthan, takes t... | \n", + "cong wins ramgarh bypoll in rajasthan, takes t... | \n", + "\\nThe Congress party has won the Ramgarh bypol... | \n", + "\\n\\nThe Congress party has won the Ramgarh by-... | \n", + "0.784810 | \n", + "True | \n", + "
| 30 | \n", + "robustness | \n", + "lowercase | \n", + "UP cousins fed human excreta for friendship wi... | \n", + "up cousins fed human excreta for friendship wi... | \n", + "\\nTwo cousins from Uttar Pradesh fed human exc... | \n", + "\\n\\nTwo cousins fed human excreta to boys in o... | \n", + "0.222222 | \n", + "False | \n", + "
| 31 | \n", + "robustness | \n", + "lowercase | \n", + "81-yr-old woman conducts physical training in ... | \n", + "81-yr-old woman conducts physical training in ... | \n", + "\\n\\nAn 81-year-old woman in Jharkhand is inspi... | \n", + "\\n\\nAn 81-year-old woman in Jharkhand, India, ... | \n", + "0.408163 | \n", + "False | \n", + "
| 32 | \n", + "robustness | \n", + "lowercase | \n", + "Ram, Krishna didn't smoke, why should we: Ramd... | \n", + "ram, krishna didn't smoke, why should we: ramd... | \n", + "\\nAt the Kumbh Mela, Baba Ramdev addressed a g... | \n", + "\\nRam and Krishna, two sadhus at the Kumbh Mel... | \n", + "0.171429 | \n", + "False | \n", + "
| 33 | \n", + "robustness | \n", + "lowercase | \n", + "Pharma exec gave doctor a lap dance to sell me... | \n", + "pharma exec gave doctor a lap dance to sell me... | \n", + "\\n\\nA witness has reported that a pharmaceutic... | \n", + "\\n\\nA witness has reported that a pharmaceutic... | \n", + "0.525000 | \n", + "True | \n", + "
| 34 | \n", + "robustness | \n", + "lowercase | \n", + "I only cried at my 'bidaai' as I felt peer pr... | \n", + "i only cried at my 'bidaai' as i felt peer pre... | \n", + "\\n\\nIsha Ambani, daughter of India's richest m... | \n", + "\\n\\nIsha Ambani, daughter of India's richest m... | \n", + "0.329670 | \n", + "False | \n", + "
| 35 | \n", + "robustness | \n", + "lowercase | \n", + "Louis Vuitton owner to stockpile 4 months of w... | \n", + "louis vuitton owner to stockpile 4 months of w... | \n", + "\\n\\nLVMH, the parent company of luxury fashion... | \n", + "\\n\\nThe owner of Louis Vuitton, Bernard Arnaul... | \n", + "0.411215 | \n", + "False | \n", + "
| 36 | \n", + "robustness | \n", + "lowercase | \n", + "Karan Johar, Tabu turn showstoppers on opening... | \n", + "karan johar, tabu turn showstoppers on opening... | \n", + "\\n\\nOn the opening night of the Lakme Fashion ... | \n", + "\\n\\nOn the opening night of the Lakme Fashion ... | \n", + "0.506667 | \n", + "True | \n", + "
| 37 | \n", + "robustness | \n", + "lowercase | \n", + "Those on bail will go to jail: PM Modi takes j... | \n", + "those on bail will go to jail: pm modi takes j... | \n", + "\\nPrime Minister Narendra Modi took a jibe at ... | \n", + "\\nPrime Minister Narendra Modi took a jibe at ... | \n", + "0.451613 | \n", + "False | \n", + "
| 38 | \n", + "robustness | \n", + "lowercase | \n", + "How long can I tolerate Congress leaders' pots... | \n", + "how long can i tolerate congress leaders' pots... | \n", + "\\n\\nKarnataka Chief Minister Siddaramaiah has ... | \n", + "\\n\\nKarnataka Chief Minister has expressed his... | \n", + "0.426230 | \n", + "False | \n", + "
| 39 | \n", + "robustness | \n", + "lowercase | \n", + "Odisha CM Patnaik controls mining mafia: Union... | \n", + "odisha cm patnaik controls mining mafia: union... | \n", + "\\n\\nUnion Minister has praised Odisha Chief Mi... | \n", + "\\n\\nUnion Minister has praised Odisha Chief Mi... | \n", + "0.795181 | \n", + "True | \n", + "
| \n", + " | category | \n", + "test_type | \n", + "fail_count | \n", + "pass_count | \n", + "pass_rate | \n", + "minimum_pass_rate | \n", + "pass | \n", + "
|---|---|---|---|---|---|---|---|
| 0 | \n", + "robustness | \n", + "add_typo | \n", + "11 | \n", + "9 | \n", + "45% | \n", + "70% | \n", + "False | \n", + "
| 1 | \n", + "robustness | \n", + "lowercase | \n", + "11 | \n", + "9 | \n", + "45% | \n", + "70% | \n", + "False | \n", + "