{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": { "id": "kH18jD5cR_Ks" }, "outputs": [], "source": [ "# !pip install -q accelerate peft bitsandbytes transformers trl faiss-gpu langchain_community wandb flash-attn\n", "!pip install -q accelerate peft bitsandbytes transformers trl datasets\n", "\n", "# flash-attn" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "id": "cgVNTbBa-D3j" }, "outputs": [], "source": [ "# load the required packages.\n", "import torch\n", "from datasets import load_dataset, Dataset\n", "from peft import LoraConfig, AutoPeftModelForCausalLM, PeftModel, get_peft_model\n", "from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig, TrainingArguments, AutoConfig, set_seed\n", "from trl import SFTTrainer\n", "import bitsandbytes as bnb\n", "import transformers\n", "\n", "import os\n", "import numpy as np\n", "import pandas as pd\n", "import sqlparse\n", "import re\n", "import json\n", "\n", "from huggingface_hub import hf_hub_download\n", "from huggingface_hub import HfFileSystem" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "s7RtbLxPwTx2", "colab": { "base_uri": "https://localhost:8080/" }, "outputId": "43d5ff02-3e33-439c-e3a9-c18ce99d237d" }, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "Mounted at /content/drive\n" ] } ], "source": [ "# from google.colab import drive\n", "# from google.colab import userdata\n", "# drive.mount('/content/drive')" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "basaX_55Yf_D" }, "outputs": [], "source": [ "#transformers.logging.set_verbosity_info()" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "id": "bkkjgGdlrNcq" }, "outputs": [], "source": [ "WRITE_TOKEN = userdata.get('hf_write')\n", "READ_TOKEN = userdata.get('hf_read')" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "id": "7CKnwlRfZj4V" }, "outputs": [], "source": [ "model_name = \"meta-llama/Llama-3.2-1B-Instruct\"\n", "out_name = \"lleticiasilvaa/Llama-3.2-1B-GerarSQL-v3-alias\"\n", "prev_checkpoint = None # \"checkpoint-3000\"" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "9zs7nCmt-pMC" }, "outputs": [], "source": [ "#!huggingface-cli login" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "id": "PZdnxs8k-Cgl" }, "outputs": [], "source": [ "bird_id=\"NESPED-GEN/bird\"\n", "spider_id=\"NESPED-GEN/spider_variacoes_formato_schema\"\n", "\n", "selector_id = \"NESPED-GEN/selector_testes\"" ] }, { "cell_type": "markdown", "metadata": { "id": "xT2iRdCN_MFH" }, "source": [ "### Load Data\n" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "id": "lLKgY40efdJo", "colab": { "base_uri": "https://localhost:8080/" }, "outputId": "4aa6a465-bd2a-468c-d4d0-389cdb9335f8" }, "outputs": [ { "output_type": "stream", "name": "stderr", "text": [ "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_token.py:89: UserWarning: \n", "The secret `HF_TOKEN` does not exist in your Colab secrets.\n", "To authenticate with the Hugging Face Hub, create a token in your settings tab (https://huggingface.co/settings/tokens), set it as secret in your Google Colab and restart your session.\n", "You will be able to reuse this secret in all of your notebooks.\n", "Please note that authentication is recommended but still optional to access public models or datasets.\n", " warnings.warn(\n" ] }, { "output_type": "execute_result", "data": { "text/plain": [ "Dataset({\n", " features: ['db_id', 'question_en', 'query', 'answer', 'hardness', 'query_llm', 'schema_llm_v1', 'schema_llm_v2', 'schema_llm_v3', 'schema_DTS', 'schema_SQLDatabase', 'schema_dict'],\n", " num_rows: 8656\n", "})" ] }, "metadata": {}, "execution_count": 6 } ], "source": [ "# bird = load_dataset(bird_id, split=\"train\").to_pandas()\n", "spider = load_dataset(spider_id, split=\"train\")\n", "spider" ] }, { "cell_type": "code", "source": [ "import re\n", "\n", "def replace_alias_with_table(query):\n", " # Expressão regular para encontrar tabelas com alias, capturando o nome da tabela e o alias\n", " alias_pattern = re.compile(r'(\\bFROM\\b|\\bJOIN\\b)\\s+(\\w+)\\s+AS\\s+(\\w+)', re.IGNORECASE)\n", "\n", " # Substituições de aliases encontrados no padrão\n", " aliases = {match.group(3): match.group(2) for match in alias_pattern.finditer(query)}\n", "\n", " # Substituir cada alias pelo nome da tabela correspondente\n", " for alias, table in aliases.items():\n", " query = re.sub(r'\\b' + alias + r'\\b', table, query)\n", "\n", " # Remover 'AS' e alias das cláusulas 'FROM' e 'JOIN'\n", " query = re.sub(r'\\bAS\\s+\\w+', '', query, flags=re.IGNORECASE)\n", " return query" ], "metadata": { "id": "X7cgEDOQOgaV" }, "execution_count": 8, "outputs": [] }, { "cell_type": "code", "source": [ "count = 0\n", "for i in spider:\n", " if 'AS ' in i['query_llm']:\n", " count += 1\n", " print(count)\n", " print('--------------------------')\n", " print('query = ', i['query'])\n", " print('--------------------------')\n", " print('query_llm = ', i['query_llm'])\n", " print('--------------------------')\n", " print(replace_alias_with_table(i['query']))\n", " print('--------------------------')\n", "print(count)" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "mtY2zDbGO0H-", "outputId": "f83fec20-950e-4154-dc90-d5a0edb2fabe" }, "execution_count": 11, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "1\n", "--------------------------\n", "query = SELECT T1.title FROM course AS T1 JOIN SECTION AS T2 ON T1.course_id = T2.course_id WHERE building = 'Chandler' AND semester = 'Fall' AND YEAR = 2010\n", "--------------------------\n", "query_llm = SELECT course.title FROM course JOIN SECTION AS T2 ON course.course_id = T2.course_id WHERE building = 'Chandler' AND semester = 'Fall' AND YEAR = 2010\n", "--------------------------\n", "SELECT course.title FROM course JOIN SECTION ON course.course_id = SECTION.course_id WHERE building = 'Chandler' AND semester = 'Fall' AND YEAR = 2010\n", "--------------------------\n", "2\n", "--------------------------\n", "query = SELECT T1.title FROM course AS T1 JOIN SECTION AS T2 ON T1.course_id = T2.course_id WHERE building = 'Chandler' AND semester = 'Fall' AND YEAR = 2010\n", "--------------------------\n", "query_llm = SELECT course.title FROM course JOIN SECTION AS T2 ON course.course_id = T2.course_id WHERE building = 'Chandler' AND semester = 'Fall' AND YEAR = 2010\n", "--------------------------\n", "SELECT course.title FROM course JOIN SECTION ON course.course_id = SECTION.course_id WHERE building = 'Chandler' AND semester = 'Fall' AND YEAR = 2010\n", "--------------------------\n", "3\n", "--------------------------\n", "query = SELECT T3.title , T3.credits FROM classroom AS T1 JOIN SECTION AS T2 ON T1.building = T2.building AND T1.room_number = T2.room_number JOIN course AS T3 ON T2.course_id = T3.course_id WHERE T1.capacity = (SELECT max(capacity) FROM classroom)\n", "--------------------------\n", "query_llm = SELECT course.title , course.credits FROM classroom JOIN SECTION AS T2 ON classroom.building = T2.building AND classroom.room_number = T2.room_number JOIN course ON T2.course_id = course.course_id WHERE classroom.capacity = (SELECT max(capacity) FROM classroom)\n", "--------------------------\n", "SELECT course.title , course.credits FROM classroom JOIN SECTION ON classroom.building = SECTION.building AND classroom.room_number = SECTION.room_number JOIN course ON SECTION.course_id = course.course_id WHERE classroom.capacity = (SELECT max(capacity) FROM classroom)\n", "--------------------------\n", "4\n", "--------------------------\n", "query = SELECT T3.title , T3.credits FROM classroom AS T1 JOIN SECTION AS T2 ON T1.building = T2.building AND T1.room_number = T2.room_number JOIN course AS T3 ON T2.course_id = T3.course_id WHERE T1.capacity = (SELECT max(capacity) FROM classroom)\n", "--------------------------\n", "query_llm = SELECT course.title , course.credits FROM classroom JOIN SECTION AS T2 ON classroom.building = T2.building AND classroom.room_number = T2.room_number JOIN course ON T2.course_id = course.course_id WHERE classroom.capacity = (SELECT max(capacity) FROM classroom)\n", "--------------------------\n", "SELECT course.title , course.credits FROM classroom JOIN SECTION ON classroom.building = SECTION.building AND classroom.room_number = SECTION.room_number JOIN course ON SECTION.course_id = course.course_id WHERE classroom.capacity = (SELECT max(capacity) FROM classroom)\n", "--------------------------\n", "5\n", "--------------------------\n", "query = SELECT T2.building , T2.room_number , T2.semester , T2.year FROM course AS T1 JOIN SECTION AS T2 ON T1.course_id = T2.course_id WHERE T1.dept_name = 'Psychology' ORDER BY T1.title\n", "--------------------------\n", "query_llm = SELECT T2.building , T2.room_number , T2.semester , T2.year FROM course JOIN SECTION AS T2 ON course.course_id = T2.course_id WHERE course.dept_name = 'Psychology' ORDER BY course.title\n", "--------------------------\n", "SELECT SECTION.building , SECTION.room_number , SECTION.semester , SECTION.year FROM course JOIN SECTION ON course.course_id = SECTION.course_id WHERE course.dept_name = 'Psychology' ORDER BY course.title\n", "--------------------------\n", "6\n", "--------------------------\n", "query = SELECT T2.building , T2.room_number , T2.semester , T2.year FROM course AS T1 JOIN SECTION AS T2 ON T1.course_id = T2.course_id WHERE T1.dept_name = 'Psychology' ORDER BY T1.title\n", "--------------------------\n", "query_llm = SELECT T2.building , T2.room_number , T2.semester , T2.year FROM course JOIN SECTION AS T2 ON course.course_id = T2.course_id WHERE course.dept_name = 'Psychology' ORDER BY course.title\n", "--------------------------\n", "SELECT SECTION.building , SECTION.room_number , SECTION.semester , SECTION.year FROM course JOIN SECTION ON course.course_id = SECTION.course_id WHERE course.dept_name = 'Psychology' ORDER BY course.title\n", "--------------------------\n", "7\n", "--------------------------\n", "query = SELECT T1.role_description FROM ROLES AS T1 JOIN Employees AS T2 ON T1.role_code = T2.role_code WHERE T2.employee_name = \"Koby\";\n", "--------------------------\n", "query_llm = SELECT T1.role_description FROM ROLES AS T1 JOIN Employees ON T1.role_code = Employees.role_code WHERE Employees.employee_name = \"Koby\";\n", "--------------------------\n", "SELECT ROLES.role_description FROM ROLES JOIN Employees ON ROLES.role_code = Employees.role_code WHERE Employees.employee_name = \"Koby\";\n", "--------------------------\n", "8\n", "--------------------------\n", "query = SELECT T1.role_description , T2.role_code , count(*) FROM ROLES AS T1 JOIN Employees AS T2 ON T1.role_code = T2.role_code GROUP BY T2.role_code;\n", "--------------------------\n", "query_llm = SELECT T1.role_description , Employees.role_code , count(*) FROM ROLES AS T1 JOIN Employees ON T1.role_code = Employees.role_code GROUP BY Employees.role_code;\n", "--------------------------\n", "SELECT ROLES.role_description , Employees.role_code , count(*) FROM ROLES JOIN Employees ON ROLES.role_code = Employees.role_code GROUP BY Employees.role_code;\n", "--------------------------\n", "9\n", "--------------------------\n", "query = SELECT T1.event_details FROM EVENTS AS T1 JOIN Services AS T2 ON T1.Service_ID = T2.Service_ID WHERE T2.Service_Type_Code = 'Marriage'\n", "--------------------------\n", "query_llm = SELECT T1.event_details FROM EVENTS AS T1 JOIN Services ON T1.Service_ID = Services.Service_ID WHERE Services.Service_Type_Code = 'Marriage'\n", "--------------------------\n", "SELECT EVENTS.event_details FROM EVENTS JOIN Services ON EVENTS.Service_ID = Services.Service_ID WHERE Services.Service_Type_Code = 'Marriage'\n", "--------------------------\n", "10\n", "--------------------------\n", "query = SELECT T1.event_id , T1.event_details FROM EVENTS AS T1 JOIN Participants_in_Events AS T2 ON T1.Event_ID = T2.Event_ID GROUP BY T1.Event_ID HAVING count(*) > 1\n", "--------------------------\n", "query_llm = SELECT T1.event_id , T1.event_details FROM EVENTS AS T1 JOIN Participants_in_Events ON T1.Event_ID = Participants_in_Events.Event_ID GROUP BY T1.Event_ID HAVING count(*) > 1\n", "--------------------------\n", "SELECT EVENTS.event_id , EVENTS.event_details FROM EVENTS JOIN Participants_in_Events ON EVENTS.Event_ID = Participants_in_Events.Event_ID GROUP BY EVENTS.Event_ID HAVING count(*) > 1\n", "--------------------------\n", "11\n", "--------------------------\n", "query = SELECT T3.service_id , T4.Service_Type_Code FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID JOIN EVENTS AS T3 ON T2.Event_ID = T3.Event_ID JOIN services AS T4 ON T3.service_id = T4.service_id GROUP BY T3.service_id ORDER BY count(*) ASC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT T3.service_id , services.Service_Type_Code FROM participants JOIN Participants_in_Events ON participants.Participant_ID = Participants_in_Events.Participant_ID JOIN EVENTS AS T3 ON Participants_in_Events.Event_ID = T3.Event_ID JOIN services ON T3.service_id = services.service_id GROUP BY T3.service_id ORDER BY count(*) ASC LIMIT 1\n", "--------------------------\n", "SELECT EVENTS.service_id , services.Service_Type_Code FROM participants JOIN Participants_in_Events ON participants.Participant_ID = Participants_in_Events.Participant_ID JOIN EVENTS ON Participants_in_Events.Event_ID = EVENTS.Event_ID JOIN services ON EVENTS.service_id = services.service_id GROUP BY EVENTS.service_id ORDER BY count(*) ASC LIMIT 1\n", "--------------------------\n", "12\n", "--------------------------\n", "query = SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Success' INTERSECT SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Fail'\n", "--------------------------\n", "query_llm = SELECT services.service_type_code FROM services JOIN EVENTS AS T2 ON services.service_id = T2.service_id WHERE T2.event_details = 'Success' INTERSECT SELECT services.service_type_code FROM services JOIN EVENTS AS T2 ON services.service_id = T2.service_id WHERE T2.event_details = 'Fail'\n", "--------------------------\n", "SELECT services.service_type_code FROM services JOIN EVENTS ON services.service_id = EVENTS.service_id WHERE EVENTS.event_details = 'Success' INTERSECT SELECT services.service_type_code FROM services JOIN EVENTS ON services.service_id = EVENTS.service_id WHERE EVENTS.event_details = 'Fail'\n", "--------------------------\n", "13\n", "--------------------------\n", "query = SELECT T3.Party_Theme , T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID\n", "--------------------------\n", "query_llm = SELECT party.Party_Theme , T2.Name FROM party_host JOIN HOST AS T2 ON party_host.Host_ID = T2.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID\n", "--------------------------\n", "SELECT party.Party_Theme , HOST.Name FROM party_host JOIN HOST ON party_host.Host_ID = HOST.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID\n", "--------------------------\n", "14\n", "--------------------------\n", "query = SELECT T3.Party_Theme , T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID\n", "--------------------------\n", "query_llm = SELECT party.Party_Theme , T2.Name FROM party_host JOIN HOST AS T2 ON party_host.Host_ID = T2.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID\n", "--------------------------\n", "SELECT party.Party_Theme , HOST.Name FROM party_host JOIN HOST ON party_host.Host_ID = HOST.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID\n", "--------------------------\n", "15\n", "--------------------------\n", "query = SELECT T3.Location , T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID ORDER BY T2.Age\n", "--------------------------\n", "query_llm = SELECT party.Location , T2.Name FROM party_host JOIN HOST AS T2 ON party_host.Host_ID = T2.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID ORDER BY T2.Age\n", "--------------------------\n", "SELECT party.Location , HOST.Name FROM party_host JOIN HOST ON party_host.Host_ID = HOST.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID ORDER BY HOST.Age\n", "--------------------------\n", "16\n", "--------------------------\n", "query = SELECT T3.Location , T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID ORDER BY T2.Age\n", "--------------------------\n", "query_llm = SELECT party.Location , T2.Name FROM party_host JOIN HOST AS T2 ON party_host.Host_ID = T2.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID ORDER BY T2.Age\n", "--------------------------\n", "SELECT party.Location , HOST.Name FROM party_host JOIN HOST ON party_host.Host_ID = HOST.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID ORDER BY HOST.Age\n", "--------------------------\n", "17\n", "--------------------------\n", "query = SELECT T3.Location FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID WHERE T2.Age > 50\n", "--------------------------\n", "query_llm = SELECT party.Location FROM party_host JOIN HOST AS T2 ON party_host.Host_ID = T2.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID WHERE T2.Age > 50\n", "--------------------------\n", "SELECT party.Location FROM party_host JOIN HOST ON party_host.Host_ID = HOST.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID WHERE HOST.Age > 50\n", "--------------------------\n", "18\n", "--------------------------\n", "query = SELECT T3.Location FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID WHERE T2.Age > 50\n", "--------------------------\n", "query_llm = SELECT party.Location FROM party_host JOIN HOST AS T2 ON party_host.Host_ID = T2.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID WHERE T2.Age > 50\n", "--------------------------\n", "SELECT party.Location FROM party_host JOIN HOST ON party_host.Host_ID = HOST.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID WHERE HOST.Age > 50\n", "--------------------------\n", "19\n", "--------------------------\n", "query = SELECT T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID WHERE T3.Number_of_hosts > 20\n", "--------------------------\n", "query_llm = SELECT T2.Name FROM party_host JOIN HOST AS T2 ON party_host.Host_ID = T2.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID WHERE party.Number_of_hosts > 20\n", "--------------------------\n", "SELECT HOST.Name FROM party_host JOIN HOST ON party_host.Host_ID = HOST.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID WHERE party.Number_of_hosts > 20\n", "--------------------------\n", "20\n", "--------------------------\n", "query = SELECT T2.Name FROM party_host AS T1 JOIN HOST AS T2 ON T1.Host_ID = T2.Host_ID JOIN party AS T3 ON T1.Party_ID = T3.Party_ID WHERE T3.Number_of_hosts > 20\n", "--------------------------\n", "query_llm = SELECT T2.Name FROM party_host JOIN HOST AS T2 ON party_host.Host_ID = T2.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID WHERE party.Number_of_hosts > 20\n", "--------------------------\n", "SELECT HOST.Name FROM party_host JOIN HOST ON party_host.Host_ID = HOST.Host_ID JOIN party ON party_host.Party_ID = party.Party_ID WHERE party.Number_of_hosts > 20\n", "--------------------------\n", "21\n", "--------------------------\n", "query = SELECT T2.name FROM film AS T1 JOIN LANGUAGE AS T2 ON T1.language_id = T2.language_id WHERE T1.title = 'AIRPORT POLLOCK'\n", "--------------------------\n", "query_llm = SELECT T2.name FROM film JOIN LANGUAGE AS T2 ON film.language_id = T2.language_id WHERE film.title = 'AIRPORT POLLOCK'\n", "--------------------------\n", "SELECT LANGUAGE.name FROM film JOIN LANGUAGE ON film.language_id = LANGUAGE.language_id WHERE film.title = 'AIRPORT POLLOCK'\n", "--------------------------\n", "22\n", "--------------------------\n", "query = SELECT T2.name FROM film AS T1 JOIN LANGUAGE AS T2 ON T1.language_id = T2.language_id WHERE T1.title = 'AIRPORT POLLOCK'\n", "--------------------------\n", "query_llm = SELECT T2.name FROM film JOIN LANGUAGE AS T2 ON film.language_id = T2.language_id WHERE film.title = 'AIRPORT POLLOCK'\n", "--------------------------\n", "SELECT LANGUAGE.name FROM film JOIN LANGUAGE ON film.language_id = LANGUAGE.language_id WHERE film.title = 'AIRPORT POLLOCK'\n", "--------------------------\n", "23\n", "--------------------------\n", "query = SELECT DISTINCT T1.EMP_FNAME , T1.EMP_DOB FROM employee AS T1 JOIN CLASS AS T2 ON T1.EMP_NUM = T2.PROF_NUM WHERE CRS_CODE = \"ACCT-211\"\n", "--------------------------\n", "query_llm = SELECT DISTINCT employee.EMP_FNAME , employee.EMP_DOB FROM employee JOIN CLASS AS T2 ON employee.EMP_NUM = T2.PROF_NUM WHERE CRS_CODE = \"ACCT-211\"\n", "--------------------------\n", "SELECT DISTINCT employee.EMP_FNAME , employee.EMP_DOB FROM employee JOIN CLASS ON employee.EMP_NUM = CLASS.PROF_NUM WHERE CRS_CODE = \"ACCT-211\"\n", "--------------------------\n", "24\n", "--------------------------\n", "query = SELECT DISTINCT T1.EMP_FNAME , T1.EMP_DOB FROM employee AS T1 JOIN CLASS AS T2 ON T1.EMP_NUM = T2.PROF_NUM WHERE CRS_CODE = \"ACCT-211\"\n", "--------------------------\n", "query_llm = SELECT DISTINCT employee.EMP_FNAME , employee.EMP_DOB FROM employee JOIN CLASS AS T2 ON employee.EMP_NUM = T2.PROF_NUM WHERE CRS_CODE = \"ACCT-211\"\n", "--------------------------\n", "SELECT DISTINCT employee.EMP_FNAME , employee.EMP_DOB FROM employee JOIN CLASS ON employee.EMP_NUM = CLASS.PROF_NUM WHERE CRS_CODE = \"ACCT-211\"\n", "--------------------------\n", "25\n", "--------------------------\n", "query = SELECT count(*) FROM employee AS T1 JOIN CLASS AS T2 ON T1.EMP_NUM = T2.PROF_NUM WHERE T1.EMP_LNAME = 'Graztevski'\n", "--------------------------\n", "query_llm = SELECT count(*) FROM employee JOIN CLASS AS T2 ON employee.EMP_NUM = T2.PROF_NUM WHERE employee.EMP_LNAME = 'Graztevski'\n", "--------------------------\n", "SELECT count(*) FROM employee JOIN CLASS ON employee.EMP_NUM = CLASS.PROF_NUM WHERE employee.EMP_LNAME = 'Graztevski'\n", "--------------------------\n", "26\n", "--------------------------\n", "query = SELECT count(*) FROM employee AS T1 JOIN CLASS AS T2 ON T1.EMP_NUM = T2.PROF_NUM WHERE T1.EMP_LNAME = 'Graztevski'\n", "--------------------------\n", "query_llm = SELECT count(*) FROM employee JOIN CLASS AS T2 ON employee.EMP_NUM = T2.PROF_NUM WHERE employee.EMP_LNAME = 'Graztevski'\n", "--------------------------\n", "SELECT count(*) FROM employee JOIN CLASS ON employee.EMP_NUM = CLASS.PROF_NUM WHERE employee.EMP_LNAME = 'Graztevski'\n", "--------------------------\n", "27\n", "--------------------------\n", "query = SELECT count(*) , dept_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code GROUP BY dept_code\n", "--------------------------\n", "query_llm = SELECT count(*) , dept_code FROM CLASS AS T1 JOIN course ON T1.crs_code = course.crs_code GROUP BY dept_code\n", "--------------------------\n", "SELECT count(*) , dept_code FROM CLASS JOIN course ON CLASS.crs_code = course.crs_code GROUP BY dept_code\n", "--------------------------\n", "28\n", "--------------------------\n", "query = SELECT count(*) , dept_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code GROUP BY dept_code\n", "--------------------------\n", "query_llm = SELECT count(*) , dept_code FROM CLASS AS T1 JOIN course ON T1.crs_code = course.crs_code GROUP BY dept_code\n", "--------------------------\n", "SELECT count(*) , dept_code FROM CLASS JOIN course ON CLASS.crs_code = course.crs_code GROUP BY dept_code\n", "--------------------------\n", "29\n", "--------------------------\n", "query = SELECT count(*) , T3.school_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T2.dept_code = T3.dept_code GROUP BY T3.school_code\n", "--------------------------\n", "query_llm = SELECT count(*) , department.school_code FROM CLASS AS T1 JOIN course ON T1.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY department.school_code\n", "--------------------------\n", "SELECT count(*) , department.school_code FROM CLASS JOIN course ON CLASS.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY department.school_code\n", "--------------------------\n", "30\n", "--------------------------\n", "query = SELECT count(*) , T3.school_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T2.dept_code = T3.dept_code GROUP BY T3.school_code\n", "--------------------------\n", "query_llm = SELECT count(*) , department.school_code FROM CLASS AS T1 JOIN course ON T1.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY department.school_code\n", "--------------------------\n", "SELECT count(*) , department.school_code FROM CLASS JOIN course ON CLASS.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY department.school_code\n", "--------------------------\n", "31\n", "--------------------------\n", "query = SELECT sum(T1.crs_credit) , T1.dept_code FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code GROUP BY T1.dept_code\n", "--------------------------\n", "query_llm = SELECT sum(course.crs_credit) , course.dept_code FROM course JOIN CLASS AS T2 ON course.crs_code = T2.crs_code GROUP BY course.dept_code\n", "--------------------------\n", "SELECT sum(course.crs_credit) , course.dept_code FROM course JOIN CLASS ON course.crs_code = CLASS.crs_code GROUP BY course.dept_code\n", "--------------------------\n", "32\n", "--------------------------\n", "query = SELECT sum(T1.crs_credit) , T1.dept_code FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code GROUP BY T1.dept_code\n", "--------------------------\n", "query_llm = SELECT sum(course.crs_credit) , course.dept_code FROM course JOIN CLASS AS T2 ON course.crs_code = T2.crs_code GROUP BY course.dept_code\n", "--------------------------\n", "SELECT sum(course.crs_credit) , course.dept_code FROM course JOIN CLASS ON course.crs_code = CLASS.crs_code GROUP BY course.dept_code\n", "--------------------------\n", "33\n", "--------------------------\n", "query = SELECT T3.dept_name FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY sum(T1.crs_credit) DESC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT department.dept_name FROM course JOIN CLASS AS T2 ON course.crs_code = T2.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY course.dept_code ORDER BY sum(course.crs_credit) DESC LIMIT 1\n", "--------------------------\n", "SELECT department.dept_name FROM course JOIN CLASS ON course.crs_code = CLASS.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY course.dept_code ORDER BY sum(course.crs_credit) DESC LIMIT 1\n", "--------------------------\n", "34\n", "--------------------------\n", "query = SELECT T3.dept_name FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY sum(T1.crs_credit) DESC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT department.dept_name FROM course JOIN CLASS AS T2 ON course.crs_code = T2.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY course.dept_code ORDER BY sum(course.crs_credit) DESC LIMIT 1\n", "--------------------------\n", "SELECT department.dept_name FROM course JOIN CLASS ON course.crs_code = CLASS.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY course.dept_code ORDER BY sum(course.crs_credit) DESC LIMIT 1\n", "--------------------------\n", "35\n", "--------------------------\n", "query = SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code WHERE T1.crs_code = 'ACCT-211'\n", "--------------------------\n", "query_llm = SELECT count(*) FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code WHERE T1.crs_code = 'ACCT-211'\n", "--------------------------\n", "SELECT count(*) FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code WHERE CLASS.crs_code = 'ACCT-211'\n", "--------------------------\n", "36\n", "--------------------------\n", "query = SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code WHERE T1.crs_code = 'ACCT-211'\n", "--------------------------\n", "query_llm = SELECT count(*) FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code WHERE T1.crs_code = 'ACCT-211'\n", "--------------------------\n", "SELECT count(*) FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code WHERE CLASS.crs_code = 'ACCT-211'\n", "--------------------------\n", "37\n", "--------------------------\n", "query = SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211'\n", "--------------------------\n", "query_llm = SELECT student.stu_fname FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN student ON enroll.stu_num = student.stu_num WHERE T1.crs_code = 'ACCT-211'\n", "--------------------------\n", "SELECT student.stu_fname FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN student ON enroll.stu_num = student.stu_num WHERE CLASS.crs_code = 'ACCT-211'\n", "--------------------------\n", "38\n", "--------------------------\n", "query = SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211'\n", "--------------------------\n", "query_llm = SELECT student.stu_fname FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN student ON enroll.stu_num = student.stu_num WHERE T1.crs_code = 'ACCT-211'\n", "--------------------------\n", "SELECT student.stu_fname FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN student ON enroll.stu_num = student.stu_num WHERE CLASS.crs_code = 'ACCT-211'\n", "--------------------------\n", "39\n", "--------------------------\n", "query = SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211' AND T2.enroll_grade = 'C'\n", "--------------------------\n", "query_llm = SELECT student.stu_fname FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN student ON enroll.stu_num = student.stu_num WHERE T1.crs_code = 'ACCT-211' AND enroll.enroll_grade = 'C'\n", "--------------------------\n", "SELECT student.stu_fname FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN student ON enroll.stu_num = student.stu_num WHERE CLASS.crs_code = 'ACCT-211' AND enroll.enroll_grade = 'C'\n", "--------------------------\n", "40\n", "--------------------------\n", "query = SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211' AND T2.enroll_grade = 'C'\n", "--------------------------\n", "query_llm = SELECT student.stu_fname FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN student ON enroll.stu_num = student.stu_num WHERE T1.crs_code = 'ACCT-211' AND enroll.enroll_grade = 'C'\n", "--------------------------\n", "SELECT student.stu_fname FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN student ON enroll.stu_num = student.stu_num WHERE CLASS.crs_code = 'ACCT-211' AND enroll.enroll_grade = 'C'\n", "--------------------------\n", "41\n", "--------------------------\n", "query = SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code WHERE T4.dept_name = 'Accounting'\n", "--------------------------\n", "query_llm = SELECT count(*) FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN course ON T1.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code WHERE department.dept_name = 'Accounting'\n", "--------------------------\n", "SELECT count(*) FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN course ON CLASS.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code WHERE department.dept_name = 'Accounting'\n", "--------------------------\n", "42\n", "--------------------------\n", "query = SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code WHERE T4.dept_name = 'Accounting'\n", "--------------------------\n", "query_llm = SELECT count(*) FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN course ON T1.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code WHERE department.dept_name = 'Accounting'\n", "--------------------------\n", "SELECT count(*) FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN course ON CLASS.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code WHERE department.dept_name = 'Accounting'\n", "--------------------------\n", "43\n", "--------------------------\n", "query = SELECT T4.dept_name FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code GROUP BY T3.dept_code ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT department.dept_name FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN course ON T1.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY course.dept_code ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "SELECT department.dept_name FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN course ON CLASS.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY course.dept_code ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "44\n", "--------------------------\n", "query = SELECT T4.dept_name FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code GROUP BY T3.dept_code ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT department.dept_name FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN course ON T1.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY course.dept_code ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "SELECT department.dept_name FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN course ON CLASS.crs_code = course.crs_code JOIN department ON course.dept_code = department.dept_code GROUP BY course.dept_code ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "45\n", "--------------------------\n", "query = SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num\n", "--------------------------\n", "query_llm = SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT employee.emp_fname FROM employee JOIN CLASS AS T2 ON employee.emp_num = T2.prof_num\n", "--------------------------\n", "SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT employee.emp_fname FROM employee JOIN CLASS ON employee.emp_num = CLASS.prof_num\n", "--------------------------\n", "46\n", "--------------------------\n", "query = SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num\n", "--------------------------\n", "query_llm = SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT employee.emp_fname FROM employee JOIN CLASS AS T2 ON employee.emp_num = T2.prof_num\n", "--------------------------\n", "SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT employee.emp_fname FROM employee JOIN CLASS ON employee.emp_num = CLASS.prof_num\n", "--------------------------\n", "47\n", "--------------------------\n", "query = SELECT T1.emp_fname FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History' EXCEPT SELECT T4.emp_fname FROM employee AS T4 JOIN CLASS AS T5 ON T4.emp_num = T5.prof_num\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname FROM employee JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON professor.dept_code = department.dept_code WHERE department.dept_name = 'History' EXCEPT SELECT employee.emp_fname FROM employee JOIN CLASS AS T5 ON employee.emp_num = T5.prof_num\n", "--------------------------\n", "SELECT employee.emp_fname FROM employee JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON professor.dept_code = department.dept_code WHERE department.dept_name = 'History' EXCEPT SELECT employee.emp_fname FROM employee JOIN CLASS ON employee.emp_num = CLASS.prof_num\n", "--------------------------\n", "48\n", "--------------------------\n", "query = SELECT T1.emp_fname FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History' EXCEPT SELECT T4.emp_fname FROM employee AS T4 JOIN CLASS AS T5 ON T4.emp_num = T5.prof_num\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname FROM employee JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON professor.dept_code = department.dept_code WHERE department.dept_name = 'History' EXCEPT SELECT employee.emp_fname FROM employee JOIN CLASS AS T5 ON employee.emp_num = T5.prof_num\n", "--------------------------\n", "SELECT employee.emp_fname FROM employee JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON professor.dept_code = department.dept_code WHERE department.dept_name = 'History' EXCEPT SELECT employee.emp_fname FROM employee JOIN CLASS ON employee.emp_num = CLASS.prof_num\n", "--------------------------\n", "49\n", "--------------------------\n", "query = SELECT T1.crs_code FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num WHERE T3.stu_lname = 'Smithson'\n", "--------------------------\n", "query_llm = SELECT T1.crs_code FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN student ON student.stu_num = enroll.stu_num WHERE student.stu_lname = 'Smithson'\n", "--------------------------\n", "SELECT CLASS.crs_code FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN student ON student.stu_num = enroll.stu_num WHERE student.stu_lname = 'Smithson'\n", "--------------------------\n", "50\n", "--------------------------\n", "query = SELECT T1.crs_code FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num WHERE T3.stu_lname = 'Smithson'\n", "--------------------------\n", "query_llm = SELECT T1.crs_code FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN student ON student.stu_num = enroll.stu_num WHERE student.stu_lname = 'Smithson'\n", "--------------------------\n", "SELECT CLASS.crs_code FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN student ON student.stu_num = enroll.stu_num WHERE student.stu_lname = 'Smithson'\n", "--------------------------\n", "51\n", "--------------------------\n", "query = SELECT T4.crs_description , T4.crs_credit FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num JOIN course AS T4 ON T4.crs_code = T1.crs_code WHERE T3.stu_lname = 'Smithson'\n", "--------------------------\n", "query_llm = SELECT course.crs_description , course.crs_credit FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN student ON student.stu_num = enroll.stu_num JOIN course ON course.crs_code = T1.crs_code WHERE student.stu_lname = 'Smithson'\n", "--------------------------\n", "SELECT course.crs_description , course.crs_credit FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN student ON student.stu_num = enroll.stu_num JOIN course ON course.crs_code = CLASS.crs_code WHERE student.stu_lname = 'Smithson'\n", "--------------------------\n", "52\n", "--------------------------\n", "query = SELECT T4.crs_description , T4.crs_credit FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num JOIN course AS T4 ON T4.crs_code = T1.crs_code WHERE T3.stu_lname = 'Smithson'\n", "--------------------------\n", "query_llm = SELECT course.crs_description , course.crs_credit FROM CLASS AS T1 JOIN enroll ON T1.class_code = enroll.class_code JOIN student ON student.stu_num = enroll.stu_num JOIN course ON course.crs_code = T1.crs_code WHERE student.stu_lname = 'Smithson'\n", "--------------------------\n", "SELECT course.crs_description , course.crs_credit FROM CLASS JOIN enroll ON CLASS.class_code = enroll.class_code JOIN student ON student.stu_num = enroll.stu_num JOIN course ON course.crs_code = CLASS.crs_code WHERE student.stu_lname = 'Smithson'\n", "--------------------------\n", "53\n", "--------------------------\n", "query = SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'QM-261'\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname FROM employee JOIN CLASS AS T2 ON employee.emp_num = T2.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT employee.emp_fname FROM employee JOIN CLASS AS T2 ON employee.emp_num = T2.prof_num WHERE crs_code = 'QM-261'\n", "--------------------------\n", "SELECT employee.emp_fname FROM employee JOIN CLASS ON employee.emp_num = CLASS.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT employee.emp_fname FROM employee JOIN CLASS ON employee.emp_num = CLASS.prof_num WHERE crs_code = 'QM-261'\n", "--------------------------\n", "54\n", "--------------------------\n", "query = SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'QM-261'\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname FROM employee JOIN CLASS AS T2 ON employee.emp_num = T2.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT employee.emp_fname FROM employee JOIN CLASS AS T2 ON employee.emp_num = T2.prof_num WHERE crs_code = 'QM-261'\n", "--------------------------\n", "SELECT employee.emp_fname FROM employee JOIN CLASS ON employee.emp_num = CLASS.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT employee.emp_fname FROM employee JOIN CLASS ON employee.emp_num = CLASS.prof_num WHERE crs_code = 'QM-261'\n", "--------------------------\n", "55\n", "--------------------------\n", "query = SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Accounting' INTERSECT SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "query_llm = SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS AS T3 ON enroll.class_code = T3.class_code JOIN course ON T3.crs_code = course.crs_code JOIN department ON department.dept_code = course.dept_code WHERE department.dept_name = 'Accounting' INTERSECT SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS AS T3 ON enroll.class_code = T3.class_code JOIN course ON T3.crs_code = course.crs_code JOIN department ON department.dept_code = course.dept_code WHERE department.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS ON enroll.class_code = CLASS.class_code JOIN course ON CLASS.crs_code = course.crs_code JOIN department ON department.dept_code = course.dept_code WHERE department.dept_name = 'Accounting' INTERSECT SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS ON enroll.class_code = CLASS.class_code JOIN course ON CLASS.crs_code = course.crs_code JOIN department ON department.dept_code = course.dept_code WHERE department.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "56\n", "--------------------------\n", "query = SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Accounting' INTERSECT SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "query_llm = SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS AS T3 ON enroll.class_code = T3.class_code JOIN course ON T3.crs_code = course.crs_code JOIN department ON department.dept_code = course.dept_code WHERE department.dept_name = 'Accounting' INTERSECT SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS AS T3 ON enroll.class_code = T3.class_code JOIN course ON T3.crs_code = course.crs_code JOIN department ON department.dept_code = course.dept_code WHERE department.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS ON enroll.class_code = CLASS.class_code JOIN course ON CLASS.crs_code = course.crs_code JOIN department ON department.dept_code = course.dept_code WHERE department.dept_name = 'Accounting' INTERSECT SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS ON enroll.class_code = CLASS.class_code JOIN course ON CLASS.crs_code = course.crs_code JOIN department ON department.dept_code = course.dept_code WHERE department.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "57\n", "--------------------------\n", "query = SELECT avg(T2.stu_gpa) FROM enroll AS T1 JOIN student AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T1.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'\n", "--------------------------\n", "query_llm = SELECT avg(student.stu_gpa) FROM enroll JOIN student ON enroll.stu_num = student.stu_num JOIN CLASS AS T3 ON enroll.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'\n", "--------------------------\n", "SELECT avg(student.stu_gpa) FROM enroll JOIN student ON enroll.stu_num = student.stu_num JOIN CLASS ON enroll.class_code = CLASS.class_code WHERE CLASS.crs_code = 'ACCT-211'\n", "--------------------------\n", "58\n", "--------------------------\n", "query = SELECT avg(T2.stu_gpa) FROM enroll AS T1 JOIN student AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T1.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'\n", "--------------------------\n", "query_llm = SELECT avg(student.stu_gpa) FROM enroll JOIN student ON enroll.stu_num = student.stu_num JOIN CLASS AS T3 ON enroll.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'\n", "--------------------------\n", "SELECT avg(student.stu_gpa) FROM enroll JOIN student ON enroll.stu_num = student.stu_num JOIN CLASS ON enroll.class_code = CLASS.class_code WHERE CLASS.crs_code = 'ACCT-211'\n", "--------------------------\n", "59\n", "--------------------------\n", "query = SELECT T2.emp_fname , T1.crs_code FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname , T1.crs_code FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num\n", "--------------------------\n", "SELECT employee.emp_fname , CLASS.crs_code FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num\n", "--------------------------\n", "60\n", "--------------------------\n", "query = SELECT T2.emp_fname , T1.crs_code FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname , T1.crs_code FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num\n", "--------------------------\n", "SELECT employee.emp_fname , CLASS.crs_code FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num\n", "--------------------------\n", "61\n", "--------------------------\n", "query = SELECT T2.emp_fname , T3.crs_description FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname , course.crs_description FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num JOIN course ON T1.crs_code = course.crs_code\n", "--------------------------\n", "SELECT employee.emp_fname , course.crs_description FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num JOIN course ON CLASS.crs_code = course.crs_code\n", "--------------------------\n", "62\n", "--------------------------\n", "query = SELECT T2.emp_fname , T3.crs_description FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname , course.crs_description FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num JOIN course ON T1.crs_code = course.crs_code\n", "--------------------------\n", "SELECT employee.emp_fname , course.crs_description FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num JOIN course ON CLASS.crs_code = course.crs_code\n", "--------------------------\n", "63\n", "--------------------------\n", "query = SELECT T2.emp_fname , T4.prof_office , T3.crs_description FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname , professor.prof_office , course.crs_description FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num JOIN course ON T1.crs_code = course.crs_code JOIN professor ON employee.emp_num = professor.emp_num\n", "--------------------------\n", "SELECT employee.emp_fname , professor.prof_office , course.crs_description FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num JOIN course ON CLASS.crs_code = course.crs_code JOIN professor ON employee.emp_num = professor.emp_num\n", "--------------------------\n", "64\n", "--------------------------\n", "query = SELECT T2.emp_fname , T4.prof_office , T3.crs_description FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname , professor.prof_office , course.crs_description FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num JOIN course ON T1.crs_code = course.crs_code JOIN professor ON employee.emp_num = professor.emp_num\n", "--------------------------\n", "SELECT employee.emp_fname , professor.prof_office , course.crs_description FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num JOIN course ON CLASS.crs_code = course.crs_code JOIN professor ON employee.emp_num = professor.emp_num\n", "--------------------------\n", "65\n", "--------------------------\n", "query = SELECT T2.emp_fname , T4.prof_office , T3.crs_description , T5.dept_name FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num JOIN department AS T5 ON T4.dept_code = T5.dept_code\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname , professor.prof_office , course.crs_description , department.dept_name FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num JOIN course ON T1.crs_code = course.crs_code JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON professor.dept_code = department.dept_code\n", "--------------------------\n", "SELECT employee.emp_fname , professor.prof_office , course.crs_description , department.dept_name FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num JOIN course ON CLASS.crs_code = course.crs_code JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON professor.dept_code = department.dept_code\n", "--------------------------\n", "66\n", "--------------------------\n", "query = SELECT T2.emp_fname , T4.prof_office , T3.crs_description , T5.dept_name FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num JOIN department AS T5 ON T4.dept_code = T5.dept_code\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname , professor.prof_office , course.crs_description , department.dept_name FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num JOIN course ON T1.crs_code = course.crs_code JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON professor.dept_code = department.dept_code\n", "--------------------------\n", "SELECT employee.emp_fname , professor.prof_office , course.crs_description , department.dept_name FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num JOIN course ON CLASS.crs_code = course.crs_code JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON professor.dept_code = department.dept_code\n", "--------------------------\n", "67\n", "--------------------------\n", "query = SELECT T1.stu_fname , T1.stu_lname , T4.crs_description FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code\n", "--------------------------\n", "query_llm = SELECT student.stu_fname , student.stu_lname , course.crs_description FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS AS T3 ON enroll.class_code = T3.class_code JOIN course ON T3.crs_code = course.crs_code\n", "--------------------------\n", "SELECT student.stu_fname , student.stu_lname , course.crs_description FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS ON enroll.class_code = CLASS.class_code JOIN course ON CLASS.crs_code = course.crs_code\n", "--------------------------\n", "68\n", "--------------------------\n", "query = SELECT T1.stu_fname , T1.stu_lname , T4.crs_description FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code\n", "--------------------------\n", "query_llm = SELECT student.stu_fname , student.stu_lname , course.crs_description FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS AS T3 ON enroll.class_code = T3.class_code JOIN course ON T3.crs_code = course.crs_code\n", "--------------------------\n", "SELECT student.stu_fname , student.stu_lname , course.crs_description FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS ON enroll.class_code = CLASS.class_code JOIN course ON CLASS.crs_code = course.crs_code\n", "--------------------------\n", "69\n", "--------------------------\n", "query = SELECT T2.emp_fname , T1.class_room FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Accounting'\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname , T1.class_room FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON department.dept_code = professor.dept_code WHERE department.dept_name = 'Accounting'\n", "--------------------------\n", "SELECT employee.emp_fname , CLASS.class_room FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON department.dept_code = professor.dept_code WHERE department.dept_name = 'Accounting'\n", "--------------------------\n", "70\n", "--------------------------\n", "query = SELECT T2.emp_fname , T1.class_room FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Accounting'\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname , T1.class_room FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON department.dept_code = professor.dept_code WHERE department.dept_name = 'Accounting'\n", "--------------------------\n", "SELECT employee.emp_fname , CLASS.class_room FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON department.dept_code = professor.dept_code WHERE department.dept_name = 'Accounting'\n", "--------------------------\n", "71\n", "--------------------------\n", "query = SELECT DISTINCT T2.emp_fname , T3.prof_high_degree FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "query_llm = SELECT DISTINCT employee.emp_fname , professor.prof_high_degree FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON department.dept_code = professor.dept_code WHERE department.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "SELECT DISTINCT employee.emp_fname , professor.prof_high_degree FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON department.dept_code = professor.dept_code WHERE department.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "72\n", "--------------------------\n", "query = SELECT DISTINCT T2.emp_fname , T3.prof_high_degree FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "query_llm = SELECT DISTINCT employee.emp_fname , professor.prof_high_degree FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON department.dept_code = professor.dept_code WHERE department.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "SELECT DISTINCT employee.emp_fname , professor.prof_high_degree FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num JOIN professor ON employee.emp_num = professor.emp_num JOIN department ON department.dept_code = professor.dept_code WHERE department.dept_name = 'Computer Info. Systems'\n", "--------------------------\n", "73\n", "--------------------------\n", "query = SELECT T2.emp_fname FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num GROUP BY T1.prof_num HAVING count(*) > 1\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num GROUP BY T1.prof_num HAVING count(*) > 1\n", "--------------------------\n", "SELECT employee.emp_fname FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num GROUP BY CLASS.prof_num HAVING count(*) > 1\n", "--------------------------\n", "74\n", "--------------------------\n", "query = SELECT T2.emp_fname FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num GROUP BY T1.prof_num HAVING count(*) > 1\n", "--------------------------\n", "query_llm = SELECT employee.emp_fname FROM CLASS AS T1 JOIN employee ON T1.prof_num = employee.emp_num GROUP BY T1.prof_num HAVING count(*) > 1\n", "--------------------------\n", "SELECT employee.emp_fname FROM CLASS JOIN employee ON CLASS.prof_num = employee.emp_num GROUP BY CLASS.prof_num HAVING count(*) > 1\n", "--------------------------\n", "75\n", "--------------------------\n", "query = SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211' AND T1.stu_lname LIKE 'S%'\n", "--------------------------\n", "query_llm = SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS AS T3 ON enroll.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211' AND student.stu_lname LIKE 'S%'\n", "--------------------------\n", "SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS ON enroll.class_code = CLASS.class_code WHERE CLASS.crs_code = 'ACCT-211' AND student.stu_lname LIKE 'S%'\n", "--------------------------\n", "76\n", "--------------------------\n", "query = SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211' AND T1.stu_lname LIKE 'S%'\n", "--------------------------\n", "query_llm = SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS AS T3 ON enroll.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211' AND student.stu_lname LIKE 'S%'\n", "--------------------------\n", "SELECT student.stu_fname FROM student JOIN enroll ON student.stu_num = enroll.stu_num JOIN CLASS ON enroll.class_code = CLASS.class_code WHERE CLASS.crs_code = 'ACCT-211' AND student.stu_lname LIKE 'S%'\n", "--------------------------\n", "77\n", "--------------------------\n", "query = SELECT count(*) , T1.blockfloor FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockfloor\n", "--------------------------\n", "query_llm = SELECT count(*) , T1.blockfloor FROM BLOCK AS T1 JOIN room ON T1.blockfloor = room.blockfloor AND T1.blockcode = room.blockcode GROUP BY T1.blockfloor\n", "--------------------------\n", "SELECT count(*) , BLOCK.blockfloor FROM BLOCK JOIN room ON BLOCK.blockfloor = room.blockfloor AND BLOCK.blockcode = room.blockcode GROUP BY BLOCK.blockfloor\n", "--------------------------\n", "78\n", "--------------------------\n", "query = SELECT count(*) , T1.blockfloor FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockfloor\n", "--------------------------\n", "query_llm = SELECT count(*) , T1.blockfloor FROM BLOCK AS T1 JOIN room ON T1.blockfloor = room.blockfloor AND T1.blockcode = room.blockcode GROUP BY T1.blockfloor\n", "--------------------------\n", "SELECT count(*) , BLOCK.blockfloor FROM BLOCK JOIN room ON BLOCK.blockfloor = room.blockfloor AND BLOCK.blockcode = room.blockcode GROUP BY BLOCK.blockfloor\n", "--------------------------\n", "79\n", "--------------------------\n", "query = SELECT count(*) , T1.blockcode FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockcode\n", "--------------------------\n", "query_llm = SELECT count(*) , T1.blockcode FROM BLOCK AS T1 JOIN room ON T1.blockfloor = room.blockfloor AND T1.blockcode = room.blockcode GROUP BY T1.blockcode\n", "--------------------------\n", "SELECT count(*) , BLOCK.blockcode FROM BLOCK JOIN room ON BLOCK.blockfloor = room.blockfloor AND BLOCK.blockcode = room.blockcode GROUP BY BLOCK.blockcode\n", "--------------------------\n", "80\n", "--------------------------\n", "query = SELECT count(*) , T1.blockcode FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockcode\n", "--------------------------\n", "query_llm = SELECT count(*) , T1.blockcode FROM BLOCK AS T1 JOIN room ON T1.blockfloor = room.blockfloor AND T1.blockcode = room.blockcode GROUP BY T1.blockcode\n", "--------------------------\n", "SELECT count(*) , BLOCK.blockcode FROM BLOCK JOIN room ON BLOCK.blockfloor = room.blockfloor AND BLOCK.blockcode = room.blockcode GROUP BY BLOCK.blockcode\n", "--------------------------\n", "81\n", "--------------------------\n", "query = SELECT T2.role_name , T2.role_description FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T1.employee_name = \"Ebba\"\n", "--------------------------\n", "query_llm = SELECT T2.role_name , T2.role_description FROM Employees JOIN ROLES AS T2 ON Employees.role_code = T2.role_code WHERE Employees.employee_name = \"Ebba\"\n", "--------------------------\n", "SELECT ROLES.role_name , ROLES.role_description FROM Employees JOIN ROLES ON Employees.role_code = ROLES.role_code WHERE Employees.employee_name = \"Ebba\"\n", "--------------------------\n", "82\n", "--------------------------\n", "query = SELECT T2.role_name , T2.role_description FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T1.employee_name = \"Ebba\"\n", "--------------------------\n", "query_llm = SELECT T2.role_name , T2.role_description FROM Employees JOIN ROLES AS T2 ON Employees.role_code = T2.role_code WHERE Employees.employee_name = \"Ebba\"\n", "--------------------------\n", "SELECT ROLES.role_name , ROLES.role_description FROM Employees JOIN ROLES ON Employees.role_code = ROLES.role_code WHERE Employees.employee_name = \"Ebba\"\n", "--------------------------\n", "83\n", "--------------------------\n", "query = SELECT T1.employee_name FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T2.role_name = \"Editor\"\n", "--------------------------\n", "query_llm = SELECT Employees.employee_name FROM Employees JOIN ROLES AS T2 ON Employees.role_code = T2.role_code WHERE T2.role_name = \"Editor\"\n", "--------------------------\n", "SELECT Employees.employee_name FROM Employees JOIN ROLES ON Employees.role_code = ROLES.role_code WHERE ROLES.role_name = \"Editor\"\n", "--------------------------\n", "84\n", "--------------------------\n", "query = SELECT T1.employee_name FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T2.role_name = \"Editor\"\n", "--------------------------\n", "query_llm = SELECT Employees.employee_name FROM Employees JOIN ROLES AS T2 ON Employees.role_code = T2.role_code WHERE T2.role_name = \"Editor\"\n", "--------------------------\n", "SELECT Employees.employee_name FROM Employees JOIN ROLES ON Employees.role_code = ROLES.role_code WHERE ROLES.role_name = \"Editor\"\n", "--------------------------\n", "85\n", "--------------------------\n", "query = SELECT T1.employee_id FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T2.role_name = \"Human Resource\" OR T2.role_name = \"Manager\"\n", "--------------------------\n", "query_llm = SELECT Employees.employee_id FROM Employees JOIN ROLES AS T2 ON Employees.role_code = T2.role_code WHERE T2.role_name = \"Human Resource\" OR T2.role_name = \"Manager\"\n", "--------------------------\n", "SELECT Employees.employee_id FROM Employees JOIN ROLES ON Employees.role_code = ROLES.role_code WHERE ROLES.role_name = \"Human Resource\" OR ROLES.role_name = \"Manager\"\n", "--------------------------\n", "86\n", "--------------------------\n", "query = SELECT T1.employee_id FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T2.role_name = \"Human Resource\" OR T2.role_name = \"Manager\"\n", "--------------------------\n", "query_llm = SELECT Employees.employee_id FROM Employees JOIN ROLES AS T2 ON Employees.role_code = T2.role_code WHERE T2.role_name = \"Human Resource\" OR T2.role_name = \"Manager\"\n", "--------------------------\n", "SELECT Employees.employee_id FROM Employees JOIN ROLES ON Employees.role_code = ROLES.role_code WHERE ROLES.role_name = \"Human Resource\" OR ROLES.role_name = \"Manager\"\n", "--------------------------\n", "87\n", "--------------------------\n", "query = SELECT T2.Location , T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft\n", "--------------------------\n", "query_llm = SELECT T2.Location , aircraft.Aircraft FROM aircraft JOIN MATCH AS T2 ON aircraft.Aircraft_ID = T2.Winning_Aircraft\n", "--------------------------\n", "SELECT MATCH.Location , aircraft.Aircraft FROM aircraft JOIN MATCH ON aircraft.Aircraft_ID = MATCH.Winning_Aircraft\n", "--------------------------\n", "88\n", "--------------------------\n", "query = SELECT T2.Location , T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft\n", "--------------------------\n", "query_llm = SELECT T2.Location , aircraft.Aircraft FROM aircraft JOIN MATCH AS T2 ON aircraft.Aircraft_ID = T2.Winning_Aircraft\n", "--------------------------\n", "SELECT MATCH.Location , aircraft.Aircraft FROM aircraft JOIN MATCH ON aircraft.Aircraft_ID = MATCH.Winning_Aircraft\n", "--------------------------\n", "89\n", "--------------------------\n", "query = SELECT T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft ORDER BY COUNT(*) DESC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT aircraft.Aircraft FROM aircraft JOIN MATCH AS T2 ON aircraft.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft ORDER BY COUNT(*) DESC LIMIT 1\n", "--------------------------\n", "SELECT aircraft.Aircraft FROM aircraft JOIN MATCH ON aircraft.Aircraft_ID = MATCH.Winning_Aircraft GROUP BY MATCH.Winning_Aircraft ORDER BY COUNT(*) DESC LIMIT 1\n", "--------------------------\n", "90\n", "--------------------------\n", "query = SELECT T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft ORDER BY COUNT(*) DESC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT aircraft.Aircraft FROM aircraft JOIN MATCH AS T2 ON aircraft.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft ORDER BY COUNT(*) DESC LIMIT 1\n", "--------------------------\n", "SELECT aircraft.Aircraft FROM aircraft JOIN MATCH ON aircraft.Aircraft_ID = MATCH.Winning_Aircraft GROUP BY MATCH.Winning_Aircraft ORDER BY COUNT(*) DESC LIMIT 1\n", "--------------------------\n", "91\n", "--------------------------\n", "query = SELECT T1.Aircraft , COUNT(*) FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft\n", "--------------------------\n", "query_llm = SELECT aircraft.Aircraft , COUNT(*) FROM aircraft JOIN MATCH AS T2 ON aircraft.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft\n", "--------------------------\n", "SELECT aircraft.Aircraft , COUNT(*) FROM aircraft JOIN MATCH ON aircraft.Aircraft_ID = MATCH.Winning_Aircraft GROUP BY MATCH.Winning_Aircraft\n", "--------------------------\n", "92\n", "--------------------------\n", "query = SELECT T1.Aircraft , COUNT(*) FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft\n", "--------------------------\n", "query_llm = SELECT aircraft.Aircraft , COUNT(*) FROM aircraft JOIN MATCH AS T2 ON aircraft.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft\n", "--------------------------\n", "SELECT aircraft.Aircraft , COUNT(*) FROM aircraft JOIN MATCH ON aircraft.Aircraft_ID = MATCH.Winning_Aircraft GROUP BY MATCH.Winning_Aircraft\n", "--------------------------\n", "93\n", "--------------------------\n", "query = SELECT T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft HAVING COUNT(*) >= 2\n", "--------------------------\n", "query_llm = SELECT aircraft.Aircraft FROM aircraft JOIN MATCH AS T2 ON aircraft.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft HAVING COUNT(*) >= 2\n", "--------------------------\n", "SELECT aircraft.Aircraft FROM aircraft JOIN MATCH ON aircraft.Aircraft_ID = MATCH.Winning_Aircraft GROUP BY MATCH.Winning_Aircraft HAVING COUNT(*) >= 2\n", "--------------------------\n", "94\n", "--------------------------\n", "query = SELECT T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft HAVING COUNT(*) >= 2\n", "--------------------------\n", "query_llm = SELECT aircraft.Aircraft FROM aircraft JOIN MATCH AS T2 ON aircraft.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft HAVING COUNT(*) >= 2\n", "--------------------------\n", "SELECT aircraft.Aircraft FROM aircraft JOIN MATCH ON aircraft.Aircraft_ID = MATCH.Winning_Aircraft GROUP BY MATCH.Winning_Aircraft HAVING COUNT(*) >= 2\n", "--------------------------\n", "95\n", "--------------------------\n", "query = SELECT t1.name , t1.age FROM pilot AS t1 JOIN MATCH AS t2 ON t1.pilot_id = t2.winning_pilot WHERE t1.age < 30 GROUP BY t2.winning_pilot ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT pilot.name , pilot.age FROM pilot JOIN MATCH AS t2 ON pilot.pilot_id = t2.winning_pilot WHERE pilot.age < 30 GROUP BY t2.winning_pilot ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "SELECT pilot.name , pilot.age FROM pilot JOIN MATCH ON pilot.pilot_id = MATCH.winning_pilot WHERE pilot.age < 30 GROUP BY MATCH.winning_pilot ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "96\n", "--------------------------\n", "query = SELECT t1.name , t1.age FROM pilot AS t1 JOIN MATCH AS t2 ON t1.pilot_id = t2.winning_pilot WHERE t1.age < 30 GROUP BY t2.winning_pilot ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT pilot.name , pilot.age FROM pilot JOIN MATCH AS t2 ON pilot.pilot_id = t2.winning_pilot WHERE pilot.age < 30 GROUP BY t2.winning_pilot ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "SELECT pilot.name , pilot.age FROM pilot JOIN MATCH ON pilot.pilot_id = MATCH.winning_pilot WHERE pilot.age < 30 GROUP BY MATCH.winning_pilot ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "97\n", "--------------------------\n", "query = SELECT t1.name , t1.age FROM pilot AS t1 JOIN MATCH AS t2 ON t1.pilot_id = t2.winning_pilot ORDER BY t1.age LIMIT 1\n", "--------------------------\n", "query_llm = SELECT pilot.name , pilot.age FROM pilot JOIN MATCH AS t2 ON pilot.pilot_id = t2.winning_pilot ORDER BY pilot.age LIMIT 1\n", "--------------------------\n", "SELECT pilot.name , pilot.age FROM pilot JOIN MATCH ON pilot.pilot_id = MATCH.winning_pilot ORDER BY pilot.age LIMIT 1\n", "--------------------------\n", "98\n", "--------------------------\n", "query = SELECT t1.name , t1.age FROM pilot AS t1 JOIN MATCH AS t2 ON t1.pilot_id = t2.winning_pilot ORDER BY t1.age LIMIT 1\n", "--------------------------\n", "query_llm = SELECT pilot.name , pilot.age FROM pilot JOIN MATCH AS t2 ON pilot.pilot_id = t2.winning_pilot ORDER BY pilot.age LIMIT 1\n", "--------------------------\n", "SELECT pilot.name , pilot.age FROM pilot JOIN MATCH ON pilot.pilot_id = MATCH.winning_pilot ORDER BY pilot.age LIMIT 1\n", "--------------------------\n", "99\n", "--------------------------\n", "query = SELECT count(DISTINCT t3.characteristic_name) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"sesame\"\n", "--------------------------\n", "query_llm = SELECT count(DISTINCT t3.characteristic_name) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"sesame\"\n", "--------------------------\n", "SELECT count(DISTINCT CHARACTERISTICS.characteristic_name) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"sesame\"\n", "--------------------------\n", "100\n", "--------------------------\n", "query = SELECT count(DISTINCT t3.characteristic_name) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"sesame\"\n", "--------------------------\n", "query_llm = SELECT count(DISTINCT t3.characteristic_name) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"sesame\"\n", "--------------------------\n", "SELECT count(DISTINCT CHARACTERISTICS.characteristic_name) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"sesame\"\n", "--------------------------\n", "101\n", "--------------------------\n", "query = SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"sesame\"\n", "--------------------------\n", "query_llm = SELECT t3.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"sesame\"\n", "--------------------------\n", "SELECT CHARACTERISTICS.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"sesame\"\n", "--------------------------\n", "102\n", "--------------------------\n", "query = SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"sesame\"\n", "--------------------------\n", "query_llm = SELECT t3.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"sesame\"\n", "--------------------------\n", "SELECT CHARACTERISTICS.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"sesame\"\n", "--------------------------\n", "103\n", "--------------------------\n", "query = SELECT t3.characteristic_name , t3.characteristic_data_type FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"cumin\"\n", "--------------------------\n", "query_llm = SELECT t3.characteristic_name , t3.characteristic_data_type FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"cumin\"\n", "--------------------------\n", "SELECT CHARACTERISTICS.characteristic_name , CHARACTERISTICS.characteristic_data_type FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"cumin\"\n", "--------------------------\n", "104\n", "--------------------------\n", "query = SELECT t3.characteristic_name , t3.characteristic_data_type FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"cumin\"\n", "--------------------------\n", "query_llm = SELECT t3.characteristic_name , t3.characteristic_data_type FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"cumin\"\n", "--------------------------\n", "SELECT CHARACTERISTICS.characteristic_name , CHARACTERISTICS.characteristic_data_type FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"cumin\"\n", "--------------------------\n", "105\n", "--------------------------\n", "query = SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"sesame\" AND t3.characteristic_type_code = \"Grade\"\n", "--------------------------\n", "query_llm = SELECT t3.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"sesame\" AND t3.characteristic_type_code = \"Grade\"\n", "--------------------------\n", "SELECT CHARACTERISTICS.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"sesame\" AND CHARACTERISTICS.characteristic_type_code = \"Grade\"\n", "--------------------------\n", "106\n", "--------------------------\n", "query = SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"sesame\" AND t3.characteristic_type_code = \"Grade\"\n", "--------------------------\n", "query_llm = SELECT t3.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"sesame\" AND t3.characteristic_type_code = \"Grade\"\n", "--------------------------\n", "SELECT CHARACTERISTICS.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"sesame\" AND CHARACTERISTICS.characteristic_type_code = \"Grade\"\n", "--------------------------\n", "107\n", "--------------------------\n", "query = SELECT count(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"laurel\"\n", "--------------------------\n", "query_llm = SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"laurel\"\n", "--------------------------\n", "SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"laurel\"\n", "--------------------------\n", "108\n", "--------------------------\n", "query = SELECT count(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"laurel\"\n", "--------------------------\n", "query_llm = SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"laurel\"\n", "--------------------------\n", "SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"laurel\"\n", "--------------------------\n", "109\n", "--------------------------\n", "query = SELECT count(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"flax\"\n", "--------------------------\n", "query_llm = SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"flax\"\n", "--------------------------\n", "SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"flax\"\n", "--------------------------\n", "110\n", "--------------------------\n", "query = SELECT count(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = \"flax\"\n", "--------------------------\n", "query_llm = SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE products.product_name = \"flax\"\n", "--------------------------\n", "SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE products.product_name = \"flax\"\n", "--------------------------\n", "111\n", "--------------------------\n", "query = SELECT product_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id JOIN ref_colors AS t4 ON t1.color_code = t4.color_code WHERE t4.color_description = \"red\" AND t3.characteristic_name = \"fast\"\n", "--------------------------\n", "query_llm = SELECT product_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"red\" AND t3.characteristic_name = \"fast\"\n", "--------------------------\n", "SELECT product_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"red\" AND CHARACTERISTICS.characteristic_name = \"fast\"\n", "--------------------------\n", "112\n", "--------------------------\n", "query = SELECT product_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id JOIN ref_colors AS t4 ON t1.color_code = t4.color_code WHERE t4.color_description = \"red\" AND t3.characteristic_name = \"fast\"\n", "--------------------------\n", "query_llm = SELECT product_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"red\" AND t3.characteristic_name = \"fast\"\n", "--------------------------\n", "SELECT product_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"red\" AND CHARACTERISTICS.characteristic_name = \"fast\"\n", "--------------------------\n", "113\n", "--------------------------\n", "query = SELECT count(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"hot\"\n", "--------------------------\n", "query_llm = SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"hot\"\n", "--------------------------\n", "SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE CHARACTERISTICS.characteristic_name = \"hot\"\n", "--------------------------\n", "114\n", "--------------------------\n", "query = SELECT count(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"hot\"\n", "--------------------------\n", "query_llm = SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"hot\"\n", "--------------------------\n", "SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE CHARACTERISTICS.characteristic_name = \"hot\"\n", "--------------------------\n", "115\n", "--------------------------\n", "query = SELECT DISTINCT t1.product_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"warm\"\n", "--------------------------\n", "query_llm = SELECT DISTINCT products.product_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"warm\"\n", "--------------------------\n", "SELECT DISTINCT products.product_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE CHARACTERISTICS.characteristic_name = \"warm\"\n", "--------------------------\n", "116\n", "--------------------------\n", "query = SELECT DISTINCT t1.product_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"warm\"\n", "--------------------------\n", "query_llm = SELECT DISTINCT products.product_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = \"warm\"\n", "--------------------------\n", "SELECT DISTINCT products.product_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id WHERE CHARACTERISTICS.characteristic_name = \"warm\"\n", "--------------------------\n", "117\n", "--------------------------\n", "query = SELECT count(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id JOIN ref_colors AS t4 ON t1.color_code = t4.color_code WHERE t4.color_description = \"red\" AND t3.characteristic_name = \"slow\"\n", "--------------------------\n", "query_llm = SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"red\" AND t3.characteristic_name = \"slow\"\n", "--------------------------\n", "SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"red\" AND CHARACTERISTICS.characteristic_name = \"slow\"\n", "--------------------------\n", "118\n", "--------------------------\n", "query = SELECT count(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id JOIN ref_colors AS t4 ON t1.color_code = t4.color_code WHERE t4.color_description = \"red\" AND t3.characteristic_name = \"slow\"\n", "--------------------------\n", "query_llm = SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"red\" AND t3.characteristic_name = \"slow\"\n", "--------------------------\n", "SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"red\" AND CHARACTERISTICS.characteristic_name = \"slow\"\n", "--------------------------\n", "119\n", "--------------------------\n", "query = SELECT count(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id JOIN ref_colors AS t4 ON t1.color_code = t4.color_code WHERE t4.color_description = \"white\" OR t3.characteristic_name = \"hot\"\n", "--------------------------\n", "query_llm = SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"white\" OR t3.characteristic_name = \"hot\"\n", "--------------------------\n", "SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"white\" OR CHARACTERISTICS.characteristic_name = \"hot\"\n", "--------------------------\n", "120\n", "--------------------------\n", "query = SELECT count(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id JOIN ref_colors AS t4 ON t1.color_code = t4.color_code WHERE t4.color_description = \"white\" OR t3.characteristic_name = \"hot\"\n", "--------------------------\n", "query_llm = SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"white\" OR t3.characteristic_name = \"hot\"\n", "--------------------------\n", "SELECT count(*) FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id JOIN ref_colors ON products.color_code = ref_colors.color_code WHERE ref_colors.color_description = \"white\" OR CHARACTERISTICS.characteristic_name = \"hot\"\n", "--------------------------\n", "121\n", "--------------------------\n", "query = SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT t3.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "SELECT CHARACTERISTICS.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id GROUP BY CHARACTERISTICS.characteristic_name ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "122\n", "--------------------------\n", "query = SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "query_llm = SELECT t3.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "SELECT CHARACTERISTICS.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id GROUP BY CHARACTERISTICS.characteristic_name ORDER BY count(*) DESC LIMIT 1\n", "--------------------------\n", "123\n", "--------------------------\n", "query = SELECT characteristic_name , other_characteristic_details , characteristic_data_type FROM CHARACTERISTICS EXCEPT SELECT t1.characteristic_name , t1.other_characteristic_details , t1.characteristic_data_type FROM CHARACTERISTICS AS t1 JOIN product_characteristics AS t2 ON t1.characteristic_id = t2.characteristic_id\n", "--------------------------\n", "query_llm = SELECT characteristic_name , other_characteristic_details , characteristic_data_type FROM CHARACTERISTICS EXCEPT SELECT t1.characteristic_name , t1.other_characteristic_details , t1.characteristic_data_type FROM CHARACTERISTICS AS t1 JOIN product_characteristics ON t1.characteristic_id = product_characteristics.characteristic_id\n", "--------------------------\n", "SELECT characteristic_name , other_characteristic_details , characteristic_data_type FROM CHARACTERISTICS EXCEPT SELECT CHARACTERISTICS.characteristic_name , CHARACTERISTICS.other_characteristic_details , CHARACTERISTICS.characteristic_data_type FROM CHARACTERISTICS JOIN product_characteristics ON CHARACTERISTICS.characteristic_id = product_characteristics.characteristic_id\n", "--------------------------\n", "124\n", "--------------------------\n", "query = SELECT characteristic_name , other_characteristic_details , characteristic_data_type FROM CHARACTERISTICS EXCEPT SELECT t1.characteristic_name , t1.other_characteristic_details , t1.characteristic_data_type FROM CHARACTERISTICS AS t1 JOIN product_characteristics AS t2 ON t1.characteristic_id = t2.characteristic_id\n", "--------------------------\n", "query_llm = SELECT characteristic_name , other_characteristic_details , characteristic_data_type FROM CHARACTERISTICS EXCEPT SELECT t1.characteristic_name , t1.other_characteristic_details , t1.characteristic_data_type FROM CHARACTERISTICS AS t1 JOIN product_characteristics ON t1.characteristic_id = product_characteristics.characteristic_id\n", "--------------------------\n", "SELECT characteristic_name , other_characteristic_details , characteristic_data_type FROM CHARACTERISTICS EXCEPT SELECT CHARACTERISTICS.characteristic_name , CHARACTERISTICS.other_characteristic_details , CHARACTERISTICS.characteristic_data_type FROM CHARACTERISTICS JOIN product_characteristics ON CHARACTERISTICS.characteristic_id = product_characteristics.characteristic_id\n", "--------------------------\n", "125\n", "--------------------------\n", "query = SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name HAVING count(*) >= 2\n", "--------------------------\n", "query_llm = SELECT t3.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name HAVING count(*) >= 2\n", "--------------------------\n", "SELECT CHARACTERISTICS.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id GROUP BY CHARACTERISTICS.characteristic_name HAVING count(*) >= 2\n", "--------------------------\n", "126\n", "--------------------------\n", "query = SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name HAVING count(*) >= 2\n", "--------------------------\n", "query_llm = SELECT t3.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS AS t3 ON product_characteristics.characteristic_id = t3.characteristic_id GROUP BY t3.characteristic_name HAVING count(*) >= 2\n", "--------------------------\n", "SELECT CHARACTERISTICS.characteristic_name FROM products JOIN product_characteristics ON products.product_id = product_characteristics.product_id JOIN CHARACTERISTICS ON product_characteristics.characteristic_id = CHARACTERISTICS.characteristic_id GROUP BY CHARACTERISTICS.characteristic_name HAVING count(*) >= 2\n", "--------------------------\n", "127\n", "--------------------------\n", "query = SELECT T3.venue FROM city AS T1 JOIN hosting_city AS T2 ON T1.city_id = T2.host_city JOIN MATCH AS T3 ON T2.match_id = T3.match_id WHERE T1.city = \"Nanjing ( Jiangsu )\" AND T3.competition = \"1994 FIFA World Cup qualification\"\n", "--------------------------\n", "query_llm = SELECT T3.venue FROM city JOIN hosting_city ON city.city_id = hosting_city.host_city JOIN MATCH AS T3 ON hosting_city.match_id = T3.match_id WHERE city.city = \"Nanjing ( Jiangsu )\" AND T3.competition = \"1994 FIFA World Cup qualification\"\n", "--------------------------\n", "SELECT MATCH.venue FROM city JOIN hosting_city ON city.city_id = hosting_city.host_city JOIN MATCH ON hosting_city.match_id = MATCH.match_id WHERE city.city = \"Nanjing ( Jiangsu )\" AND MATCH.competition = \"1994 FIFA World Cup qualification\"\n", "--------------------------\n", "128\n", "--------------------------\n", "query = SELECT T3.venue FROM city AS T1 JOIN hosting_city AS T2 ON T1.city_id = T2.host_city JOIN MATCH AS T3 ON T2.match_id = T3.match_id WHERE T1.city = \"Nanjing ( Jiangsu )\" AND T3.competition = \"1994 FIFA World Cup qualification\"\n", "--------------------------\n", "query_llm = SELECT T3.venue FROM city JOIN hosting_city ON city.city_id = hosting_city.host_city JOIN MATCH AS T3 ON hosting_city.match_id = T3.match_id WHERE city.city = \"Nanjing ( Jiangsu )\" AND T3.competition = \"1994 FIFA World Cup qualification\"\n", "--------------------------\n", "SELECT MATCH.venue FROM city JOIN hosting_city ON city.city_id = hosting_city.host_city JOIN MATCH ON hosting_city.match_id = MATCH.match_id WHERE city.city = \"Nanjing ( Jiangsu )\" AND MATCH.competition = \"1994 FIFA World Cup qualification\"\n", "--------------------------\n", "129\n", "--------------------------\n", "query = SELECT t1.text FROM USER AS t2 JOIN review AS t1 ON t2.user_id = t1.user_id WHERE t2.name = \"Niloofar\";\n", "--------------------------\n", "query_llm = SELECT review.text FROM USER AS t2 JOIN review ON t2.user_id = review.user_id WHERE t2.name = \"Niloofar\";\n", "--------------------------\n", "SELECT review.text FROM USER JOIN review ON USER.user_id = review.user_id WHERE USER.name = \"Niloofar\";\n", "--------------------------\n", "130\n", "--------------------------\n", "query = SELECT t1.name FROM review AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN USER AS t3 ON t3.user_id = t2.user_id WHERE t3.name = \"Niloofar\";\n", "--------------------------\n", "query_llm = SELECT business.name FROM review JOIN business ON review.business_id = business.business_id JOIN USER AS t3 ON t3.user_id = review.user_id WHERE t3.name = \"Niloofar\";\n", "--------------------------\n", "SELECT business.name FROM review JOIN business ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE USER.name = \"Niloofar\";\n", "--------------------------\n", "131\n", "--------------------------\n", "query = SELECT t1.name FROM review AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN USER AS t3 ON t3.user_id = t2.user_id WHERE t2.rating = 5 AND t3.name = \"Niloofar\";\n", "--------------------------\n", "query_llm = SELECT business.name FROM review JOIN business ON review.business_id = business.business_id JOIN USER AS t3 ON t3.user_id = review.user_id WHERE review.rating = 5 AND t3.name = \"Niloofar\";\n", "--------------------------\n", "SELECT business.name FROM review JOIN business ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE review.rating = 5 AND USER.name = \"Niloofar\";\n", "--------------------------\n", "132\n", "--------------------------\n", "query = SELECT t4.text FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN category AS t3 ON t3.business_id = t1.business_id JOIN review AS t4 ON t4.business_id = t1.business_id JOIN USER AS t5 ON t5.user_id = t4.user_id WHERE t2.category_name = \"Italian\" AND t3.category_name = \"category_category_name1\" AND t5.name = \"Michelle\";\n", "--------------------------\n", "query_llm = SELECT review.text FROM category JOIN business ON category.business_id = business.business_id JOIN category ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t5 ON t5.user_id = review.user_id WHERE category.category_name = \"Italian\" AND category.category_name = \"category_category_name1\" AND t5.name = \"Michelle\";\n", "--------------------------\n", "SELECT review.text FROM category JOIN business ON category.business_id = business.business_id JOIN category ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE category.category_name = \"Italian\" AND category.category_name = \"category_category_name1\" AND USER.name = \"Michelle\";\n", "--------------------------\n", "133\n", "--------------------------\n", "query = SELECT t4.name FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN review AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t1.name = \"Mesa Grill\" AND t2.category_name = \"restaurant\";\n", "--------------------------\n", "query_llm = SELECT t4.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = review.user_id WHERE business.name = \"Mesa Grill\" AND category.category_name = \"restaurant\";\n", "--------------------------\n", "SELECT USER.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE business.name = \"Mesa Grill\" AND category.category_name = \"restaurant\";\n", "--------------------------\n", "134\n", "--------------------------\n", "query = SELECT t1.name FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN review AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t1.city = \"Dallas\" AND t2.category_name = \"restaurant\" AND t4.name = \"Patrick\";\n", "--------------------------\n", "query_llm = SELECT business.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = review.user_id WHERE business.city = \"Dallas\" AND category.category_name = \"restaurant\" AND t4.name = \"Patrick\";\n", "--------------------------\n", "SELECT business.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE business.city = \"Dallas\" AND category.category_name = \"restaurant\" AND USER.name = \"Patrick\";\n", "--------------------------\n", "135\n", "--------------------------\n", "query = SELECT t1.name FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN review AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t1.city = \"Dallas\" AND t2.category_name = \"restaurant\" AND t4.name = \"Patrick\";\n", "--------------------------\n", "query_llm = SELECT business.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = review.user_id WHERE business.city = \"Dallas\" AND category.category_name = \"restaurant\" AND t4.name = \"Patrick\";\n", "--------------------------\n", "SELECT business.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE business.city = \"Dallas\" AND category.category_name = \"restaurant\" AND USER.name = \"Patrick\";\n", "--------------------------\n", "136\n", "--------------------------\n", "query = SELECT t1.name FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN review AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t2.category_name = \"Bars\" AND t4.name = \"Patrick\";\n", "--------------------------\n", "query_llm = SELECT business.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = review.user_id WHERE category.category_name = \"Bars\" AND t4.name = \"Patrick\";\n", "--------------------------\n", "SELECT business.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE category.category_name = \"Bars\" AND USER.name = \"Patrick\";\n", "--------------------------\n", "137\n", "--------------------------\n", "query = SELECT t1.name FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN review AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t1.rating >= 3 AND t2.category_name = \"Bars\" AND t4.name = \"Patrick\";\n", "--------------------------\n", "query_llm = SELECT business.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = review.user_id WHERE business.rating >= 3 AND category.category_name = \"Bars\" AND t4.name = \"Patrick\";\n", "--------------------------\n", "SELECT business.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE business.rating >= 3 AND category.category_name = \"Bars\" AND USER.name = \"Patrick\";\n", "--------------------------\n", "138\n", "--------------------------\n", "query = SELECT t3.name FROM tip AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN USER AS t3 ON t3.user_id = t2.user_id WHERE t1.name = \"Barrio Cafe\" AND t2.year = 2015;\n", "--------------------------\n", "query_llm = SELECT t3.name FROM tip JOIN business ON tip.business_id = business.business_id JOIN USER AS t3 ON t3.user_id = tip.user_id WHERE business.name = \"Barrio Cafe\" AND tip.year = 2015;\n", "--------------------------\n", "SELECT USER.name FROM tip JOIN business ON tip.business_id = business.business_id JOIN USER ON USER.user_id = tip.user_id WHERE business.name = \"Barrio Cafe\" AND tip.year = 2015;\n", "--------------------------\n", "139\n", "--------------------------\n", "query = SELECT t1.text FROM USER AS t2 JOIN review AS t1 ON t2.user_id = t1.user_id WHERE t1.rating > 4 AND t2.name = \"Patrick\";\n", "--------------------------\n", "query_llm = SELECT review.text FROM USER AS t2 JOIN review ON t2.user_id = review.user_id WHERE review.rating > 4 AND t2.name = \"Patrick\";\n", "--------------------------\n", "SELECT review.text FROM USER JOIN review ON USER.user_id = review.user_id WHERE review.rating > 4 AND USER.name = \"Patrick\";\n", "--------------------------\n", "140\n", "--------------------------\n", "query = SELECT t3.name FROM tip AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN USER AS t3 ON t3.user_id = t2.user_id WHERE t1.city = \"Dallas\";\n", "--------------------------\n", "query_llm = SELECT t3.name FROM tip JOIN business ON tip.business_id = business.business_id JOIN USER AS t3 ON t3.user_id = tip.user_id WHERE business.city = \"Dallas\";\n", "--------------------------\n", "SELECT USER.name FROM tip JOIN business ON tip.business_id = business.business_id JOIN USER ON USER.user_id = tip.user_id WHERE business.city = \"Dallas\";\n", "--------------------------\n", "141\n", "--------------------------\n", "query = SELECT t4.name FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN tip AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t2.category_name = \"Pet Groomers\";\n", "--------------------------\n", "query_llm = SELECT t4.name FROM category JOIN business ON category.business_id = business.business_id JOIN tip ON tip.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = tip.user_id WHERE category.category_name = \"Pet Groomers\";\n", "--------------------------\n", "SELECT USER.name FROM category JOIN business ON category.business_id = business.business_id JOIN tip ON tip.business_id = business.business_id JOIN USER ON USER.user_id = tip.user_id WHERE category.category_name = \"Pet Groomers\";\n", "--------------------------\n", "142\n", "--------------------------\n", "query = SELECT t4.name FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN review AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t2.category_name = \"restaurant\";\n", "--------------------------\n", "query_llm = SELECT t4.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = review.user_id WHERE category.category_name = \"restaurant\";\n", "--------------------------\n", "SELECT USER.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE category.category_name = \"restaurant\";\n", "--------------------------\n", "143\n", "--------------------------\n", "query = SELECT t4.name FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN review AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t2.category_name = \"restaurant\" AND t3.year = 2010;\n", "--------------------------\n", "query_llm = SELECT t4.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = review.user_id WHERE category.category_name = \"restaurant\" AND review.year = 2010;\n", "--------------------------\n", "SELECT USER.name FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE category.category_name = \"restaurant\" AND review.year = 2010;\n", "--------------------------\n", "144\n", "--------------------------\n", "query = SELECT t2.text FROM USER AS t3 JOIN review AS t1 ON t3.user_id = t1.user_id JOIN tip AS t2 ON t3.user_id = t2.user_id WHERE t1.year = 2012;\n", "--------------------------\n", "query_llm = SELECT tip.text FROM USER AS t3 JOIN review ON t3.user_id = review.user_id JOIN tip ON t3.user_id = tip.user_id WHERE review.year = 2012;\n", "--------------------------\n", "SELECT tip.text FROM USER JOIN review ON USER.user_id = review.user_id JOIN tip ON USER.user_id = tip.user_id WHERE review.year = 2012;\n", "--------------------------\n", "145\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.text ) FROM USER AS t2 JOIN review AS t1 ON t2.user_id = t1.user_id WHERE t1.year = 2015 AND t2.name = \"Niloofar\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT review.text ) FROM USER AS t2 JOIN review ON t2.user_id = review.user_id WHERE review.year = 2015 AND t2.name = \"Niloofar\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT review.text ) FROM USER JOIN review ON USER.user_id = review.user_id WHERE review.year = 2015 AND USER.name = \"Niloofar\";\n", "--------------------------\n", "146\n", "--------------------------\n", "query = SELECT AVG ( t1.rating ) FROM USER AS t2 JOIN review AS t1 ON t2.user_id = t1.user_id WHERE t2.name = \"Michelle\";\n", "--------------------------\n", "query_llm = SELECT AVG ( review.rating ) FROM USER AS t2 JOIN review ON t2.user_id = review.user_id WHERE t2.name = \"Michelle\";\n", "--------------------------\n", "SELECT AVG ( review.rating ) FROM USER JOIN review ON USER.user_id = review.user_id WHERE USER.name = \"Michelle\";\n", "--------------------------\n", "147\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t3.name ) FROM review AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN USER AS t3 ON t3.user_id = t2.user_id WHERE t1.city = \"Pittsburgh\" AND t1.name = \"Sushi Too\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT t3.name ) FROM review JOIN business ON review.business_id = business.business_id JOIN USER AS t3 ON t3.user_id = review.user_id WHERE business.city = \"Pittsburgh\" AND business.name = \"Sushi Too\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT USER.name ) FROM review JOIN business ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE business.city = \"Pittsburgh\" AND business.name = \"Sushi Too\";\n", "--------------------------\n", "148\n", "--------------------------\n", "query = SELECT SUM ( t1.likes ) FROM USER AS t2 JOIN tip AS t1 ON t2.user_id = t1.user_id WHERE t2.name = \"Niloofar\";\n", "--------------------------\n", "query_llm = SELECT SUM ( tip.likes ) FROM USER AS t2 JOIN tip ON t2.user_id = tip.user_id WHERE t2.name = \"Niloofar\";\n", "--------------------------\n", "SELECT SUM ( tip.likes ) FROM USER JOIN tip ON USER.user_id = tip.user_id WHERE USER.name = \"Niloofar\";\n", "--------------------------\n", "149\n", "--------------------------\n", "query = SELECT SUM ( t2.likes ) FROM tip AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN USER AS t3 ON t3.user_id = t2.user_id WHERE t1.name = \"Cafe Zinho\" AND t3.name = \"Niloofar\";\n", "--------------------------\n", "query_llm = SELECT SUM ( tip.likes ) FROM tip JOIN business ON tip.business_id = business.business_id JOIN USER AS t3 ON t3.user_id = tip.user_id WHERE business.name = \"Cafe Zinho\" AND t3.name = \"Niloofar\";\n", "--------------------------\n", "SELECT SUM ( tip.likes ) FROM tip JOIN business ON tip.business_id = business.business_id JOIN USER ON USER.user_id = tip.user_id WHERE business.name = \"Cafe Zinho\" AND USER.name = \"Niloofar\";\n", "--------------------------\n", "150\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.text ) FROM USER AS t2 JOIN tip AS t1 ON t2.user_id = t1.user_id WHERE t1.year = 2010 AND t2.name = \"Michelle\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT tip.text ) FROM USER AS t2 JOIN tip ON t2.user_id = tip.user_id WHERE tip.year = 2010 AND t2.name = \"Michelle\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT tip.text ) FROM USER JOIN tip ON USER.user_id = tip.user_id WHERE tip.year = 2010 AND USER.name = \"Michelle\";\n", "--------------------------\n", "151\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.text ) FROM USER AS t2 JOIN tip AS t1 ON t2.user_id = t1.user_id WHERE t1.year = 2010 AND t2.name = \"Michelle\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT tip.text ) FROM USER AS t2 JOIN tip ON t2.user_id = tip.user_id WHERE tip.year = 2010 AND t2.name = \"Michelle\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT tip.text ) FROM USER JOIN tip ON USER.user_id = tip.user_id WHERE tip.year = 2010 AND USER.name = \"Michelle\";\n", "--------------------------\n", "152\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.text ) FROM USER AS t2 JOIN tip AS t1 ON t2.user_id = t1.user_id WHERE t1.month = \"April\" AND t2.name = \"Michelle\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT tip.text ) FROM USER AS t2 JOIN tip ON t2.user_id = tip.user_id WHERE tip.month = \"April\" AND t2.name = \"Michelle\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT tip.text ) FROM USER JOIN tip ON USER.user_id = tip.user_id WHERE tip.month = \"April\" AND USER.name = \"Michelle\";\n", "--------------------------\n", "153\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t4.name ) FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN review AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t1.city = \"Dallas\" AND t1.name = \"Texas de Brazil\" AND t1.state = \"Texas\" AND t2.category_name = \"restaurant\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT t4.name ) FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = review.user_id WHERE business.city = \"Dallas\" AND business.name = \"Texas de Brazil\" AND business.state = \"Texas\" AND category.category_name = \"restaurant\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT USER.name ) FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE business.city = \"Dallas\" AND business.name = \"Texas de Brazil\" AND business.state = \"Texas\" AND category.category_name = \"restaurant\";\n", "--------------------------\n", "154\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t3.name ) FROM review AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN USER AS t3 ON t3.user_id = t2.user_id WHERE t1.name = \"Bistro Di Napoli\" AND t2.year = 2015;\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT t3.name ) FROM review JOIN business ON review.business_id = business.business_id JOIN USER AS t3 ON t3.user_id = review.user_id WHERE business.name = \"Bistro Di Napoli\" AND review.year = 2015;\n", "--------------------------\n", "SELECT COUNT ( DISTINCT USER.name ) FROM review JOIN business ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE business.name = \"Bistro Di Napoli\" AND review.year = 2015;\n", "--------------------------\n", "155\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.text ) FROM USER AS t2 JOIN review AS t1 ON t2.user_id = t1.user_id WHERE t2.name = \"Adrienne\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT review.text ) FROM USER AS t2 JOIN review ON t2.user_id = review.user_id WHERE t2.name = \"Adrienne\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT review.text ) FROM USER JOIN review ON USER.user_id = review.user_id WHERE USER.name = \"Adrienne\";\n", "--------------------------\n", "156\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.text ) FROM USER AS t2 JOIN review AS t1 ON t2.user_id = t1.user_id WHERE t1.month = \"March\" AND t1.year = 2014 AND t2.name = \"Michelle\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT review.text ) FROM USER AS t2 JOIN review ON t2.user_id = review.user_id WHERE review.month = \"March\" AND review.year = 2014 AND t2.name = \"Michelle\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT review.text ) FROM USER JOIN review ON USER.user_id = review.user_id WHERE review.month = \"March\" AND review.year = 2014 AND USER.name = \"Michelle\";\n", "--------------------------\n", "157\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.name ) FROM review AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN USER AS t3 ON t3.user_id = t2.user_id WHERE t2.year = 2010 AND t3.name = \"Michelle\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT business.name ) FROM review JOIN business ON review.business_id = business.business_id JOIN USER AS t3 ON t3.user_id = review.user_id WHERE review.year = 2010 AND t3.name = \"Michelle\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT business.name ) FROM review JOIN business ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE review.year = 2010 AND USER.name = \"Michelle\";\n", "--------------------------\n", "158\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.name ) FROM review AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN USER AS t3 ON t3.user_id = t2.user_id WHERE t1.city = \"San Diego\" AND t2.year = 2010 AND t3.name = \"Christine\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT business.name ) FROM review JOIN business ON review.business_id = business.business_id JOIN USER AS t3 ON t3.user_id = review.user_id WHERE business.city = \"San Diego\" AND review.year = 2010 AND t3.name = \"Christine\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT business.name ) FROM review JOIN business ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE business.city = \"San Diego\" AND review.year = 2010 AND USER.name = \"Christine\";\n", "--------------------------\n", "159\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t4.name ) FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN review AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t1.city = \"Dallas\" AND t2.category_name = \"Irish Pub\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT t4.name ) FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = review.user_id WHERE business.city = \"Dallas\" AND category.category_name = \"Irish Pub\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT USER.name ) FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE business.city = \"Dallas\" AND category.category_name = \"Irish Pub\";\n", "--------------------------\n", "160\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t4.name ) FROM category AS t2 JOIN business AS t1 ON t2.business_id = t1.business_id JOIN review AS t3 ON t3.business_id = t1.business_id JOIN USER AS t4 ON t4.user_id = t3.user_id WHERE t1.name = \"Vintner Grill\" AND t2.category_name = \"category_category_name0\" AND t3.year = 2010;\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT t4.name ) FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER AS t4 ON t4.user_id = review.user_id WHERE business.name = \"Vintner Grill\" AND category.category_name = \"category_category_name0\" AND review.year = 2010;\n", "--------------------------\n", "SELECT COUNT ( DISTINCT USER.name ) FROM category JOIN business ON category.business_id = business.business_id JOIN review ON review.business_id = business.business_id JOIN USER ON USER.user_id = review.user_id WHERE business.name = \"Vintner Grill\" AND category.category_name = \"category_category_name0\" AND review.year = 2010;\n", "--------------------------\n", "161\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.text ) FROM USER AS t2 JOIN tip AS t1 ON t2.user_id = t1.user_id WHERE t2.name = \"Michelle\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT tip.text ) FROM USER AS t2 JOIN tip ON t2.user_id = tip.user_id WHERE t2.name = \"Michelle\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT tip.text ) FROM USER JOIN tip ON USER.user_id = tip.user_id WHERE USER.name = \"Michelle\";\n", "--------------------------\n", "162\n", "--------------------------\n", "query = SELECT t2.name FROM USER AS t2 JOIN review AS t1 ON t2.user_id = t1.user_id GROUP BY t2.name HAVING AVG ( t1.rating ) < 3;\n", "--------------------------\n", "query_llm = SELECT t2.name FROM USER AS t2 JOIN review ON t2.user_id = review.user_id GROUP BY t2.name HAVING AVG ( review.rating ) < 3;\n", "--------------------------\n", "SELECT USER.name FROM USER JOIN review ON USER.user_id = review.user_id GROUP BY USER.name HAVING AVG ( review.rating ) < 3;\n", "--------------------------\n", "163\n", "--------------------------\n", "query = SELECT t3.name FROM DOMAIN AS t3 JOIN domain_journal AS t1 ON t3.did = t1.did JOIN journal AS t2 ON t2.jid = t1.jid WHERE t2.name = \"PVLDB\";\n", "--------------------------\n", "query_llm = SELECT t3.name FROM DOMAIN AS t3 JOIN domain_journal ON t3.did = domain_journal.did JOIN journal ON journal.jid = domain_journal.jid WHERE journal.name = \"PVLDB\";\n", "--------------------------\n", "SELECT DOMAIN.name FROM DOMAIN JOIN domain_journal ON DOMAIN.did = domain_journal.did JOIN journal ON journal.jid = domain_journal.jid WHERE journal.name = \"PVLDB\";\n", "--------------------------\n", "164\n", "--------------------------\n", "query = SELECT t2.name FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid WHERE t1.name = \"H. V. Jagadish\";\n", "--------------------------\n", "query_llm = SELECT t2.name FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid WHERE author.name = \"H. V. Jagadish\";\n", "--------------------------\n", "SELECT ORGANIZATION.name FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid WHERE author.name = \"H. V. Jagadish\";\n", "--------------------------\n", "165\n", "--------------------------\n", "query = SELECT t2.name FROM domain_author AS t3 JOIN author AS t1 ON t3.aid = t1.aid JOIN DOMAIN AS t2 ON t2.did = t3.did WHERE t1.name = \"H. V. Jagadish\";\n", "--------------------------\n", "query_llm = SELECT t2.name FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN AS t2 ON t2.did = domain_author.did WHERE author.name = \"H. V. Jagadish\";\n", "--------------------------\n", "SELECT DOMAIN.name FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN ON DOMAIN.did = domain_author.did WHERE author.name = \"H. V. Jagadish\";\n", "--------------------------\n", "166\n", "--------------------------\n", "query = SELECT t2.name FROM domain_conference AS t3 JOIN conference AS t1 ON t3.cid = t1.cid JOIN DOMAIN AS t2 ON t2.did = t3.did WHERE t1.name = \"VLDB\";\n", "--------------------------\n", "query_llm = SELECT t2.name FROM domain_conference JOIN conference ON domain_conference.cid = conference.cid JOIN DOMAIN AS t2 ON t2.did = domain_conference.did WHERE conference.name = \"VLDB\";\n", "--------------------------\n", "SELECT DOMAIN.name FROM domain_conference JOIN conference ON domain_conference.cid = conference.cid JOIN DOMAIN ON DOMAIN.did = domain_conference.did WHERE conference.name = \"VLDB\";\n", "--------------------------\n", "167\n", "--------------------------\n", "query = SELECT t1.keyword FROM DOMAIN AS t3 JOIN domain_keyword AS t2 ON t3.did = t2.did JOIN keyword AS t1 ON t1.kid = t2.kid WHERE t3.name = \"Databases\";\n", "--------------------------\n", "query_llm = SELECT keyword.keyword FROM DOMAIN AS t3 JOIN domain_keyword ON t3.did = domain_keyword.did JOIN keyword ON keyword.kid = domain_keyword.kid WHERE t3.name = \"Databases\";\n", "--------------------------\n", "SELECT keyword.keyword FROM DOMAIN JOIN domain_keyword ON DOMAIN.did = domain_keyword.did JOIN keyword ON keyword.kid = domain_keyword.kid WHERE DOMAIN.name = \"Databases\";\n", "--------------------------\n", "168\n", "--------------------------\n", "query = SELECT t1.keyword FROM ORGANIZATION AS t6 JOIN author AS t2 ON t6.oid = t2.oid JOIN writes AS t4 ON t4.aid = t2.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN publication_keyword AS t3 ON t5.pid = t3.pid JOIN keyword AS t1 ON t3.kid = t1.kid WHERE t6.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT keyword.keyword FROM ORGANIZATION AS t6 JOIN author ON t6.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN publication_keyword ON publication.pid = publication_keyword.pid JOIN keyword ON publication_keyword.kid = keyword.kid WHERE t6.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT keyword.keyword FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN publication_keyword ON publication.pid = publication_keyword.pid JOIN keyword ON publication_keyword.kid = keyword.kid WHERE ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "169\n", "--------------------------\n", "query = SELECT t2.name FROM domain_author AS t4 JOIN author AS t1 ON t4.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t4.did JOIN ORGANIZATION AS t2 ON t2.oid = t1.oid WHERE t3.name = \"Databases\";\n", "--------------------------\n", "query_llm = SELECT t2.name FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN AS t3 ON t3.did = domain_author.did JOIN ORGANIZATION AS t2 ON t2.oid = author.oid WHERE t3.name = \"Databases\";\n", "--------------------------\n", "SELECT ORGANIZATION.name FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN ON DOMAIN.did = domain_author.did JOIN ORGANIZATION ON ORGANIZATION.oid = author.oid WHERE DOMAIN.name = \"Databases\";\n", "--------------------------\n", "170\n", "--------------------------\n", "query = SELECT t2.name FROM domain_author AS t4 JOIN author AS t1 ON t4.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t4.did JOIN ORGANIZATION AS t2 ON t2.oid = t1.oid WHERE t3.name = \"Databases\" AND t2.continent = \"North America\";\n", "--------------------------\n", "query_llm = SELECT t2.name FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN AS t3 ON t3.did = domain_author.did JOIN ORGANIZATION AS t2 ON t2.oid = author.oid WHERE t3.name = \"Databases\" AND t2.continent = \"North America\";\n", "--------------------------\n", "SELECT ORGANIZATION.name FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN ON DOMAIN.did = domain_author.did JOIN ORGANIZATION ON ORGANIZATION.oid = author.oid WHERE DOMAIN.name = \"Databases\" AND ORGANIZATION.continent = \"North America\";\n", "--------------------------\n", "171\n", "--------------------------\n", "query = SELECT t1.name FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid WHERE t2.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT author.name FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid WHERE t2.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT author.name FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid WHERE ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "172\n", "--------------------------\n", "query = SELECT t1.name FROM domain_author AS t4 JOIN author AS t1 ON t4.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t4.did JOIN ORGANIZATION AS t2 ON t2.oid = t1.oid WHERE t3.name = \"Databases\" AND t2.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT author.name FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN AS t3 ON t3.did = domain_author.did JOIN ORGANIZATION AS t2 ON t2.oid = author.oid WHERE t3.name = \"Databases\" AND t2.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT author.name FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN ON DOMAIN.did = domain_author.did JOIN ORGANIZATION ON ORGANIZATION.oid = author.oid WHERE DOMAIN.name = \"Databases\" AND ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "173\n", "--------------------------\n", "query = SELECT t4.title FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT publication.title FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE t2.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT publication.title FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "174\n", "--------------------------\n", "query = SELECT t4.title FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = \"University of Michigan\" AND t4.year > 2000;\n", "--------------------------\n", "query_llm = SELECT publication.title FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE t2.name = \"University of Michigan\" AND publication.year > 2000;\n", "--------------------------\n", "SELECT publication.title FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE ORGANIZATION.name = \"University of Michigan\" AND publication.year > 2000;\n", "--------------------------\n", "175\n", "--------------------------\n", "query = SELECT t5.title FROM ORGANIZATION AS t3 JOIN author AS t1 ON t3.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN conference AS t2 ON t5.cid = t2.cid WHERE t2.name = \"VLDB\" AND t3.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT publication.title FROM ORGANIZATION AS t3 JOIN author ON t3.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN conference ON publication.cid = conference.cid WHERE conference.name = \"VLDB\" AND t3.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT publication.title FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN conference ON publication.cid = conference.cid WHERE conference.name = \"VLDB\" AND ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "176\n", "--------------------------\n", "query = SELECT t5.title FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN journal AS t3 ON t5.jid = t3.jid WHERE t3.name = \"PVLDB\" AND t2.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT publication.title FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN journal ON publication.jid = journal.jid WHERE journal.name = \"PVLDB\" AND t2.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT publication.title FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN journal ON publication.jid = journal.jid WHERE journal.name = \"PVLDB\" AND ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "177\n", "--------------------------\n", "query = SELECT t5.title FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN journal AS t3 ON t5.jid = t3.jid WHERE t3.name = \"PVLDB\" AND t2.name = \"University of Michigan\" AND t5.year > 2000;\n", "--------------------------\n", "query_llm = SELECT publication.title FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN journal ON publication.jid = journal.jid WHERE journal.name = \"PVLDB\" AND t2.name = \"University of Michigan\" AND publication.year > 2000;\n", "--------------------------\n", "SELECT publication.title FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN journal ON publication.jid = journal.jid WHERE journal.name = \"PVLDB\" AND ORGANIZATION.name = \"University of Michigan\" AND publication.year > 2000;\n", "--------------------------\n", "178\n", "--------------------------\n", "query = SELECT t3.title FROM DOMAIN AS t2 JOIN domain_publication AS t1 ON t2.did = t1.did JOIN publication AS t3 ON t3.pid = t1.pid WHERE t2.name = \"Databases\" AND t3.citation_num > 200;\n", "--------------------------\n", "query_llm = SELECT publication.title FROM DOMAIN AS t2 JOIN domain_publication ON t2.did = domain_publication.did JOIN publication ON publication.pid = domain_publication.pid WHERE t2.name = \"Databases\" AND publication.citation_num > 200;\n", "--------------------------\n", "SELECT publication.title FROM DOMAIN JOIN domain_publication ON DOMAIN.did = domain_publication.did JOIN publication ON publication.pid = domain_publication.pid WHERE DOMAIN.name = \"Databases\" AND publication.citation_num > 200;\n", "--------------------------\n", "179\n", "--------------------------\n", "query = SELECT t3.title FROM DOMAIN AS t2 JOIN domain_publication AS t1 ON t2.did = t1.did JOIN publication AS t3 ON t3.pid = t1.pid WHERE t2.name = \"Databases\" AND t3.citation_num > 200 AND t3.year > 2000;\n", "--------------------------\n", "query_llm = SELECT publication.title FROM DOMAIN AS t2 JOIN domain_publication ON t2.did = domain_publication.did JOIN publication ON publication.pid = domain_publication.pid WHERE t2.name = \"Databases\" AND publication.citation_num > 200 AND publication.year > 2000;\n", "--------------------------\n", "SELECT publication.title FROM DOMAIN JOIN domain_publication ON DOMAIN.did = domain_publication.did JOIN publication ON publication.pid = domain_publication.pid WHERE DOMAIN.name = \"Databases\" AND publication.citation_num > 200 AND publication.year > 2000;\n", "--------------------------\n", "180\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.keyword ) FROM DOMAIN AS t3 JOIN domain_keyword AS t2 ON t3.did = t2.did JOIN keyword AS t1 ON t1.kid = t2.kid WHERE t3.name = \"Databases\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT keyword.keyword ) FROM DOMAIN AS t3 JOIN domain_keyword ON t3.did = domain_keyword.did JOIN keyword ON keyword.kid = domain_keyword.kid WHERE t3.name = \"Databases\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT keyword.keyword ) FROM DOMAIN JOIN domain_keyword ON DOMAIN.did = domain_keyword.did JOIN keyword ON keyword.kid = domain_keyword.kid WHERE DOMAIN.name = \"Databases\";\n", "--------------------------\n", "181\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.keyword ) FROM ORGANIZATION AS t6 JOIN author AS t2 ON t6.oid = t2.oid JOIN writes AS t4 ON t4.aid = t2.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN publication_keyword AS t3 ON t5.pid = t3.pid JOIN keyword AS t1 ON t3.kid = t1.kid WHERE t6.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT keyword.keyword ) FROM ORGANIZATION AS t6 JOIN author ON t6.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN publication_keyword ON publication.pid = publication_keyword.pid JOIN keyword ON publication_keyword.kid = keyword.kid WHERE t6.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT keyword.keyword ) FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN publication_keyword ON publication.pid = publication_keyword.pid JOIN keyword ON publication_keyword.kid = keyword.kid WHERE ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "182\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t2.name ) FROM domain_author AS t4 JOIN author AS t1 ON t4.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t4.did JOIN ORGANIZATION AS t2 ON t2.oid = t1.oid WHERE t3.name = \"Databases\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT t2.name ) FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN AS t3 ON t3.did = domain_author.did JOIN ORGANIZATION AS t2 ON t2.oid = author.oid WHERE t3.name = \"Databases\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT ORGANIZATION.name ) FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN ON DOMAIN.did = domain_author.did JOIN ORGANIZATION ON ORGANIZATION.oid = author.oid WHERE DOMAIN.name = \"Databases\";\n", "--------------------------\n", "183\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t2.name ) FROM domain_author AS t4 JOIN author AS t1 ON t4.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t4.did JOIN ORGANIZATION AS t2 ON t2.oid = t1.oid WHERE t3.name = \"Databases\" AND t2.continent = \"North America\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT t2.name ) FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN AS t3 ON t3.did = domain_author.did JOIN ORGANIZATION AS t2 ON t2.oid = author.oid WHERE t3.name = \"Databases\" AND t2.continent = \"North America\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT ORGANIZATION.name ) FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN ON DOMAIN.did = domain_author.did JOIN ORGANIZATION ON ORGANIZATION.oid = author.oid WHERE DOMAIN.name = \"Databases\" AND ORGANIZATION.continent = \"North America\";\n", "--------------------------\n", "184\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t4.title ) FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT publication.title ) FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE t2.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT publication.title ) FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "185\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t4.title ) FROM domain_author AS t6 JOIN author AS t1 ON t6.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t6.did JOIN domain_publication AS t2 ON t3.did = t2.did JOIN ORGANIZATION AS t5 ON t5.oid = t1.oid JOIN publication AS t4 ON t4.pid = t2.pid WHERE t3.name = \"Databases\" AND t5.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT publication.title ) FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN AS t3 ON t3.did = domain_author.did JOIN domain_publication ON t3.did = domain_publication.did JOIN ORGANIZATION AS t5 ON t5.oid = author.oid JOIN publication ON publication.pid = domain_publication.pid WHERE t3.name = \"Databases\" AND t5.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT publication.title ) FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN ON DOMAIN.did = domain_author.did JOIN domain_publication ON DOMAIN.did = domain_publication.did JOIN ORGANIZATION ON ORGANIZATION.oid = author.oid JOIN publication ON publication.pid = domain_publication.pid WHERE DOMAIN.name = \"Databases\" AND ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "186\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t4.title ) FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = \"University of Michigan\" AND t4.year > 2000;\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT publication.title ) FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE t2.name = \"University of Michigan\" AND publication.year > 2000;\n", "--------------------------\n", "SELECT COUNT ( DISTINCT publication.title ) FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE ORGANIZATION.name = \"University of Michigan\" AND publication.year > 2000;\n", "--------------------------\n", "187\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t5.title ) FROM ORGANIZATION AS t3 JOIN author AS t1 ON t3.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN conference AS t2 ON t5.cid = t2.cid WHERE t2.name = \"VLDB\" AND t3.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT publication.title ) FROM ORGANIZATION AS t3 JOIN author ON t3.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN conference ON publication.cid = conference.cid WHERE conference.name = \"VLDB\" AND t3.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT publication.title ) FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN conference ON publication.cid = conference.cid WHERE conference.name = \"VLDB\" AND ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "188\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t5.title ) FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN journal AS t3 ON t5.jid = t3.jid WHERE t3.name = \"PVLDB\" AND t2.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT publication.title ) FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN journal ON publication.jid = journal.jid WHERE journal.name = \"PVLDB\" AND t2.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT publication.title ) FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN journal ON publication.jid = journal.jid WHERE journal.name = \"PVLDB\" AND ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "189\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t5.title ) FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN journal AS t3 ON t5.jid = t3.jid WHERE t3.name = \"PVLDB\" AND t2.name = \"University of Michigan\" AND t5.year > 2000;\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT publication.title ) FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN journal ON publication.jid = journal.jid WHERE journal.name = \"PVLDB\" AND t2.name = \"University of Michigan\" AND publication.year > 2000;\n", "--------------------------\n", "SELECT COUNT ( DISTINCT publication.title ) FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid JOIN journal ON publication.jid = journal.jid WHERE journal.name = \"PVLDB\" AND ORGANIZATION.name = \"University of Michigan\" AND publication.year > 2000;\n", "--------------------------\n", "190\n", "--------------------------\n", "query = SELECT SUM ( t4.citation_num ) FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT SUM ( publication.citation_num ) FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE t2.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT SUM ( publication.citation_num ) FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "191\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.name ) FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid WHERE t2.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT author.name ) FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid WHERE t2.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT author.name ) FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid WHERE ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "192\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.name ) FROM domain_author AS t4 JOIN author AS t1 ON t4.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t4.did JOIN ORGANIZATION AS t2 ON t2.oid = t1.oid WHERE t3.name = \"Databases\" AND t2.name = \"University of Michigan\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT author.name ) FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN AS t3 ON t3.did = domain_author.did JOIN ORGANIZATION AS t2 ON t2.oid = author.oid WHERE t3.name = \"Databases\" AND t2.name = \"University of Michigan\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT author.name ) FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN ON DOMAIN.did = domain_author.did JOIN ORGANIZATION ON ORGANIZATION.oid = author.oid WHERE DOMAIN.name = \"Databases\" AND ORGANIZATION.name = \"University of Michigan\";\n", "--------------------------\n", "193\n", "--------------------------\n", "query = SELECT t1.name FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = \"University of Michigan\" GROUP BY t1.name ORDER BY SUM ( t4.citation_num ) DESC LIMIT 1;\n", "--------------------------\n", "query_llm = SELECT author.name FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE t2.name = \"University of Michigan\" GROUP BY author.name ORDER BY SUM ( publication.citation_num ) DESC LIMIT 1;\n", "--------------------------\n", "SELECT author.name FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE ORGANIZATION.name = \"University of Michigan\" GROUP BY author.name ORDER BY SUM ( publication.citation_num ) DESC LIMIT 1;\n", "--------------------------\n", "194\n", "--------------------------\n", "query = SELECT t1.name FROM DOMAIN AS t4 JOIN domain_publication AS t2 ON t4.did = t2.did JOIN publication AS t5 ON t5.pid = t2.pid JOIN writes AS t3 ON t3.pid = t5.pid JOIN author AS t1 ON t3.aid = t1.aid JOIN ORGANIZATION AS t6 ON t6.oid = t1.oid WHERE t4.name = \"Databases\" AND t6.name = \"University of Michigan\" GROUP BY t1.name ORDER BY SUM ( t5.citation_num ) DESC LIMIT 1;\n", "--------------------------\n", "query_llm = SELECT author.name FROM DOMAIN AS t4 JOIN domain_publication ON t4.did = domain_publication.did JOIN publication ON publication.pid = domain_publication.pid JOIN writes ON writes.pid = publication.pid JOIN author ON writes.aid = author.aid JOIN ORGANIZATION AS t6 ON t6.oid = author.oid WHERE t4.name = \"Databases\" AND t6.name = \"University of Michigan\" GROUP BY author.name ORDER BY SUM ( publication.citation_num ) DESC LIMIT 1;\n", "--------------------------\n", "SELECT author.name FROM DOMAIN JOIN domain_publication ON DOMAIN.did = domain_publication.did JOIN publication ON publication.pid = domain_publication.pid JOIN writes ON writes.pid = publication.pid JOIN author ON writes.aid = author.aid JOIN ORGANIZATION ON ORGANIZATION.oid = author.oid WHERE DOMAIN.name = \"Databases\" AND ORGANIZATION.name = \"University of Michigan\" GROUP BY author.name ORDER BY SUM ( publication.citation_num ) DESC LIMIT 1;\n", "--------------------------\n", "195\n", "--------------------------\n", "query = SELECT t3.title FROM DOMAIN AS t2 JOIN domain_publication AS t1 ON t2.did = t1.did JOIN publication AS t3 ON t3.pid = t1.pid WHERE t2.name = \"Databases\" ORDER BY t3.citation_num DESC LIMIT 1;\n", "--------------------------\n", "query_llm = SELECT publication.title FROM DOMAIN AS t2 JOIN domain_publication ON t2.did = domain_publication.did JOIN publication ON publication.pid = domain_publication.pid WHERE t2.name = \"Databases\" ORDER BY publication.citation_num DESC LIMIT 1;\n", "--------------------------\n", "SELECT publication.title FROM DOMAIN JOIN domain_publication ON DOMAIN.did = domain_publication.did JOIN publication ON publication.pid = domain_publication.pid WHERE DOMAIN.name = \"Databases\" ORDER BY publication.citation_num DESC LIMIT 1;\n", "--------------------------\n", "196\n", "--------------------------\n", "query = SELECT t3.title FROM DOMAIN AS t2 JOIN domain_publication AS t1 ON t2.did = t1.did JOIN publication AS t3 ON t3.pid = t1.pid WHERE t2.name = \"Databases\" AND t3.year > 2000 ORDER BY t3.citation_num DESC LIMIT 1;\n", "--------------------------\n", "query_llm = SELECT publication.title FROM DOMAIN AS t2 JOIN domain_publication ON t2.did = domain_publication.did JOIN publication ON publication.pid = domain_publication.pid WHERE t2.name = \"Databases\" AND publication.year > 2000 ORDER BY publication.citation_num DESC LIMIT 1;\n", "--------------------------\n", "SELECT publication.title FROM DOMAIN JOIN domain_publication ON DOMAIN.did = domain_publication.did JOIN publication ON publication.pid = domain_publication.pid WHERE DOMAIN.name = \"Databases\" AND publication.year > 2000 ORDER BY publication.citation_num DESC LIMIT 1;\n", "--------------------------\n", "197\n", "--------------------------\n", "query = SELECT t1.name FROM ORGANIZATION AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = \"University of Michigan\" GROUP BY t1.name HAVING SUM ( t4.citation_num ) > 5000;\n", "--------------------------\n", "query_llm = SELECT author.name FROM ORGANIZATION AS t2 JOIN author ON t2.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE t2.name = \"University of Michigan\" GROUP BY author.name HAVING SUM ( publication.citation_num ) > 5000;\n", "--------------------------\n", "SELECT author.name FROM ORGANIZATION JOIN author ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE ORGANIZATION.name = \"University of Michigan\" GROUP BY author.name HAVING SUM ( publication.citation_num ) > 5000;\n", "--------------------------\n", "198\n", "--------------------------\n", "query = SELECT t1.name FROM domain_author AS t6 JOIN author AS t1 ON t6.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t6.did JOIN ORGANIZATION AS t5 ON t5.oid = t1.oid JOIN writes AS t2 ON t2.aid = t1.aid JOIN publication AS t4 ON t2.pid = t4.pid WHERE t3.name = \"Databases\" AND t5.name = \"University of Michigan\" GROUP BY t1.name HAVING SUM ( t4.citation_num ) > 5000;\n", "--------------------------\n", "query_llm = SELECT author.name FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN AS t3 ON t3.did = domain_author.did JOIN ORGANIZATION AS t5 ON t5.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE t3.name = \"Databases\" AND t5.name = \"University of Michigan\" GROUP BY author.name HAVING SUM ( publication.citation_num ) > 5000;\n", "--------------------------\n", "SELECT author.name FROM domain_author JOIN author ON domain_author.aid = author.aid JOIN DOMAIN ON DOMAIN.did = domain_author.did JOIN ORGANIZATION ON ORGANIZATION.oid = author.oid JOIN writes ON writes.aid = author.aid JOIN publication ON writes.pid = publication.pid WHERE DOMAIN.name = \"Databases\" AND ORGANIZATION.name = \"University of Michigan\" GROUP BY author.name HAVING SUM ( publication.citation_num ) > 5000;\n", "--------------------------\n", "199\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t2.role = \"Alan Turing\" AND t3.title = \"The Imitation Game\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE t2.role = \"Alan Turing\" AND movie.title = \"The Imitation Game\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE CAST.role = \"Alan Turing\" AND movie.title = \"The Imitation Game\";\n", "--------------------------\n", "200\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t2.role = \"Alan Turing\" AND t3.title = \"The Imitation Game\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE t2.role = \"Alan Turing\" AND movie.title = \"The Imitation Game\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE CAST.role = \"Alan Turing\" AND movie.title = \"The Imitation Game\";\n", "--------------------------\n", "201\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t2.role = \"Alan Turing\" AND t3.title = \"The Imitation Game\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE t2.role = \"Alan Turing\" AND movie.title = \"The Imitation Game\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE CAST.role = \"Alan Turing\" AND movie.title = \"The Imitation Game\";\n", "--------------------------\n", "202\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t2.role = \"Alan Turing\" AND t3.title = \"The Imitation Game\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE t2.role = \"Alan Turing\" AND movie.title = \"The Imitation Game\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE CAST.role = \"Alan Turing\" AND movie.title = \"The Imitation Game\";\n", "--------------------------\n", "203\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t2.role = \"Alan Turing\" AND t3.title = \"The Imitation Game\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE t2.role = \"Alan Turing\" AND movie.title = \"The Imitation Game\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE CAST.role = \"Alan Turing\" AND movie.title = \"The Imitation Game\";\n", "--------------------------\n", "204\n", "--------------------------\n", "query = SELECT t2.title FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Robin Wright\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Robin Wright\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Robin Wright\";\n", "--------------------------\n", "205\n", "--------------------------\n", "query = SELECT t2.title FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Robin Wright\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Robin Wright\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Robin Wright\";\n", "--------------------------\n", "206\n", "--------------------------\n", "query = SELECT t2.title FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Robin Wright\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Robin Wright\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Robin Wright\";\n", "--------------------------\n", "207\n", "--------------------------\n", "query = SELECT t4.title FROM CAST AS t5 JOIN actor AS t1 ON t5.aid = t1.aid JOIN movie AS t4 ON t4.mid = t5.msid JOIN directed_by AS t2 ON t4.mid = t2.msid JOIN director AS t3 ON t3.did = t2.did WHERE t1.name = \"Taraneh Alidoosti\" AND t3.name = \"Asghar Farhadi\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t5 JOIN actor ON t5.aid = actor.aid JOIN movie ON movie.mid = t5.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.name = \"Taraneh Alidoosti\" AND director.name = \"Asghar Farhadi\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.name = \"Taraneh Alidoosti\" AND director.name = \"Asghar Farhadi\";\n", "--------------------------\n", "208\n", "--------------------------\n", "query = SELECT t4.title FROM CAST AS t5 JOIN actor AS t1 ON t5.aid = t1.aid JOIN movie AS t4 ON t4.mid = t5.msid JOIN directed_by AS t2 ON t4.mid = t2.msid JOIN director AS t3 ON t3.did = t2.did WHERE t1.name = \"Taraneh Alidoosti\" AND t3.name = \"Asghar Farhadi\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t5 JOIN actor ON t5.aid = actor.aid JOIN movie ON movie.mid = t5.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.name = \"Taraneh Alidoosti\" AND director.name = \"Asghar Farhadi\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.name = \"Taraneh Alidoosti\" AND director.name = \"Asghar Farhadi\";\n", "--------------------------\n", "209\n", "--------------------------\n", "query = SELECT t4.title FROM CAST AS t5 JOIN actor AS t1 ON t5.aid = t1.aid JOIN movie AS t4 ON t4.mid = t5.msid JOIN directed_by AS t2 ON t4.mid = t2.msid JOIN director AS t3 ON t3.did = t2.did WHERE t1.name = \"Taraneh Alidoosti\" AND t3.name = \"Asghar Farhadi\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t5 JOIN actor ON t5.aid = actor.aid JOIN movie ON movie.mid = t5.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.name = \"Taraneh Alidoosti\" AND director.name = \"Asghar Farhadi\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.name = \"Taraneh Alidoosti\" AND director.name = \"Asghar Farhadi\";\n", "--------------------------\n", "210\n", "--------------------------\n", "query = SELECT t4.title FROM CAST AS t5 JOIN actor AS t1 ON t5.aid = t1.aid JOIN movie AS t4 ON t4.mid = t5.msid JOIN directed_by AS t2 ON t4.mid = t2.msid JOIN director AS t3 ON t3.did = t2.did WHERE t1.name = \"Taraneh Alidoosti\" AND t3.name = \"Asghar Farhadi\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t5 JOIN actor ON t5.aid = actor.aid JOIN movie ON movie.mid = t5.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.name = \"Taraneh Alidoosti\" AND director.name = \"Asghar Farhadi\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.name = \"Taraneh Alidoosti\" AND director.name = \"Asghar Farhadi\";\n", "--------------------------\n", "211\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN tv_series AS t2 ON t2.sid = t3.msid WHERE t3.role = \"Olivia Pope\" AND t2.title = \"Scandal\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN tv_series ON tv_series.sid = t3.msid WHERE t3.role = \"Olivia Pope\" AND tv_series.title = \"Scandal\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN tv_series ON tv_series.sid = CAST.msid WHERE CAST.role = \"Olivia Pope\" AND tv_series.title = \"Scandal\";\n", "--------------------------\n", "212\n", "--------------------------\n", "query = SELECT t2.title FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN tv_series AS t2 ON t2.sid = t3.msid WHERE t1.name = \"Scott Foley\";\n", "--------------------------\n", "query_llm = SELECT tv_series.title FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN tv_series ON tv_series.sid = t3.msid WHERE actor.name = \"Scott Foley\";\n", "--------------------------\n", "SELECT tv_series.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN tv_series ON tv_series.sid = CAST.msid WHERE actor.name = \"Scott Foley\";\n", "--------------------------\n", "213\n", "--------------------------\n", "query = SELECT t2.title FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN tv_series AS t2 ON t2.sid = t3.msid WHERE t1.name = \"Scott Foley\";\n", "--------------------------\n", "query_llm = SELECT tv_series.title FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN tv_series ON tv_series.sid = t3.msid WHERE actor.name = \"Scott Foley\";\n", "--------------------------\n", "SELECT tv_series.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN tv_series ON tv_series.sid = CAST.msid WHERE actor.name = \"Scott Foley\";\n", "--------------------------\n", "214\n", "--------------------------\n", "query = SELECT t3.name FROM CAST AS t4 JOIN actor AS t1 ON t4.aid = t1.aid JOIN movie AS t5 ON t5.mid = t4.msid JOIN directed_by AS t2 ON t5.mid = t2.msid JOIN director AS t3 ON t3.did = t2.did WHERE t1.name = \"Kate Winslet\";\n", "--------------------------\n", "query_llm = SELECT director.name FROM CAST AS t4 JOIN actor ON t4.aid = actor.aid JOIN movie ON movie.mid = t4.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.name = \"Kate Winslet\";\n", "--------------------------\n", "SELECT director.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.name = \"Kate Winslet\";\n", "--------------------------\n", "215\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t3 JOIN actor AS t2 ON t3.aid = t2.aid JOIN movie AS t5 ON t5.mid = t3.msid JOIN made_by AS t4 ON t5.mid = t4.msid JOIN producer AS t1 ON t1.pid = t4.pid WHERE t2.name = \"Kate Winslet\";\n", "--------------------------\n", "query_llm = SELECT producer.name FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid JOIN made_by ON movie.mid = made_by.msid JOIN producer ON producer.pid = made_by.pid WHERE actor.name = \"Kate Winslet\";\n", "--------------------------\n", "SELECT producer.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN made_by ON movie.mid = made_by.msid JOIN producer ON producer.pid = made_by.pid WHERE actor.name = \"Kate Winslet\";\n", "--------------------------\n", "216\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t1.gender = \"female\" AND t3.title = \"Saving Private Ryan\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE actor.gender = \"female\" AND movie.title = \"Saving Private Ryan\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.gender = \"female\" AND movie.title = \"Saving Private Ryan\";\n", "--------------------------\n", "217\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t3.title = \"Camp X-Ray\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE movie.title = \"Camp X-Ray\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE movie.title = \"Camp X-Ray\";\n", "--------------------------\n", "218\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t1.nationality = \"Canada\" AND t3.title = \"James Bond\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE actor.nationality = \"Canada\" AND movie.title = \"James Bond\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.nationality = \"Canada\" AND movie.title = \"James Bond\";\n", "--------------------------\n", "219\n", "--------------------------\n", "query = SELECT t2.title FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Rowan Atkinson\" AND t3.role = \"Mr. Bean\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Rowan Atkinson\" AND t3.role = \"Mr. Bean\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Rowan Atkinson\" AND CAST.role = \"Mr. Bean\";\n", "--------------------------\n", "220\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid WHERE t2.role = \"Mr. Bean\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid WHERE t2.role = \"Mr. Bean\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid WHERE CAST.role = \"Mr. Bean\";\n", "--------------------------\n", "221\n", "--------------------------\n", "query = SELECT t1.title FROM movie AS t1 JOIN CAST AS t2 ON t1.mid = t2.msid WHERE t2.role = \"Daffy Duck\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM movie JOIN CAST AS t2 ON movie.mid = t2.msid WHERE t2.role = \"Daffy Duck\";\n", "--------------------------\n", "SELECT movie.title FROM movie JOIN CAST ON movie.mid = CAST.msid WHERE CAST.role = \"Daffy Duck\";\n", "--------------------------\n", "222\n", "--------------------------\n", "query = SELECT t2.role FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t3.title = \"Daddy Long Legs\";\n", "--------------------------\n", "query_llm = SELECT t2.role FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE movie.title = \"Daddy Long Legs\";\n", "--------------------------\n", "SELECT CAST.role FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE movie.title = \"Daddy Long Legs\";\n", "--------------------------\n", "223\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t2.title ) FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Jennifer Aniston\" AND t2.release_year > 2010;\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT movie.title ) FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Jennifer Aniston\" AND movie.release_year > 2010;\n", "--------------------------\n", "SELECT COUNT ( DISTINCT movie.title ) FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Jennifer Aniston\" AND movie.release_year > 2010;\n", "--------------------------\n", "224\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.name ) FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t3.title = \"Saving Private Ryan\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT actor.name ) FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE movie.title = \"Saving Private Ryan\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT actor.name ) FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE movie.title = \"Saving Private Ryan\";\n", "--------------------------\n", "225\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.name ) FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t3.title = \"Saving Private Ryan\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT actor.name ) FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE movie.title = \"Saving Private Ryan\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT actor.name ) FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE movie.title = \"Saving Private Ryan\";\n", "--------------------------\n", "226\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t2.title ) FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Shahab Hosseini\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT movie.title ) FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Shahab Hosseini\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT movie.title ) FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Shahab Hosseini\";\n", "--------------------------\n", "227\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t2.title ) FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Shahab Hosseini\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT movie.title ) FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Shahab Hosseini\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT movie.title ) FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Shahab Hosseini\";\n", "--------------------------\n", "228\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t2.title ) FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Shahab Hosseini\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT movie.title ) FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Shahab Hosseini\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT movie.title ) FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Shahab Hosseini\";\n", "--------------------------\n", "229\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t2.title ) FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Shahab Hosseini\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT movie.title ) FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Shahab Hosseini\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT movie.title ) FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Shahab Hosseini\";\n", "--------------------------\n", "230\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t2.title ) FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Humphrey Bogart\" AND t2.release_year < 1942;\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT movie.title ) FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Humphrey Bogart\" AND movie.release_year < 1942;\n", "--------------------------\n", "SELECT COUNT ( DISTINCT movie.title ) FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Humphrey Bogart\" AND movie.release_year < 1942;\n", "--------------------------\n", "231\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t2.title ) , t2.release_year FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.name = \"Brad Pitt\" GROUP BY t2.release_year;\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT movie.title ) , movie.release_year FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.name = \"Brad Pitt\" GROUP BY movie.release_year;\n", "--------------------------\n", "SELECT COUNT ( DISTINCT movie.title ) , movie.release_year FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Brad Pitt\" GROUP BY movie.release_year;\n", "--------------------------\n", "232\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.name ) FROM CAST AS t4 JOIN actor AS t1 ON t4.aid = t1.aid JOIN movie AS t5 ON t5.mid = t4.msid JOIN directed_by AS t2 ON t5.mid = t2.msid JOIN director AS t3 ON t3.did = t2.did WHERE t1.nationality = \"Iran\" AND t3.name = \"Jim Jarmusch\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT actor.name ) FROM CAST AS t4 JOIN actor ON t4.aid = actor.aid JOIN movie ON movie.mid = t4.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.nationality = \"Iran\" AND director.name = \"Jim Jarmusch\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT actor.name ) FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE actor.nationality = \"Iran\" AND director.name = \"Jim Jarmusch\";\n", "--------------------------\n", "233\n", "--------------------------\n", "query = SELECT COUNT ( DISTINCT t1.name ) FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t1.nationality = \"China\" AND t3.title = \"Rush Hour 3\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( DISTINCT actor.name ) FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE actor.nationality = \"China\" AND movie.title = \"Rush Hour 3\";\n", "--------------------------\n", "SELECT COUNT ( DISTINCT actor.name ) FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.nationality = \"China\" AND movie.title = \"Rush Hour 3\";\n", "--------------------------\n", "234\n", "--------------------------\n", "query = SELECT t4.title FROM CAST AS t5 JOIN actor AS t1 ON t5.aid = t1.aid JOIN movie AS t4 ON t4.mid = t5.msid JOIN CAST AS t3 ON t4.mid = t3.msid JOIN actor AS t2 ON t3.aid = t2.aid WHERE t1.name = \"Woody Strode\" AND t2.name = \"Jason Robards\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t5 JOIN actor ON t5.aid = actor.aid JOIN movie ON movie.mid = t5.msid JOIN CAST AS t3 ON movie.mid = t3.msid JOIN actor ON t3.aid = actor.aid WHERE actor.name = \"Woody Strode\" AND actor.name = \"Jason Robards\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN CAST ON movie.mid = CAST.msid JOIN actor ON CAST.aid = actor.aid WHERE actor.name = \"Woody Strode\" AND actor.name = \"Jason Robards\";\n", "--------------------------\n", "235\n", "--------------------------\n", "query = SELECT t4.title FROM CAST AS t5 JOIN actor AS t1 ON t5.aid = t1.aid JOIN movie AS t4 ON t4.mid = t5.msid JOIN CAST AS t3 ON t4.mid = t3.msid JOIN actor AS t2 ON t3.aid = t2.aid WHERE t1.name = \"Woody Strode\" AND t2.name = \"Jason Robards\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t5 JOIN actor ON t5.aid = actor.aid JOIN movie ON movie.mid = t5.msid JOIN CAST AS t3 ON movie.mid = t3.msid JOIN actor ON t3.aid = actor.aid WHERE actor.name = \"Woody Strode\" AND actor.name = \"Jason Robards\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN CAST ON movie.mid = CAST.msid JOIN actor ON CAST.aid = actor.aid WHERE actor.name = \"Woody Strode\" AND actor.name = \"Jason Robards\";\n", "--------------------------\n", "236\n", "--------------------------\n", "query = SELECT t4.title FROM CAST AS t5 JOIN actor AS t1 ON t5.aid = t1.aid JOIN movie AS t4 ON t4.mid = t5.msid JOIN CAST AS t3 ON t4.mid = t3.msid JOIN actor AS t2 ON t3.aid = t2.aid WHERE t1.name = \"Woody Strode\" AND t2.name = \"Jason Robards\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t5 JOIN actor ON t5.aid = actor.aid JOIN movie ON movie.mid = t5.msid JOIN CAST AS t3 ON movie.mid = t3.msid JOIN actor ON t3.aid = actor.aid WHERE actor.name = \"Woody Strode\" AND actor.name = \"Jason Robards\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN CAST ON movie.mid = CAST.msid JOIN actor ON CAST.aid = actor.aid WHERE actor.name = \"Woody Strode\" AND actor.name = \"Jason Robards\";\n", "--------------------------\n", "237\n", "--------------------------\n", "query = SELECT t4.title FROM CAST AS t5 JOIN actor AS t1 ON t5.aid = t1.aid JOIN movie AS t4 ON t4.mid = t5.msid JOIN CAST AS t3 ON t4.mid = t3.msid JOIN actor AS t2 ON t3.aid = t2.aid WHERE t1.name = \"Woody Strode\" AND t2.name = \"Jason Robards\";\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t5 JOIN actor ON t5.aid = actor.aid JOIN movie ON movie.mid = t5.msid JOIN CAST AS t3 ON movie.mid = t3.msid JOIN actor ON t3.aid = actor.aid WHERE actor.name = \"Woody Strode\" AND actor.name = \"Jason Robards\";\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN CAST ON movie.mid = CAST.msid JOIN actor ON CAST.aid = actor.aid WHERE actor.name = \"Woody Strode\" AND actor.name = \"Jason Robards\";\n", "--------------------------\n", "238\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t4 JOIN actor AS t1 ON t4.aid = t1.aid JOIN movie AS t5 ON t5.mid = t4.msid JOIN CAST AS t3 ON t5.mid = t3.msid JOIN actor AS t2 ON t3.aid = t2.aid WHERE t2.name = \"Tom Hanks\";\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t4 JOIN actor ON t4.aid = actor.aid JOIN movie ON movie.mid = t4.msid JOIN CAST AS t3 ON movie.mid = t3.msid JOIN actor ON t3.aid = actor.aid WHERE actor.name = \"Tom Hanks\";\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN CAST ON movie.mid = CAST.msid JOIN actor ON CAST.aid = actor.aid WHERE actor.name = \"Tom Hanks\";\n", "--------------------------\n", "239\n", "--------------------------\n", "query = SELECT t2.title FROM CAST AS t3 JOIN actor AS t1 ON t3.aid = t1.aid JOIN movie AS t2 ON t2.mid = t3.msid WHERE t1.nationality = \"China\" GROUP BY t2.title ORDER BY COUNT ( DISTINCT t1.name ) DESC LIMIT 1;\n", "--------------------------\n", "query_llm = SELECT movie.title FROM CAST AS t3 JOIN actor ON t3.aid = actor.aid JOIN movie ON movie.mid = t3.msid WHERE actor.nationality = \"China\" GROUP BY movie.title ORDER BY COUNT ( DISTINCT actor.name ) DESC LIMIT 1;\n", "--------------------------\n", "SELECT movie.title FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.nationality = \"China\" GROUP BY movie.title ORDER BY COUNT ( DISTINCT actor.name ) DESC LIMIT 1;\n", "--------------------------\n", "240\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t4 JOIN actor AS t1 ON t4.aid = t1.aid JOIN movie AS t5 ON t5.mid = t4.msid JOIN directed_by AS t2 ON t5.mid = t2.msid JOIN director AS t3 ON t3.did = t2.did WHERE t3.name = \"Quentin Tarantino\" ORDER BY t5.release_year DESC LIMIT 1;\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t4 JOIN actor ON t4.aid = actor.aid JOIN movie ON movie.mid = t4.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE director.name = \"Quentin Tarantino\" ORDER BY movie.release_year DESC LIMIT 1;\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid JOIN directed_by ON movie.mid = directed_by.msid JOIN director ON director.did = directed_by.did WHERE director.name = \"Quentin Tarantino\" ORDER BY movie.release_year DESC LIMIT 1;\n", "--------------------------\n", "241\n", "--------------------------\n", "query = SELECT t1.name FROM CAST AS t2 JOIN actor AS t1 ON t2.aid = t1.aid JOIN movie AS t3 ON t3.mid = t2.msid WHERE t1.name = \"Gabriele Ferzetti\" ORDER BY t3.release_year DESC LIMIT 1;\n", "--------------------------\n", "query_llm = SELECT actor.name FROM CAST AS t2 JOIN actor ON t2.aid = actor.aid JOIN movie ON movie.mid = t2.msid WHERE actor.name = \"Gabriele Ferzetti\" ORDER BY movie.release_year DESC LIMIT 1;\n", "--------------------------\n", "SELECT actor.name FROM CAST JOIN actor ON CAST.aid = actor.aid JOIN movie ON movie.mid = CAST.msid WHERE actor.name = \"Gabriele Ferzetti\" ORDER BY movie.release_year DESC LIMIT 1;\n", "--------------------------\n", "242\n", "--------------------------\n", "query = SELECT COUNT ( * ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.name = \"buttercup kitchen\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( * ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.name = \"buttercup kitchen\";\n", "--------------------------\n", "SELECT COUNT ( * ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.name = \"buttercup kitchen\";\n", "--------------------------\n", "243\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t1.name = \"jamerican cuisine\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE restaurant.name = \"jamerican cuisine\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.name = \"jamerican cuisine\";\n", "--------------------------\n", "244\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "245\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "246\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "247\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "248\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "249\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "250\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "251\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "252\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "253\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "254\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.food_type = \"french\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.food_type = \"french\" );\n", "--------------------------\n", "255\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.name = \"denny\";\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.name = \"denny\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.name = \"denny\";\n", "--------------------------\n", "256\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"bethel island\" AND LOCATION.street_name = \"bethel island rd\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "257\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"bethel island\" AND LOCATION.street_name = \"bethel island rd\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "258\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"bethel island\" AND LOCATION.street_name = \"bethel island rd\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "259\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"bethel island\" AND LOCATION.street_name = \"bethel island rd\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "260\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"alameda\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"alameda\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"alameda\";\n", "--------------------------\n", "261\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"alameda\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"alameda\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"alameda\";\n", "--------------------------\n", "262\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"alameda\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"alameda\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"alameda\";\n", "--------------------------\n", "263\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"alameda\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"alameda\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"alameda\";\n", "--------------------------\n", "264\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"alameda\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"alameda\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"alameda\";\n", "--------------------------\n", "265\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "266\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "267\n", "--------------------------\n", "query = SELECT COUNT ( * ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"palo alto\" AND t1.food_type = \"french\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( * ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"palo alto\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "SELECT COUNT ( * ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"palo alto\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "268\n", "--------------------------\n", "query = SELECT COUNT ( * ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"palo alto\" AND t1.food_type = \"french\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( * ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"palo alto\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "SELECT COUNT ( * ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"palo alto\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "269\n", "--------------------------\n", "query = SELECT COUNT ( * ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"palo alto\" AND t1.food_type = \"french\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( * ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"palo alto\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "SELECT COUNT ( * ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"palo alto\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "270\n", "--------------------------\n", "query = SELECT COUNT ( * ) FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"palo alto\" AND t1.food_type = \"french\";\n", "--------------------------\n", "query_llm = SELECT COUNT ( * ) FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"palo alto\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "SELECT COUNT ( * ) FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"palo alto\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "271\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"french\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "272\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"alameda\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"alameda\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"alameda\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "273\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"alameda\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"alameda\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"alameda\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "274\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"alameda\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"alameda\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"alameda\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "275\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"alameda\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"alameda\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"alameda\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "276\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "277\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "278\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "279\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "280\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "281\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "282\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "283\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "284\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "285\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "286\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "287\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "288\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "289\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "290\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "291\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "292\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "293\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "294\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "295\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "296\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "297\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t2.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND LOCATION.street_name = \"buchanan\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "298\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"french\";\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"french\";\n", "--------------------------\n", "299\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"bethel island\" AND LOCATION.street_name = \"bethel island rd\";\n", "--------------------------\n", "300\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"bethel island\" AND LOCATION.street_name = \"bethel island rd\";\n", "--------------------------\n", "301\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"bethel island\" AND LOCATION.street_name = \"bethel island rd\";\n", "--------------------------\n", "302\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"bethel island\" AND t2.street_name = \"bethel island rd\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"bethel island\" AND LOCATION.street_name = \"bethel island rd\";\n", "--------------------------\n", "303\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "304\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "305\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "306\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "307\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "308\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "309\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "310\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "311\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "312\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "313\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "314\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = \"bay area\" AND t1.food_type = \"american\" );\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" AND restaurant.rating = ( SELECT MAX ( restaurant.rating ) FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name WHERE geographic.region = \"bay area\" AND restaurant.food_type = \"american\" );\n", "--------------------------\n", "315\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "316\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "317\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "318\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "319\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "320\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "321\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "322\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "323\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "324\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "325\n", "--------------------------\n", "query = SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = \"yosemite and mono lake area\" AND t1.food_type = \"french\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t3.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION AS t3 ON restaurant.id = t3.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN geographic ON restaurant.city_name = geographic.city_name JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE geographic.region = \"yosemite and mono lake area\" AND restaurant.food_type = \"french\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "326\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "327\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "328\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "329\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "330\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "331\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "332\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "333\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "334\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "335\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "336\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "337\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "338\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "339\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "340\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "341\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "342\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "343\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "344\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "345\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "346\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "347\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "348\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND t1.food_type = \"arabic\" AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"mountain view\" AND restaurant.food_type = \"arabic\" AND restaurant.rating > 2.5;\n", "--------------------------\n", "349\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.name = \"jamerican cuisine\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.name = \"jamerican cuisine\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.name = \"jamerican cuisine\";\n", "--------------------------\n", "350\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.name = \"jamerican cuisine\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.name = \"jamerican cuisine\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.name = \"jamerican cuisine\";\n", "--------------------------\n", "351\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND t1.name = \"jamerican cuisine\";\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM restaurant JOIN LOCATION AS t2 ON restaurant.id = t2.restaurant_id WHERE t2.city_name = \"san francisco\" AND restaurant.name = \"jamerican cuisine\";\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM restaurant JOIN LOCATION ON restaurant.id = LOCATION.restaurant_id WHERE LOCATION.city_name = \"san francisco\" AND restaurant.name = \"jamerican cuisine\";\n", "--------------------------\n", "352\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM LOCATION AS t2 JOIN restaurant ON restaurant.id = t2.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM LOCATION JOIN restaurant ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "353\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM LOCATION AS t2 JOIN restaurant ON restaurant.id = t2.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM LOCATION JOIN restaurant ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "354\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM LOCATION AS t2 JOIN restaurant ON restaurant.id = t2.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM LOCATION JOIN restaurant ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "355\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM LOCATION AS t2 JOIN restaurant ON restaurant.id = t2.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM LOCATION JOIN restaurant ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"bay area\" );\n", "--------------------------\n", "356\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM LOCATION AS t2 JOIN restaurant ON restaurant.id = t2.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM LOCATION JOIN restaurant ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND restaurant.rating > 2.5;\n", "--------------------------\n", "357\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM LOCATION AS t2 JOIN restaurant ON restaurant.id = t2.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM LOCATION JOIN restaurant ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND restaurant.rating > 2.5;\n", "--------------------------\n", "358\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM LOCATION AS t2 JOIN restaurant ON restaurant.id = t2.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM LOCATION JOIN restaurant ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND restaurant.rating > 2.5;\n", "--------------------------\n", "359\n", "--------------------------\n", "query = SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND t1.rating > 2.5;\n", "--------------------------\n", "query_llm = SELECT t2.house_number , restaurant.name FROM LOCATION AS t2 JOIN restaurant ON restaurant.id = t2.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND restaurant.rating > 2.5;\n", "--------------------------\n", "SELECT LOCATION.house_number , restaurant.name FROM LOCATION JOIN restaurant ON restaurant.id = LOCATION.restaurant_id WHERE restaurant.city_name IN ( SELECT city_name FROM geographic WHERE region = \"region0\" ) AND restaurant.rating > 2.5;\n", "--------------------------\n", "359\n" ] } ] }, { "cell_type": "code", "source": [], "metadata": { "id": "ZEPwj93KPJsK" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "D3d_091Ud0BG" }, "outputs": [], "source": [ "# df = pd.concat([spider, bird], axis=0)\n", "# df = df.fillna('')" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "niRTjA1tQIWr" }, "outputs": [], "source": [ "# df.reset_index(drop=True, inplace=True)" ] }, { "cell_type": "code", "source": [ "df = spider.to_pandas()" ], "metadata": { "id": "po1gNdLjFKdZ" }, "execution_count": 12, "outputs": [] }, { "cell_type": "code", "source": [ "#df = load_dataset(selector_id, split=\"trainSpider\").to_pandas()" ], "metadata": { "id": "LeL7EfmQVyBt", "colab": { "base_uri": "https://localhost:8080/", "height": 241, "referenced_widgets": [ "5a1e71143dc741efac418bc21eb99526", "e380a31a7c9a41f1bd9de22a4eec9afd", "73f947fba7da4fef829ee2034171a836", "a9abf81190a54b29a4fbf7c2514d8b3e", "68dd1789b9a34b91a74c7d00a6c5c491", "dce14eebcd734217be5fd8bfd1099439", "0ecff7b9301b4713870b0747682533b1", "fb996e2abfcc4a0caaec2a2f3ff9fc9a", "11a036e18eac4d7d809a05f68cfb1096", "d10ad1893e1f48849896994284318067", "418852eab70342b89b6c1589874d71d9", "dc51fa9dd4bc4047b0bb22500b95b1f7", "d01ce95ef53d49bd913fcec32505729d", "748a1613620249e6ae4d71aee744024f", "f1c7ee8b443c4638a0d1423248a2207b", "01301a7d24a3430387ccd7997ce62361", "3bfbe04029a544c0924738e19e7a9436", "f3b80afa9a464264b4a001b9eae61983", "b5c66c0f758645f58aa66d526224e467", "771a2d454ea24693a24e124490a97f54", "0da2fbbaf26a4407bcfc9d2526870a13", "40e6cc0f3f7d4ba586f733c8000cef3e", "a5f7375c80e941418802baba0868b509", "0157feead1184dc89e1b23bb4c3c6265", "f6343ed2e1894a6a8a537a341628a1b3", "38dc818a4cad4ff686f309679fea6fbd", "ace1a9b16b3e4114a9810a9bb1800434", "5a15e7b737b54026b942fecd32bae90a", "c888470c2a3f4d5b93227002e2ae463a", "e4778b1b2402447589011dd20dea59d5", "5df57b5daa364f8fbf4d839886ef0283", "a304bcda80bf4148b38ba8d30454d92b", "06976ba3ed7b4c0f9741604ca01dec8a", "25e2b5a94982477ea03255387e1a4c95", "8329778c95f4488988e3d013bbf81493", "af3a06f6682343dda51ed1ef58229a0a", "63c9861278ae4a0cb2632cc6e3e9fa31", "5d689c3854654e1a9552d637e855b2e9", "07c7e9477dc848e586d193f850e4b330", "648f89df3d71429abe155bf048661b3c", "35bac25d9a394d53a643941969f11f33", "a0d882959f0b4b51969691cf6dcecfa1", "97b5552f17f44a34b90413fc663f83f0", "057bfb8b3fb54a12982d1b7422c9e6ef", "2b9ace70a9bc401085fdbc8cced20d38", "358831d17c974c2c95648cf9ee7c9294", "8bb4561e208b4d2f823c782124cfa335", "1a01eb10b70e42a58ebfedb6ccd61a73", "6880557c5da649c19c855735754906d1", "9dd0e981b51648d888fb724c936b6cf4", "9c1bce42a2494449b8f3a833ef09e862", "5be7663a62f44df9ac01171e421c732c", "9611ef2940f74dbab86496d99bf4d7eb", "1e6881df003345718b84ad9ed160a8af", "e03975280a21420d8880f8bfd93ac44a", "0b37dc50f0cd4f149feb3f7ce08f2630", "0abf618ec97e4ca8873c8af349516150", "c9bd191293104538bdbc0a5539be4d0a", "f3fe35e2b0164044aed92f8f776a17b5", "3a9a0de33597425ab7e550ec32aad186", "f6357593f5f64966a4f115adbcbec940", "f283bc804ab348a29c33a82368552fd5", "3248d30b29f84bdcbe4c43594c803673", "307a99fb69894c4cac341e23119150f2", "46d219bf79384b1d98052febd0271589", "71990f86fca248bd8d1e75be403d70db", "9793ebb3046b4e0cadc483222c6d88f9", "4a47677ae2204165be1c7a27214afab4", "9c1c3f497c874132b43c6c8e86bbf3e1", "814ec31670f543e798527a887db56ea0", "e022ce00981049349403502e2a07758b", "aad2ce00485e4468a787dbca24d0ba04", "03994d990e7442b5ab2249403fa62467", "c505d4d70cfe4c23844c7fef29b79c16", "d88bd0e5dc454761bd9db02488746996", "9a3733ca2451421e9ad5613f94ea7d89", "48a9e7a72ccb4352a7393a2461716e99" ] }, "outputId": "4f3f46d3-c400-4dcb-b2ab-acc7880e3e90" }, "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ "README.md: 0%| | 0.00/1.23k [00:00/n/' + system_message + '/n//n/' }}\n", "# {% if messages|selectattr(\"role\", \"equalto\", \"example\")|list %}\n", "# Below are some examples of question and their corresponding SQL queries:/n//n/\n", "# {% else %}\n", "# /n/\n", "# {% endif %}\n", "# {% for message in loop_messages %}\n", "# {% if message['role'] == 'example' %}\n", "# {{ message['content'] }}/n//n/\n", "# {% elif message['role'] == 'schema' %}\n", "# # <|schema|>/n/The query will run on a database with the following schema:/n/{{ message['content'] }}/n//n/\n", "# {% elif message['role'] == 'user' %}\n", "# # <|user|>/n/[QUESTION]{{ message['content'] }}[/QUESTION]/n//n/\n", "# {% elif message['role'] == 'assistant' %}\n", "# # <|assistant|>/n/[SQL]{{ message['content'] }}[/SQL]\n", "# {% endif %}\n", "# {% endfor %}\n", "# {% if add_generation_prompt %}\n", "# # <|assistant|>/n/[SQL]\n", "# {% endif %}\n", "# \"\"\".replace(\"\\n\",\"\").replace(\" \", \"\").replace(\"/n/\", \"\\n\")\n" ], "metadata": { "id": "Jiq-S5I1KOBr" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "aHGTJNq2AmUs" }, "outputs": [], "source": [ "def to_sql(query):\n", " return sqlparse.format(query, reindent=True, keyword_case='upper')\n", "\n", "def replace_last_sql_content(text, new_content):\n", " matches = list(re.finditer(r'```sql (.*?)```', text, re.DOTALL))\n", " if not matches:\n", " return text\n", "\n", " last_match = matches[-1]\n", "\n", " start, end = last_match.span(1)\n", " return text[:start] + new_content + text[end:]\n", "\n", "# def apply_template(row, tokenizer=tokenizer, n_examplea=0):\n", "# question = row['question_en']\n", "# schema = row['schema_llm']\n", "# sql = to_sql(row['query_llm'])\n", "\n", "# system = \"Given a user question and the schema of a database, your task is to generate an SQL query that accurately answers the question based on the provided schema.\"\n", "\n", "\n", "# chat = [{'role': 'user', 'content': f\"# System:\\n{system}\\n\\n# Schema:\\n```sql\\n{schema}\\n```\\n\\n# Question: {question}\"},\n", "# {'role': 'assistant', 'content': f\"```sql\\n{sql}\\n```\"}\n", "# ]\n", "\n", "# row['text'] = tokenizer.apply_chat_template(chat, tokenize=False, add_generation_prompt=False)\n", "\n", "# return row\n", "\n", "def apply_template(row, tokenizer=tokenizer, n_examplea=0):\n", " question = row['question_en']\n", " schema = row['schema_llm_t']\n", " schema_linking = to_sql(row['selector_correct'])\n", "\n", " system = \"Given a user question and the schema of a database, your task is to generate an JSON with the the names of tables and columns of the schema that the question is referring to.\"\n", "\n", " chat = [{'role': 'user', 'content': f\"# System:\\n{system}\\n\\n# Schema:\\n```sql\\n{schema}\\n```\\n\\n# Question: {question}\"},\n", " {'role': 'assistant', 'content': f\"```json\\n{schema_linking}\\n```\"}\n", " ]\n", "\n", " row['text'] = tokenizer.apply_chat_template(chat, tokenize=False, add_generation_prompt=False)\n", "\n", " return row" ] }, { "cell_type": "code", "source": [ "# spider_chain = json.load(open(\"/content/drive/Shareddrives/LLMs/Datasets/spider/spider_chain.json\", \"r\"))\n", "# bird_chain = json.load(open(\"/content/drive/Shareddrives/LLMs/Datasets/bird/bird_chain.json\", \"r\"))" ], "metadata": { "id": "QlA1kMj83Vql" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "# df['chain'] = spider_chain + bird_chain" ], "metadata": { "id": "pCcD4TiC3rpb" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "yvcMZAL3E3TB" }, "outputs": [], "source": [ "df = df.apply(apply_template, axis=1)" ] }, { "cell_type": "code", "source": [ "df.head()" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 539 }, "id": "rQ0KUl2w58K9", "outputId": "664b4e86-fe9f-45ee-bd2b-ea021a31b08f" }, "execution_count": null, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ " db_id schema \\\n", "0 department_management \\nCREATE TABLE department (\\n\\t\"Department_ID\"... \n", "1 department_management \\nCREATE TABLE department (\\n\\t\"Department_ID\"... \n", "2 department_management \\nCREATE TABLE department (\\n\\t\"Department_ID\"... \n", "3 department_management \\nCREATE TABLE department (\\n\\t\"Department_ID\"... \n", "4 department_management \\nCREATE TABLE department (\\n\\t\"Department_ID\"... \n", "\n", " question_en hardness \\\n", "0 How many heads of the departments are older th... easy \n", "1 List the name, born state and age of the heads... medium \n", "2 List the creation year, name and budget of eac... medium \n", "3 What are the maximum and minimum budget of the... medium \n", "4 What is the average number of employees of the... easy \n", "\n", " schema_llm \\\n", "0 Table department (\\n department.Department_... \n", "1 Table department (\\n department.Department_... \n", "2 Table department (\\n department.Department_... \n", "3 Table department (\\n department.Department_... \n", "4 Table department (\\n department.Department_... \n", "\n", " query_llm \\\n", "0 SELECT count(*) FROM head WHERE age > 56 \n", "1 SELECT name , born_state , age FROM head ORD... \n", "2 SELECT creation , name , budget_in_billions ... \n", "3 SELECT max(budget_in_billions) , min(budget_i... \n", "4 SELECT avg(num_employees) FROM department WHER... \n", "\n", " selector \\\n", "0 {\\n 'head': ['head_id', 'age']\\n} \n", "1 {\\n 'head': ['head_id', 'name', 'born_state',... \n", "2 {\\n 'department': ['department_id', 'name', '... \n", "3 {\\n 'department': ['department_id', 'budget_i... \n", "4 {\\n 'department': ['department_id', 'ranking'... \n", "\n", " schema_llm_ct \\\n", "0 CREATE TABLE department (\\n department.Depa... \n", "1 CREATE TABLE department (\\n department.Depa... \n", "2 CREATE TABLE department (\\n department.Depa... \n", "3 CREATE TABLE department (\\n department.Depa... \n", "4 CREATE TABLE department (\\n department.Depa... \n", "\n", " schema_llm_columns_min \\\n", "0 Table department (\\n department.department_... \n", "1 Table department (\\n department.department_... \n", "2 Table department (\\n department.department_... \n", "3 Table department (\\n department.department_... \n", "4 Table department (\\n department.department_... \n", "\n", " schema_llm_columns_min_ct \\\n", "0 CREATE TABLE department (\\n department.depa... \n", "1 CREATE TABLE department (\\n department.depa... \n", "2 CREATE TABLE department (\\n department.depa... \n", "3 CREATE TABLE department (\\n department.depa... \n", "4 CREATE TABLE department (\\n department.depa... \n", "\n", " schema_llm_all_min \\\n", "0 Table department (\\n department.department_... \n", "1 Table department (\\n department.department_... \n", "2 Table department (\\n department.department_... \n", "3 Table department (\\n department.department_... \n", "4 Table department (\\n department.department_... \n", "\n", " schema_llm_all_min_ct \\\n", "0 CREATE TABLE department (\\n department.depa... \n", "1 CREATE TABLE department (\\n department.depa... \n", "2 CREATE TABLE department (\\n department.depa... \n", "3 CREATE TABLE department (\\n department.depa... \n", "4 CREATE TABLE department (\\n department.depa... \n", "\n", " schema_dict \\\n", "0 {\\n 'department': ['Department_ID', 'Name', '... \n", "1 {\\n 'department': ['Department_ID', 'Name', '... \n", "2 {\\n 'department': ['Department_ID', 'Name', '... \n", "3 {\\n 'department': ['Department_ID', 'Name', '... \n", "4 {\\n 'department': ['Department_ID', 'Name', '... \n", "\n", " selector_correct \\\n", "0 {\\n 'head': ['head_ID', 'age']\\n} \n", "1 {\\n 'head': ['head_ID', 'name', 'born_state',... \n", "2 {\\n 'department': ['Department_ID', 'Name', '... \n", "3 {\\n 'department': ['Department_ID', 'Budget_i... \n", "4 {\\n 'department': ['Department_ID', 'Ranking'... \n", "\n", " schema_llm_t \\\n", "0 TABLE department (\\n department.Department_... \n", "1 TABLE department (\\n department.Department_... \n", "2 TABLE department (\\n department.Department_... \n", "3 TABLE department (\\n department.Department_... \n", "4 TABLE department (\\n department.Department_... \n", "\n", " schema_llm_columns_min_t \\\n", "0 TABLE department (\\n department.department_... \n", "1 TABLE department (\\n department.department_... \n", "2 TABLE department (\\n department.department_... \n", "3 TABLE department (\\n department.department_... \n", "4 TABLE department (\\n department.department_... \n", "\n", " schema_llm_all_min_t \\\n", "0 TABLE department (\\n department.department_... \n", "1 TABLE department (\\n department.department_... \n", "2 TABLE department (\\n department.department_... \n", "3 TABLE department (\\n department.department_... \n", "4 TABLE department (\\n department.department_... \n", "\n", " text \n", "0 <|begin_of_text|><|start_header_id|>system<|en... \n", "1 <|begin_of_text|><|start_header_id|>system<|en... \n", "2 <|begin_of_text|><|start_header_id|>system<|en... \n", "3 <|begin_of_text|><|start_header_id|>system<|en... \n", "4 <|begin_of_text|><|start_header_id|>system<|en... " ], "text/html": [ "\n", "
\n", "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
db_idschemaquestion_enhardnessschema_llmquery_llmselectorschema_llm_ctschema_llm_columns_minschema_llm_columns_min_ctschema_llm_all_minschema_llm_all_min_ctschema_dictselector_correctschema_llm_tschema_llm_columns_min_tschema_llm_all_min_ttext
0department_management\\nCREATE TABLE department (\\n\\t\"Department_ID\"...How many heads of the departments are older th...easyTable department (\\n department.Department_...SELECT count(*) FROM head WHERE age > 56{\\n 'head': ['head_id', 'age']\\n}CREATE TABLE department (\\n department.Depa...Table department (\\n department.department_...CREATE TABLE department (\\n department.depa...Table department (\\n department.department_...CREATE TABLE department (\\n department.depa...{\\n 'department': ['Department_ID', 'Name', '...{\\n 'head': ['head_ID', 'age']\\n}TABLE department (\\n department.Department_...TABLE department (\\n department.department_...TABLE department (\\n department.department_...<|begin_of_text|><|start_header_id|>system<|en...
1department_management\\nCREATE TABLE department (\\n\\t\"Department_ID\"...List the name, born state and age of the heads...mediumTable department (\\n department.Department_...SELECT name , born_state , age FROM head ORD...{\\n 'head': ['head_id', 'name', 'born_state',...CREATE TABLE department (\\n department.Depa...Table department (\\n department.department_...CREATE TABLE department (\\n department.depa...Table department (\\n department.department_...CREATE TABLE department (\\n department.depa...{\\n 'department': ['Department_ID', 'Name', '...{\\n 'head': ['head_ID', 'name', 'born_state',...TABLE department (\\n department.Department_...TABLE department (\\n department.department_...TABLE department (\\n department.department_...<|begin_of_text|><|start_header_id|>system<|en...
2department_management\\nCREATE TABLE department (\\n\\t\"Department_ID\"...List the creation year, name and budget of eac...mediumTable department (\\n department.Department_...SELECT creation , name , budget_in_billions ...{\\n 'department': ['department_id', 'name', '...CREATE TABLE department (\\n department.Depa...Table department (\\n department.department_...CREATE TABLE department (\\n department.depa...Table department (\\n department.department_...CREATE TABLE department (\\n department.depa...{\\n 'department': ['Department_ID', 'Name', '...{\\n 'department': ['Department_ID', 'Name', '...TABLE department (\\n department.Department_...TABLE department (\\n department.department_...TABLE department (\\n department.department_...<|begin_of_text|><|start_header_id|>system<|en...
3department_management\\nCREATE TABLE department (\\n\\t\"Department_ID\"...What are the maximum and minimum budget of the...mediumTable department (\\n department.Department_...SELECT max(budget_in_billions) , min(budget_i...{\\n 'department': ['department_id', 'budget_i...CREATE TABLE department (\\n department.Depa...Table department (\\n department.department_...CREATE TABLE department (\\n department.depa...Table department (\\n department.department_...CREATE TABLE department (\\n department.depa...{\\n 'department': ['Department_ID', 'Name', '...{\\n 'department': ['Department_ID', 'Budget_i...TABLE department (\\n department.Department_...TABLE department (\\n department.department_...TABLE department (\\n department.department_...<|begin_of_text|><|start_header_id|>system<|en...
4department_management\\nCREATE TABLE department (\\n\\t\"Department_ID\"...What is the average number of employees of the...easyTable department (\\n department.Department_...SELECT avg(num_employees) FROM department WHER...{\\n 'department': ['department_id', 'ranking'...CREATE TABLE department (\\n department.Depa...Table department (\\n department.department_...CREATE TABLE department (\\n department.depa...Table department (\\n department.department_...CREATE TABLE department (\\n department.depa...{\\n 'department': ['Department_ID', 'Name', '...{\\n 'department': ['Department_ID', 'Ranking'...TABLE department (\\n department.Department_...TABLE department (\\n department.department_...TABLE department (\\n department.department_...<|begin_of_text|><|start_header_id|>system<|en...
\n", "
\n", "
\n", "\n", "
\n", " \n", "\n", " \n", "\n", " \n", "
\n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", " \n", "
\n", "\n", "
\n", "
\n" ], "application/vnd.google.colaboratory.intrinsic+json": { "type": "dataframe", "variable_name": "df", "summary": "{\n \"name\": \"df\",\n \"rows\": 8656,\n \"fields\": [\n {\n \"column\": \"db_id\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 146,\n \"samples\": [\n \"gas_company\",\n \"customers_campaigns_ecommerce\",\n \"performance_attendance\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 146,\n \"samples\": [\n \"\\nCREATE TABLE company (\\n\\t\\\"Company_ID\\\" INTEGER, \\n\\t\\\"Rank\\\" INTEGER, \\n\\t\\\"Company\\\" TEXT, \\n\\t\\\"Headquarters\\\" TEXT, \\n\\t\\\"Main_Industry\\\" TEXT, \\n\\t\\\"Sales_billion\\\" REAL, \\n\\t\\\"Profits_billion\\\" REAL, \\n\\t\\\"Assets_billion\\\" REAL, \\n\\t\\\"Market_Value\\\" REAL, \\n\\tPRIMARY KEY (\\\"Company_ID\\\")\\n)\\n\\n\\nCREATE TABLE gas_station (\\n\\t\\\"Station_ID\\\" INTEGER, \\n\\t\\\"Open_Year\\\" INTEGER, \\n\\t\\\"Location\\\" TEXT, \\n\\t\\\"Manager_Name\\\" TEXT, \\n\\t\\\"Vice_Manager_Name\\\" TEXT, \\n\\t\\\"Representative_Name\\\" TEXT, \\n\\tPRIMARY KEY (\\\"Station_ID\\\")\\n)\\n\\n\\nCREATE TABLE station_company (\\n\\t\\\"Station_ID\\\" INTEGER, \\n\\t\\\"Company_ID\\\" INTEGER, \\n\\t\\\"Rank_of_the_Year\\\" INTEGER, \\n\\tPRIMARY KEY (\\\"Station_ID\\\", \\\"Company_ID\\\"), \\n\\tFOREIGN KEY(\\\"Company_ID\\\") REFERENCES company (\\\"Company_ID\\\"), \\n\\tFOREIGN KEY(\\\"Station_ID\\\") REFERENCES gas_station (\\\"Station_ID\\\")\\n)\",\n \"\\nCREATE TABLE \\\"Customer_Addresses\\\" (\\n\\tcustomer_id INTEGER NOT NULL, \\n\\tpremise_id INTEGER NOT NULL, \\n\\tdate_address_from DATETIME NOT NULL, \\n\\taddress_type_code VARCHAR(15) NOT NULL, \\n\\tdate_address_to DATETIME, \\n\\tFOREIGN KEY(customer_id) REFERENCES \\\"Customers\\\" (customer_id), \\n\\tFOREIGN KEY(premise_id) REFERENCES \\\"Premises\\\" (premise_id)\\n)\\n\\n\\nCREATE TABLE \\\"Customer_Orders\\\" (\\n\\torder_id INTEGER, \\n\\tcustomer_id INTEGER NOT NULL, \\n\\torder_status_code VARCHAR(15) NOT NULL, \\n\\tshipping_method_code VARCHAR(15) NOT NULL, \\n\\torder_placed_datetime DATETIME NOT NULL, \\n\\torder_delivered_datetime DATETIME, \\n\\torder_shipping_charges VARCHAR(255), \\n\\tPRIMARY KEY (order_id), \\n\\tFOREIGN KEY(customer_id) REFERENCES \\\"Customers\\\" (customer_id)\\n)\\n\\n\\nCREATE TABLE \\\"Customers\\\" (\\n\\tcustomer_id INTEGER, \\n\\tpayment_method VARCHAR(15) NOT NULL, \\n\\tcustomer_name VARCHAR(80), \\n\\tcustomer_phone VARCHAR(80), \\n\\tcustomer_email VARCHAR(80), \\n\\tcustomer_address VARCHAR(255), \\n\\tcustomer_login VARCHAR(80), \\n\\tcustomer_password VARCHAR(10), \\n\\tPRIMARY KEY (customer_id)\\n)\\n\\n\\nCREATE TABLE \\\"Mailshot_Campaigns\\\" (\\n\\tmailshot_id INTEGER, \\n\\tproduct_category VARCHAR(15), \\n\\tmailshot_name VARCHAR(80), \\n\\tmailshot_start_date DATETIME, \\n\\tmailshot_end_date DATETIME, \\n\\tPRIMARY KEY (mailshot_id)\\n)\\n\\n\\nCREATE TABLE \\\"Mailshot_Customers\\\" (\\n\\tmailshot_id INTEGER NOT NULL, \\n\\tcustomer_id INTEGER NOT NULL, \\n\\toutcome_code VARCHAR(15) NOT NULL, \\n\\tmailshot_customer_date DATETIME, \\n\\tFOREIGN KEY(mailshot_id) REFERENCES \\\"Mailshot_Campaigns\\\" (mailshot_id), \\n\\tFOREIGN KEY(customer_id) REFERENCES \\\"Customers\\\" (customer_id)\\n)\\n\\n\\nCREATE TABLE \\\"Order_Items\\\" (\\n\\titem_id INTEGER NOT NULL, \\n\\torder_item_status_code VARCHAR(15) NOT NULL, \\n\\torder_id INTEGER NOT NULL, \\n\\tproduct_id INTEGER NOT NULL, \\n\\titem_status_code VARCHAR(15), \\n\\titem_delivered_datetime DATETIME, \\n\\titem_order_quantity VARCHAR(80), \\n\\tFOREIGN KEY(order_id) REFERENCES \\\"Customer_Orders\\\" (order_id), \\n\\tFOREIGN KEY(product_id) REFERENCES \\\"Products\\\" (product_id)\\n)\\n\\n\\nCREATE TABLE \\\"Premises\\\" (\\n\\tpremise_id INTEGER, \\n\\tpremises_type VARCHAR(15) NOT NULL, \\n\\tpremise_details VARCHAR(255), \\n\\tPRIMARY KEY (premise_id)\\n)\\n\\n\\nCREATE TABLE \\\"Products\\\" (\\n\\tproduct_id INTEGER, \\n\\tproduct_category VARCHAR(15) NOT NULL, \\n\\tproduct_name VARCHAR(80), \\n\\tPRIMARY KEY (product_id)\\n)\",\n \"\\nCREATE TABLE member (\\n\\t\\\"Member_ID\\\" TEXT, \\n\\t\\\"Name\\\" TEXT, \\n\\t\\\"Nationality\\\" TEXT, \\n\\t\\\"Role\\\" TEXT, \\n\\tPRIMARY KEY (\\\"Member_ID\\\")\\n)\\n\\n\\nCREATE TABLE member_attendance (\\n\\t\\\"Member_ID\\\" INTEGER, \\n\\t\\\"Performance_ID\\\" INTEGER, \\n\\t\\\"Num_of_Pieces\\\" INTEGER, \\n\\tPRIMARY KEY (\\\"Member_ID\\\", \\\"Performance_ID\\\"), \\n\\tFOREIGN KEY(\\\"Performance_ID\\\") REFERENCES performance (\\\"Performance_ID\\\"), \\n\\tFOREIGN KEY(\\\"Member_ID\\\") REFERENCES member (\\\"Member_ID\\\")\\n)\\n\\n\\nCREATE TABLE performance (\\n\\t\\\"Performance_ID\\\" REAL, \\n\\t\\\"Date\\\" TEXT, \\n\\t\\\"Host\\\" TEXT, \\n\\t\\\"Location\\\" TEXT, \\n\\t\\\"Attendance\\\" INTEGER, \\n\\tPRIMARY KEY (\\\"Performance_ID\\\")\\n)\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"question_en\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 8618,\n \"samples\": [\n \"What are the names of courses without prerequisites?\",\n \"Return the investor who have invested in the greatest number of entrepreneurs.\",\n \"Which customers have ever canceled the purchase of the product \\\"food\\\" (the item status is \\\"Cancel\\\")?\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"hardness\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 4,\n \"samples\": [\n \"medium\",\n \"extra\",\n \"easy\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema_llm\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 146,\n \"samples\": [\n \"Table company (\\n company.Company_ID (INT),\\n company.Rank (INT),\\n company.Company (TEXT),\\n company.Headquarters (TEXT),\\n company.Main_Industry (TEXT),\\n company.Sales_billion (REAL),\\n company.Profits_billion (REAL),\\n company.Assets_billion (REAL),\\n company.Market_Value (REAL),\\n)\\n\\nTable gas_station (\\n gas_station.Station_ID (INT),\\n gas_station.Open_Year (INT),\\n gas_station.Location (TEXT),\\n gas_station.Manager_Name (TEXT),\\n gas_station.Vice_Manager_Name (TEXT),\\n gas_station.Representative_Name (TEXT),\\n)\\n\\nTable station_company (\\n station_company.Station_ID (INT),\\n station_company.Company_ID (INT),\\n station_company.Rank_of_the_Year (INT),\\n)\\n\\n\\nPossible JOINs:\\n\\nstation_company.Station_ID = gas_station.Station_ID\\nstation_company.Company_ID = company.Company_ID\\n\",\n \"Table Customer_Addresses (\\n Customer_Addresses.customer_id (INTEGER),\\n Customer_Addresses.premise_id (INTEGER),\\n Customer_Addresses.date_address_from (DATETIME),\\n Customer_Addresses.address_type_code (VARCHAR(15)),\\n Customer_Addresses.date_address_to (DATETIME),\\n)\\n\\nTable Customer_Orders (\\n Customer_Orders.order_id (INTEGER),\\n Customer_Orders.customer_id (INTEGER),\\n Customer_Orders.order_status_code (VARCHAR(15)),\\n Customer_Orders.shipping_method_code (VARCHAR(15)),\\n Customer_Orders.order_placed_datetime (DATETIME),\\n Customer_Orders.order_delivered_datetime (DATETIME),\\n Customer_Orders.order_shipping_charges (VARCHAR(255)),\\n)\\n\\nTable Customers (\\n Customers.customer_id (INTEGER),\\n Customers.payment_method (VARCHAR(15)),\\n Customers.customer_name (VARCHAR(80)),\\n Customers.customer_phone (VARCHAR(80)),\\n Customers.customer_email (VARCHAR(80)),\\n Customers.customer_address (VARCHAR(255)),\\n Customers.customer_login (VARCHAR(80)),\\n Customers.customer_password (VARCHAR(10)),\\n)\\n\\nTable Mailshot_Campaigns (\\n Mailshot_Campaigns.mailshot_id (INTEGER),\\n Mailshot_Campaigns.product_category (VARCHAR(15)),\\n Mailshot_Campaigns.mailshot_name (VARCHAR(80)),\\n Mailshot_Campaigns.mailshot_start_date (DATETIME),\\n Mailshot_Campaigns.mailshot_end_date (DATETIME),\\n)\\n\\nTable Mailshot_Customers (\\n Mailshot_Customers.mailshot_id (INTEGER),\\n Mailshot_Customers.customer_id (INTEGER),\\n Mailshot_Customers.outcome_code (VARCHAR(15)),\\n Mailshot_Customers.mailshot_customer_date (DATETIME),\\n)\\n\\nTable Order_Items (\\n Order_Items.item_id (INTEGER),\\n Order_Items.order_item_status_code (VARCHAR(15)),\\n Order_Items.order_id (INTEGER),\\n Order_Items.product_id (INTEGER),\\n Order_Items.item_status_code (VARCHAR(15)),\\n Order_Items.item_delivered_datetime (DATETIME),\\n Order_Items.item_order_quantity (VARCHAR(80)),\\n)\\n\\nTable Premises (\\n Premises.premise_id (INTEGER),\\n Premises.premises_type (VARCHAR(15)),\\n Premises.premise_details (VARCHAR(255)),\\n)\\n\\nTable Products (\\n Products.product_id (INTEGER),\\n Products.product_category (VARCHAR(15)),\\n Products.product_name (VARCHAR(80)),\\n)\\n\\n\\nPossible JOINs:\\n\\nCustomer_Addresses.customer_id = Customers.customer_id\\nCustomer_Addresses.premise_id = Premises.premise_id\\n\\nCustomer_Orders.customer_id = Customers.customer_id\\n\\nMailshot_Customers.mailshot_id = Mailshot_Campaigns.mailshot_id\\nMailshot_Customers.customer_id = Customers.customer_id\\n\\nOrder_Items.order_id = Customer_Orders.order_id\\nOrder_Items.product_id = Products.product_id\\n\",\n \"Table member (\\n member.Member_ID (TEXT),\\n member.Name (TEXT),\\n member.Nationality (TEXT),\\n member.Role (TEXT),\\n)\\n\\nTable member_attendance (\\n member_attendance.Member_ID (INT),\\n member_attendance.Performance_ID (INT),\\n member_attendance.Num_of_Pieces (INT),\\n)\\n\\nTable performance (\\n performance.Performance_ID (REAL),\\n performance.Date (TEXT),\\n performance.Host (TEXT),\\n performance.Location (TEXT),\\n performance.Attendance (INT),\\n)\\n\\n\\nPossible JOINs:\\n\\nmember_attendance.Member_ID = member.Member_ID\\nmember_attendance.Performance_ID = performance.Performance_ID\\n\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"query_llm\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 4712,\n \"samples\": [\n \"SELECT manager_name FROM gas_station WHERE open_year > 2000 GROUP BY manager_name ORDER BY count(*) DESC LIMIT 1\",\n \"SELECT lname FROM authors WHERE fname = \\\"Amal\\\"\",\n \"SELECT * FROM swimmer\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"selector\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3358,\n \"samples\": [\n \"{\\n 'rating': ['mid', 'stars'],\\n 'movie': ['mid', 'title', 'director']\\n}\",\n \"{\\n 'player': ['birth_country', 'bats']\\n}\",\n \"{\\n 'bank': ['branch_id', 'city']\\n}\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema_llm_ct\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 147,\n \"samples\": [\n \"CREATE TABLE country (\\n country.Country_ID (INT),\\n country.Name (TEXT),\\n country.Population (INT),\\n country.Area (INT),\\n country.Languages (TEXT),\\n)\\n\\nCREATE TABLE roller_coaster (\\n roller_coaster.Roller_Coaster_ID (INT),\\n roller_coaster.Name (TEXT),\\n roller_coaster.Park (TEXT),\\n roller_coaster.Country_ID (INT),\\n roller_coaster.Length (REAL),\\n roller_coaster.Height (REAL),\\n roller_coaster.Speed (TEXT),\\n roller_coaster.Opened (TEXT),\\n roller_coaster.Status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nroller_coaster.Country_ID = country.Country_ID\\n\",\n \"CREATE TABLE circuits (\\n circuits.circuitId (INTEGER),\\n circuits.circuitRef (TEXT),\\n circuits.name (TEXT),\\n circuits.location (TEXT),\\n circuits.country (TEXT),\\n circuits.lat (REAL),\\n circuits.lng (REAL),\\n circuits.alt (TEXT),\\n circuits.url (TEXT),\\n)\\n\\nCREATE TABLE constructorResults (\\n constructorResults.constructorResultsId (INTEGER),\\n constructorResults.raceId (INTEGER),\\n constructorResults.constructorId (INTEGER),\\n constructorResults.points (REAL),\\n constructorResults.status (TEXT),\\n)\\n\\nCREATE TABLE constructorStandings (\\n constructorStandings.constructorStandingsId (INTEGER),\\n constructorStandings.raceId (INTEGER),\\n constructorStandings.constructorId (INTEGER),\\n constructorStandings.points (REAL),\\n constructorStandings.position (INTEGER),\\n constructorStandings.positionText (TEXT),\\n constructorStandings.wins (INTEGER),\\n)\\n\\nCREATE TABLE constructors (\\n constructors.constructorId (INTEGER),\\n constructors.constructorRef (TEXT),\\n constructors.name (TEXT),\\n constructors.nationality (TEXT),\\n constructors.url (TEXT),\\n)\\n\\nCREATE TABLE driverStandings (\\n driverStandings.driverStandingsId (INTEGER),\\n driverStandings.raceId (INTEGER),\\n driverStandings.driverId (INTEGER),\\n driverStandings.points (REAL),\\n driverStandings.position (INTEGER),\\n driverStandings.positionText (TEXT),\\n driverStandings.wins (INTEGER),\\n)\\n\\nCREATE TABLE drivers (\\n drivers.driverId (INTEGER),\\n drivers.driverRef (TEXT),\\n drivers.number (TEXT),\\n drivers.code (TEXT),\\n drivers.forename (TEXT),\\n drivers.surname (TEXT),\\n drivers.dob (TEXT),\\n drivers.nationality (TEXT),\\n drivers.url (TEXT),\\n)\\n\\nCREATE TABLE lapTimes (\\n lapTimes.raceId (INTEGER),\\n lapTimes.driverId (INTEGER),\\n lapTimes.lap (INTEGER),\\n lapTimes.position (INTEGER),\\n lapTimes.time (TEXT),\\n lapTimes.milliseconds (INTEGER),\\n)\\n\\nCREATE TABLE pitStops (\\n pitStops.raceId (INTEGER),\\n pitStops.driverId (INTEGER),\\n pitStops.stop (INTEGER),\\n pitStops.lap (INTEGER),\\n pitStops.time (TEXT),\\n pitStops.duration (TEXT),\\n pitStops.milliseconds (INTEGER),\\n)\\n\\nCREATE TABLE qualifying (\\n qualifying.qualifyId (INTEGER),\\n qualifying.raceId (INTEGER),\\n qualifying.driverId (INTEGER),\\n qualifying.constructorId (INTEGER),\\n qualifying.number (INTEGER),\\n qualifying.position (INTEGER),\\n qualifying.q1 (TEXT),\\n qualifying.q2 (TEXT),\\n qualifying.q3 (TEXT),\\n)\\n\\nCREATE TABLE races (\\n races.raceId (INTEGER),\\n races.year (INTEGER),\\n races.round (INTEGER),\\n races.circuitId (INTEGER),\\n races.name (TEXT),\\n races.date (TEXT),\\n races.time (TEXT),\\n races.url (TEXT),\\n)\\n\\nCREATE TABLE results (\\n results.resultId (INTEGER),\\n results.raceId (INTEGER),\\n results.driverId (INTEGER),\\n results.constructorId (INTEGER),\\n results.number (INTEGER),\\n results.grid (INTEGER),\\n results.position (TEXT),\\n results.positionText (TEXT),\\n results.positionOrder (INTEGER),\\n results.points (REAL),\\n results.laps (TEXT),\\n results.time (TEXT),\\n results.milliseconds (TEXT),\\n results.fastestLap (TEXT),\\n results.rank (TEXT),\\n results.fastestLapTime (TEXT),\\n results.fastestLapSpeed (TEXT),\\n results.statusId (INTEGER),\\n)\\n\\nCREATE TABLE seasons (\\n seasons.year (INTEGER),\\n seasons.url (TEXT),\\n)\\n\\nCREATE TABLE status (\\n status.statusId (INTEGER),\\n status.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nconstructorResults.raceId = races.raceId\\nconstructorResults.constructorId = constructors.constructorId\\n\\nconstructorStandings.raceId = races.raceId\\nconstructorStandings.constructorId = constructors.constructorId\\n\\ndriverStandings.raceId = races.raceId\\ndriverStandings.driverId = drivers.driverId\\n\\nlapTimes.raceId = races.raceId\\nlapTimes.driverId = drivers.driverId\\n\\npitStops.raceId = races.raceId\\npitStops.driverId = drivers.driverId\\n\\nqualifying.raceId = races.raceId\\nqualifying.driverId = drivers.driverId\\nqualifying.constructorId = constructors.constructorId\\n\\nraces.circuitId = circuits.circuitId\\n\\nresults.raceId = races.raceId\\nresults.driverId = drivers.driverId\\nresults.constructorId = constructors.constructorId\\n\",\n \"CREATE TABLE Customers (\\n Customers.customer_id (INTEGER),\\n Customers.customer_name (VARCHAR(80)),\\n Customers.customer_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE Invoices (\\n Invoices.invoice_number (INTEGER),\\n Invoices.invoice_date (DATETIME),\\n Invoices.invoice_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE Order_Items (\\n Order_Items.order_item_id (INTEGER),\\n Order_Items.product_id (INTEGER),\\n Order_Items.order_id (INTEGER),\\n Order_Items.order_item_status (VARCHAR(10)),\\n Order_Items.order_item_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE Orders (\\n Orders.order_id (INTEGER),\\n Orders.customer_id (INTEGER),\\n Orders.order_status (VARCHAR(10)),\\n Orders.date_order_placed (DATETIME),\\n Orders.order_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE Products (\\n Products.product_id (INTEGER),\\n Products.product_name (VARCHAR(80)),\\n Products.product_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE Shipment_Items (\\n Shipment_Items.shipment_id (INTEGER),\\n Shipment_Items.order_item_id (INTEGER),\\n)\\n\\nCREATE TABLE Shipments (\\n Shipments.shipment_id (INTEGER),\\n Shipments.order_id (INTEGER),\\n Shipments.invoice_number (INTEGER),\\n Shipments.shipment_tracking_number (VARCHAR(80)),\\n Shipments.shipment_date (DATETIME),\\n Shipments.other_shipment_details (VARCHAR(255)),\\n)\\n\\n\\nPossible JOINs:\\n\\nOrder_Items.product_id = Products.product_id\\nOrder_Items.order_id = Orders.order_id\\n\\nOrders.customer_id = Customers.customer_id\\n\\nShipment_Items.shipment_id = Shipments.shipment_id\\nShipment_Items.order_item_id = Order_Items.order_item_id\\n\\nShipments.order_id = Orders.order_id\\nShipments.invoice_number = Invoices.invoice_number\\n\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema_llm_columns_min\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 147,\n \"samples\": [\n \"Table country (\\n country.country_id (INT),\\n country.name (TEXT),\\n country.population (INT),\\n country.area (INT),\\n country.languages (TEXT),\\n)\\n\\nTable roller_coaster (\\n roller_coaster.roller_coaster_id (INT),\\n roller_coaster.name (TEXT),\\n roller_coaster.park (TEXT),\\n roller_coaster.country_id (INT),\\n roller_coaster.length (REAL),\\n roller_coaster.height (REAL),\\n roller_coaster.speed (TEXT),\\n roller_coaster.opened (TEXT),\\n roller_coaster.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nroller_coaster.country_id = country.country_id\\n\",\n \"Table circuits (\\n circuits.circuitid (INTEGER),\\n circuits.circuitref (TEXT),\\n circuits.name (TEXT),\\n circuits.location (TEXT),\\n circuits.country (TEXT),\\n circuits.lat (REAL),\\n circuits.lng (REAL),\\n circuits.alt (TEXT),\\n circuits.url (TEXT),\\n)\\n\\nTable constructorResults (\\n constructorResults.constructorresultsid (INTEGER),\\n constructorResults.raceid (INTEGER),\\n constructorResults.constructorid (INTEGER),\\n constructorResults.points (REAL),\\n constructorResults.status (TEXT),\\n)\\n\\nTable constructorStandings (\\n constructorStandings.constructorstandingsid (INTEGER),\\n constructorStandings.raceid (INTEGER),\\n constructorStandings.constructorid (INTEGER),\\n constructorStandings.points (REAL),\\n constructorStandings.position (INTEGER),\\n constructorStandings.positiontext (TEXT),\\n constructorStandings.wins (INTEGER),\\n)\\n\\nTable constructors (\\n constructors.constructorid (INTEGER),\\n constructors.constructorref (TEXT),\\n constructors.name (TEXT),\\n constructors.nationality (TEXT),\\n constructors.url (TEXT),\\n)\\n\\nTable driverStandings (\\n driverStandings.driverstandingsid (INTEGER),\\n driverStandings.raceid (INTEGER),\\n driverStandings.driverid (INTEGER),\\n driverStandings.points (REAL),\\n driverStandings.position (INTEGER),\\n driverStandings.positiontext (TEXT),\\n driverStandings.wins (INTEGER),\\n)\\n\\nTable drivers (\\n drivers.driverid (INTEGER),\\n drivers.driverref (TEXT),\\n drivers.number (TEXT),\\n drivers.code (TEXT),\\n drivers.forename (TEXT),\\n drivers.surname (TEXT),\\n drivers.dob (TEXT),\\n drivers.nationality (TEXT),\\n drivers.url (TEXT),\\n)\\n\\nTable lapTimes (\\n lapTimes.raceid (INTEGER),\\n lapTimes.driverid (INTEGER),\\n lapTimes.lap (INTEGER),\\n lapTimes.position (INTEGER),\\n lapTimes.time (TEXT),\\n lapTimes.milliseconds (INTEGER),\\n)\\n\\nTable pitStops (\\n pitStops.raceid (INTEGER),\\n pitStops.driverid (INTEGER),\\n pitStops.stop (INTEGER),\\n pitStops.lap (INTEGER),\\n pitStops.time (TEXT),\\n pitStops.duration (TEXT),\\n pitStops.milliseconds (INTEGER),\\n)\\n\\nTable qualifying (\\n qualifying.qualifyid (INTEGER),\\n qualifying.raceid (INTEGER),\\n qualifying.driverid (INTEGER),\\n qualifying.constructorid (INTEGER),\\n qualifying.number (INTEGER),\\n qualifying.position (INTEGER),\\n qualifying.q1 (TEXT),\\n qualifying.q2 (TEXT),\\n qualifying.q3 (TEXT),\\n)\\n\\nTable races (\\n races.raceid (INTEGER),\\n races.year (INTEGER),\\n races.round (INTEGER),\\n races.circuitid (INTEGER),\\n races.name (TEXT),\\n races.date (TEXT),\\n races.time (TEXT),\\n races.url (TEXT),\\n)\\n\\nTable results (\\n results.resultid (INTEGER),\\n results.raceid (INTEGER),\\n results.driverid (INTEGER),\\n results.constructorid (INTEGER),\\n results.number (INTEGER),\\n results.grid (INTEGER),\\n results.position (TEXT),\\n results.positiontext (TEXT),\\n results.positionorder (INTEGER),\\n results.points (REAL),\\n results.laps (TEXT),\\n results.time (TEXT),\\n results.milliseconds (TEXT),\\n results.fastestlap (TEXT),\\n results.rank (TEXT),\\n results.fastestlaptime (TEXT),\\n results.fastestlapspeed (TEXT),\\n results.statusid (INTEGER),\\n)\\n\\nTable seasons (\\n seasons.year (INTEGER),\\n seasons.url (TEXT),\\n)\\n\\nTable status (\\n status.statusid (INTEGER),\\n status.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nconstructorResults.raceid = races.raceid\\nconstructorResults.constructorid = constructors.constructorid\\n\\nconstructorStandings.raceid = races.raceid\\nconstructorStandings.constructorid = constructors.constructorid\\n\\ndriverStandings.raceid = races.raceid\\ndriverStandings.driverid = drivers.driverid\\n\\nlapTimes.raceid = races.raceid\\nlapTimes.driverid = drivers.driverid\\n\\npitStops.raceid = races.raceid\\npitStops.driverid = drivers.driverid\\n\\nqualifying.raceid = races.raceid\\nqualifying.driverid = drivers.driverid\\nqualifying.constructorid = constructors.constructorid\\n\\nraces.circuitid = circuits.circuitid\\n\\nresults.raceid = races.raceid\\nresults.driverid = drivers.driverid\\nresults.constructorid = constructors.constructorid\\n\",\n \"Table Customers (\\n Customers.customer_id (INTEGER),\\n Customers.customer_name (VARCHAR(80)),\\n Customers.customer_details (VARCHAR(255)),\\n)\\n\\nTable Invoices (\\n Invoices.invoice_number (INTEGER),\\n Invoices.invoice_date (DATETIME),\\n Invoices.invoice_details (VARCHAR(255)),\\n)\\n\\nTable Order_Items (\\n Order_Items.order_item_id (INTEGER),\\n Order_Items.product_id (INTEGER),\\n Order_Items.order_id (INTEGER),\\n Order_Items.order_item_status (VARCHAR(10)),\\n Order_Items.order_item_details (VARCHAR(255)),\\n)\\n\\nTable Orders (\\n Orders.order_id (INTEGER),\\n Orders.customer_id (INTEGER),\\n Orders.order_status (VARCHAR(10)),\\n Orders.date_order_placed (DATETIME),\\n Orders.order_details (VARCHAR(255)),\\n)\\n\\nTable Products (\\n Products.product_id (INTEGER),\\n Products.product_name (VARCHAR(80)),\\n Products.product_details (VARCHAR(255)),\\n)\\n\\nTable Shipment_Items (\\n Shipment_Items.shipment_id (INTEGER),\\n Shipment_Items.order_item_id (INTEGER),\\n)\\n\\nTable Shipments (\\n Shipments.shipment_id (INTEGER),\\n Shipments.order_id (INTEGER),\\n Shipments.invoice_number (INTEGER),\\n Shipments.shipment_tracking_number (VARCHAR(80)),\\n Shipments.shipment_date (DATETIME),\\n Shipments.other_shipment_details (VARCHAR(255)),\\n)\\n\\n\\nPossible JOINs:\\n\\nOrder_Items.product_id = Products.product_id\\nOrder_Items.order_id = Orders.order_id\\n\\nOrders.customer_id = Customers.customer_id\\n\\nShipment_Items.shipment_id = Shipments.shipment_id\\nShipment_Items.order_item_id = Order_Items.order_item_id\\n\\nShipments.order_id = Orders.order_id\\nShipments.invoice_number = Invoices.invoice_number\\n\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema_llm_columns_min_ct\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 147,\n \"samples\": [\n \"CREATE TABLE country (\\n country.country_id (INT),\\n country.name (TEXT),\\n country.population (INT),\\n country.area (INT),\\n country.languages (TEXT),\\n)\\n\\nCREATE TABLE roller_coaster (\\n roller_coaster.roller_coaster_id (INT),\\n roller_coaster.name (TEXT),\\n roller_coaster.park (TEXT),\\n roller_coaster.country_id (INT),\\n roller_coaster.length (REAL),\\n roller_coaster.height (REAL),\\n roller_coaster.speed (TEXT),\\n roller_coaster.opened (TEXT),\\n roller_coaster.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nroller_coaster.country_id = country.country_id\\n\",\n \"CREATE TABLE circuits (\\n circuits.circuitid (INTEGER),\\n circuits.circuitref (TEXT),\\n circuits.name (TEXT),\\n circuits.location (TEXT),\\n circuits.country (TEXT),\\n circuits.lat (REAL),\\n circuits.lng (REAL),\\n circuits.alt (TEXT),\\n circuits.url (TEXT),\\n)\\n\\nCREATE TABLE constructorResults (\\n constructorResults.constructorresultsid (INTEGER),\\n constructorResults.raceid (INTEGER),\\n constructorResults.constructorid (INTEGER),\\n constructorResults.points (REAL),\\n constructorResults.status (TEXT),\\n)\\n\\nCREATE TABLE constructorStandings (\\n constructorStandings.constructorstandingsid (INTEGER),\\n constructorStandings.raceid (INTEGER),\\n constructorStandings.constructorid (INTEGER),\\n constructorStandings.points (REAL),\\n constructorStandings.position (INTEGER),\\n constructorStandings.positiontext (TEXT),\\n constructorStandings.wins (INTEGER),\\n)\\n\\nCREATE TABLE constructors (\\n constructors.constructorid (INTEGER),\\n constructors.constructorref (TEXT),\\n constructors.name (TEXT),\\n constructors.nationality (TEXT),\\n constructors.url (TEXT),\\n)\\n\\nCREATE TABLE driverStandings (\\n driverStandings.driverstandingsid (INTEGER),\\n driverStandings.raceid (INTEGER),\\n driverStandings.driverid (INTEGER),\\n driverStandings.points (REAL),\\n driverStandings.position (INTEGER),\\n driverStandings.positiontext (TEXT),\\n driverStandings.wins (INTEGER),\\n)\\n\\nCREATE TABLE drivers (\\n drivers.driverid (INTEGER),\\n drivers.driverref (TEXT),\\n drivers.number (TEXT),\\n drivers.code (TEXT),\\n drivers.forename (TEXT),\\n drivers.surname (TEXT),\\n drivers.dob (TEXT),\\n drivers.nationality (TEXT),\\n drivers.url (TEXT),\\n)\\n\\nCREATE TABLE lapTimes (\\n lapTimes.raceid (INTEGER),\\n lapTimes.driverid (INTEGER),\\n lapTimes.lap (INTEGER),\\n lapTimes.position (INTEGER),\\n lapTimes.time (TEXT),\\n lapTimes.milliseconds (INTEGER),\\n)\\n\\nCREATE TABLE pitStops (\\n pitStops.raceid (INTEGER),\\n pitStops.driverid (INTEGER),\\n pitStops.stop (INTEGER),\\n pitStops.lap (INTEGER),\\n pitStops.time (TEXT),\\n pitStops.duration (TEXT),\\n pitStops.milliseconds (INTEGER),\\n)\\n\\nCREATE TABLE qualifying (\\n qualifying.qualifyid (INTEGER),\\n qualifying.raceid (INTEGER),\\n qualifying.driverid (INTEGER),\\n qualifying.constructorid (INTEGER),\\n qualifying.number (INTEGER),\\n qualifying.position (INTEGER),\\n qualifying.q1 (TEXT),\\n qualifying.q2 (TEXT),\\n qualifying.q3 (TEXT),\\n)\\n\\nCREATE TABLE races (\\n races.raceid (INTEGER),\\n races.year (INTEGER),\\n races.round (INTEGER),\\n races.circuitid (INTEGER),\\n races.name (TEXT),\\n races.date (TEXT),\\n races.time (TEXT),\\n races.url (TEXT),\\n)\\n\\nCREATE TABLE results (\\n results.resultid (INTEGER),\\n results.raceid (INTEGER),\\n results.driverid (INTEGER),\\n results.constructorid (INTEGER),\\n results.number (INTEGER),\\n results.grid (INTEGER),\\n results.position (TEXT),\\n results.positiontext (TEXT),\\n results.positionorder (INTEGER),\\n results.points (REAL),\\n results.laps (TEXT),\\n results.time (TEXT),\\n results.milliseconds (TEXT),\\n results.fastestlap (TEXT),\\n results.rank (TEXT),\\n results.fastestlaptime (TEXT),\\n results.fastestlapspeed (TEXT),\\n results.statusid (INTEGER),\\n)\\n\\nCREATE TABLE seasons (\\n seasons.year (INTEGER),\\n seasons.url (TEXT),\\n)\\n\\nCREATE TABLE status (\\n status.statusid (INTEGER),\\n status.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nconstructorResults.raceid = races.raceid\\nconstructorResults.constructorid = constructors.constructorid\\n\\nconstructorStandings.raceid = races.raceid\\nconstructorStandings.constructorid = constructors.constructorid\\n\\ndriverStandings.raceid = races.raceid\\ndriverStandings.driverid = drivers.driverid\\n\\nlapTimes.raceid = races.raceid\\nlapTimes.driverid = drivers.driverid\\n\\npitStops.raceid = races.raceid\\npitStops.driverid = drivers.driverid\\n\\nqualifying.raceid = races.raceid\\nqualifying.driverid = drivers.driverid\\nqualifying.constructorid = constructors.constructorid\\n\\nraces.circuitid = circuits.circuitid\\n\\nresults.raceid = races.raceid\\nresults.driverid = drivers.driverid\\nresults.constructorid = constructors.constructorid\\n\",\n \"CREATE TABLE Customers (\\n Customers.customer_id (INTEGER),\\n Customers.customer_name (VARCHAR(80)),\\n Customers.customer_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE Invoices (\\n Invoices.invoice_number (INTEGER),\\n Invoices.invoice_date (DATETIME),\\n Invoices.invoice_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE Order_Items (\\n Order_Items.order_item_id (INTEGER),\\n Order_Items.product_id (INTEGER),\\n Order_Items.order_id (INTEGER),\\n Order_Items.order_item_status (VARCHAR(10)),\\n Order_Items.order_item_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE Orders (\\n Orders.order_id (INTEGER),\\n Orders.customer_id (INTEGER),\\n Orders.order_status (VARCHAR(10)),\\n Orders.date_order_placed (DATETIME),\\n Orders.order_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE Products (\\n Products.product_id (INTEGER),\\n Products.product_name (VARCHAR(80)),\\n Products.product_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE Shipment_Items (\\n Shipment_Items.shipment_id (INTEGER),\\n Shipment_Items.order_item_id (INTEGER),\\n)\\n\\nCREATE TABLE Shipments (\\n Shipments.shipment_id (INTEGER),\\n Shipments.order_id (INTEGER),\\n Shipments.invoice_number (INTEGER),\\n Shipments.shipment_tracking_number (VARCHAR(80)),\\n Shipments.shipment_date (DATETIME),\\n Shipments.other_shipment_details (VARCHAR(255)),\\n)\\n\\n\\nPossible JOINs:\\n\\nOrder_Items.product_id = Products.product_id\\nOrder_Items.order_id = Orders.order_id\\n\\nOrders.customer_id = Customers.customer_id\\n\\nShipment_Items.shipment_id = Shipments.shipment_id\\nShipment_Items.order_item_id = Order_Items.order_item_id\\n\\nShipments.order_id = Orders.order_id\\nShipments.invoice_number = Invoices.invoice_number\\n\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema_llm_all_min\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 147,\n \"samples\": [\n \"Table country (\\n country.country_id (INT),\\n country.name (TEXT),\\n country.population (INT),\\n country.area (INT),\\n country.languages (TEXT),\\n)\\n\\nTable roller_coaster (\\n roller_coaster.roller_coaster_id (INT),\\n roller_coaster.name (TEXT),\\n roller_coaster.park (TEXT),\\n roller_coaster.country_id (INT),\\n roller_coaster.length (REAL),\\n roller_coaster.height (REAL),\\n roller_coaster.speed (TEXT),\\n roller_coaster.opened (TEXT),\\n roller_coaster.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nroller_coaster.country_id = country.country_id\\n\",\n \"Table circuits (\\n circuits.circuitid (INTEGER),\\n circuits.circuitref (TEXT),\\n circuits.name (TEXT),\\n circuits.location (TEXT),\\n circuits.country (TEXT),\\n circuits.lat (REAL),\\n circuits.lng (REAL),\\n circuits.alt (TEXT),\\n circuits.url (TEXT),\\n)\\n\\nTable constructorresults (\\n constructorresults.constructorresultsid (INTEGER),\\n constructorresults.raceid (INTEGER),\\n constructorresults.constructorid (INTEGER),\\n constructorresults.points (REAL),\\n constructorresults.status (TEXT),\\n)\\n\\nTable constructorstandings (\\n constructorstandings.constructorstandingsid (INTEGER),\\n constructorstandings.raceid (INTEGER),\\n constructorstandings.constructorid (INTEGER),\\n constructorstandings.points (REAL),\\n constructorstandings.position (INTEGER),\\n constructorstandings.positiontext (TEXT),\\n constructorstandings.wins (INTEGER),\\n)\\n\\nTable constructors (\\n constructors.constructorid (INTEGER),\\n constructors.constructorref (TEXT),\\n constructors.name (TEXT),\\n constructors.nationality (TEXT),\\n constructors.url (TEXT),\\n)\\n\\nTable driverstandings (\\n driverstandings.driverstandingsid (INTEGER),\\n driverstandings.raceid (INTEGER),\\n driverstandings.driverid (INTEGER),\\n driverstandings.points (REAL),\\n driverstandings.position (INTEGER),\\n driverstandings.positiontext (TEXT),\\n driverstandings.wins (INTEGER),\\n)\\n\\nTable drivers (\\n drivers.driverid (INTEGER),\\n drivers.driverref (TEXT),\\n drivers.number (TEXT),\\n drivers.code (TEXT),\\n drivers.forename (TEXT),\\n drivers.surname (TEXT),\\n drivers.dob (TEXT),\\n drivers.nationality (TEXT),\\n drivers.url (TEXT),\\n)\\n\\nTable laptimes (\\n laptimes.raceid (INTEGER),\\n laptimes.driverid (INTEGER),\\n laptimes.lap (INTEGER),\\n laptimes.position (INTEGER),\\n laptimes.time (TEXT),\\n laptimes.milliseconds (INTEGER),\\n)\\n\\nTable pitstops (\\n pitstops.raceid (INTEGER),\\n pitstops.driverid (INTEGER),\\n pitstops.stop (INTEGER),\\n pitstops.lap (INTEGER),\\n pitstops.time (TEXT),\\n pitstops.duration (TEXT),\\n pitstops.milliseconds (INTEGER),\\n)\\n\\nTable qualifying (\\n qualifying.qualifyid (INTEGER),\\n qualifying.raceid (INTEGER),\\n qualifying.driverid (INTEGER),\\n qualifying.constructorid (INTEGER),\\n qualifying.number (INTEGER),\\n qualifying.position (INTEGER),\\n qualifying.q1 (TEXT),\\n qualifying.q2 (TEXT),\\n qualifying.q3 (TEXT),\\n)\\n\\nTable races (\\n races.raceid (INTEGER),\\n races.year (INTEGER),\\n races.round (INTEGER),\\n races.circuitid (INTEGER),\\n races.name (TEXT),\\n races.date (TEXT),\\n races.time (TEXT),\\n races.url (TEXT),\\n)\\n\\nTable results (\\n results.resultid (INTEGER),\\n results.raceid (INTEGER),\\n results.driverid (INTEGER),\\n results.constructorid (INTEGER),\\n results.number (INTEGER),\\n results.grid (INTEGER),\\n results.position (TEXT),\\n results.positiontext (TEXT),\\n results.positionorder (INTEGER),\\n results.points (REAL),\\n results.laps (TEXT),\\n results.time (TEXT),\\n results.milliseconds (TEXT),\\n results.fastestlap (TEXT),\\n results.rank (TEXT),\\n results.fastestlaptime (TEXT),\\n results.fastestlapspeed (TEXT),\\n results.statusid (INTEGER),\\n)\\n\\nTable seasons (\\n seasons.year (INTEGER),\\n seasons.url (TEXT),\\n)\\n\\nTable status (\\n status.statusid (INTEGER),\\n status.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nconstructorresults.raceid = races.raceid\\nconstructorresults.constructorid = constructors.constructorid\\n\\nconstructorstandings.raceid = races.raceid\\nconstructorstandings.constructorid = constructors.constructorid\\n\\ndriverstandings.raceid = races.raceid\\ndriverstandings.driverid = drivers.driverid\\n\\nlaptimes.raceid = races.raceid\\nlaptimes.driverid = drivers.driverid\\n\\npitstops.raceid = races.raceid\\npitstops.driverid = drivers.driverid\\n\\nqualifying.raceid = races.raceid\\nqualifying.driverid = drivers.driverid\\nqualifying.constructorid = constructors.constructorid\\n\\nraces.circuitid = circuits.circuitid\\n\\nresults.raceid = races.raceid\\nresults.driverid = drivers.driverid\\nresults.constructorid = constructors.constructorid\\n\",\n \"Table customers (\\n customers.customer_id (INTEGER),\\n customers.customer_name (VARCHAR(80)),\\n customers.customer_details (VARCHAR(255)),\\n)\\n\\nTable invoices (\\n invoices.invoice_number (INTEGER),\\n invoices.invoice_date (DATETIME),\\n invoices.invoice_details (VARCHAR(255)),\\n)\\n\\nTable order_items (\\n order_items.order_item_id (INTEGER),\\n order_items.product_id (INTEGER),\\n order_items.order_id (INTEGER),\\n order_items.order_item_status (VARCHAR(10)),\\n order_items.order_item_details (VARCHAR(255)),\\n)\\n\\nTable orders (\\n orders.order_id (INTEGER),\\n orders.customer_id (INTEGER),\\n orders.order_status (VARCHAR(10)),\\n orders.date_order_placed (DATETIME),\\n orders.order_details (VARCHAR(255)),\\n)\\n\\nTable products (\\n products.product_id (INTEGER),\\n products.product_name (VARCHAR(80)),\\n products.product_details (VARCHAR(255)),\\n)\\n\\nTable shipment_items (\\n shipment_items.shipment_id (INTEGER),\\n shipment_items.order_item_id (INTEGER),\\n)\\n\\nTable shipments (\\n shipments.shipment_id (INTEGER),\\n shipments.order_id (INTEGER),\\n shipments.invoice_number (INTEGER),\\n shipments.shipment_tracking_number (VARCHAR(80)),\\n shipments.shipment_date (DATETIME),\\n shipments.other_shipment_details (VARCHAR(255)),\\n)\\n\\n\\nPossible JOINs:\\n\\norder_items.product_id = products.product_id\\norder_items.order_id = orders.order_id\\n\\norders.customer_id = customers.customer_id\\n\\nshipment_items.shipment_id = shipments.shipment_id\\nshipment_items.order_item_id = order_items.order_item_id\\n\\nshipments.order_id = orders.order_id\\nshipments.invoice_number = invoices.invoice_number\\n\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema_llm_all_min_ct\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 147,\n \"samples\": [\n \"CREATE TABLE country (\\n country.country_id (INT),\\n country.name (TEXT),\\n country.population (INT),\\n country.area (INT),\\n country.languages (TEXT),\\n)\\n\\nCREATE TABLE roller_coaster (\\n roller_coaster.roller_coaster_id (INT),\\n roller_coaster.name (TEXT),\\n roller_coaster.park (TEXT),\\n roller_coaster.country_id (INT),\\n roller_coaster.length (REAL),\\n roller_coaster.height (REAL),\\n roller_coaster.speed (TEXT),\\n roller_coaster.opened (TEXT),\\n roller_coaster.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nroller_coaster.country_id = country.country_id\\n\",\n \"CREATE TABLE circuits (\\n circuits.circuitid (INTEGER),\\n circuits.circuitref (TEXT),\\n circuits.name (TEXT),\\n circuits.location (TEXT),\\n circuits.country (TEXT),\\n circuits.lat (REAL),\\n circuits.lng (REAL),\\n circuits.alt (TEXT),\\n circuits.url (TEXT),\\n)\\n\\nCREATE TABLE constructorresults (\\n constructorresults.constructorresultsid (INTEGER),\\n constructorresults.raceid (INTEGER),\\n constructorresults.constructorid (INTEGER),\\n constructorresults.points (REAL),\\n constructorresults.status (TEXT),\\n)\\n\\nCREATE TABLE constructorstandings (\\n constructorstandings.constructorstandingsid (INTEGER),\\n constructorstandings.raceid (INTEGER),\\n constructorstandings.constructorid (INTEGER),\\n constructorstandings.points (REAL),\\n constructorstandings.position (INTEGER),\\n constructorstandings.positiontext (TEXT),\\n constructorstandings.wins (INTEGER),\\n)\\n\\nCREATE TABLE constructors (\\n constructors.constructorid (INTEGER),\\n constructors.constructorref (TEXT),\\n constructors.name (TEXT),\\n constructors.nationality (TEXT),\\n constructors.url (TEXT),\\n)\\n\\nCREATE TABLE driverstandings (\\n driverstandings.driverstandingsid (INTEGER),\\n driverstandings.raceid (INTEGER),\\n driverstandings.driverid (INTEGER),\\n driverstandings.points (REAL),\\n driverstandings.position (INTEGER),\\n driverstandings.positiontext (TEXT),\\n driverstandings.wins (INTEGER),\\n)\\n\\nCREATE TABLE drivers (\\n drivers.driverid (INTEGER),\\n drivers.driverref (TEXT),\\n drivers.number (TEXT),\\n drivers.code (TEXT),\\n drivers.forename (TEXT),\\n drivers.surname (TEXT),\\n drivers.dob (TEXT),\\n drivers.nationality (TEXT),\\n drivers.url (TEXT),\\n)\\n\\nCREATE TABLE laptimes (\\n laptimes.raceid (INTEGER),\\n laptimes.driverid (INTEGER),\\n laptimes.lap (INTEGER),\\n laptimes.position (INTEGER),\\n laptimes.time (TEXT),\\n laptimes.milliseconds (INTEGER),\\n)\\n\\nCREATE TABLE pitstops (\\n pitstops.raceid (INTEGER),\\n pitstops.driverid (INTEGER),\\n pitstops.stop (INTEGER),\\n pitstops.lap (INTEGER),\\n pitstops.time (TEXT),\\n pitstops.duration (TEXT),\\n pitstops.milliseconds (INTEGER),\\n)\\n\\nCREATE TABLE qualifying (\\n qualifying.qualifyid (INTEGER),\\n qualifying.raceid (INTEGER),\\n qualifying.driverid (INTEGER),\\n qualifying.constructorid (INTEGER),\\n qualifying.number (INTEGER),\\n qualifying.position (INTEGER),\\n qualifying.q1 (TEXT),\\n qualifying.q2 (TEXT),\\n qualifying.q3 (TEXT),\\n)\\n\\nCREATE TABLE races (\\n races.raceid (INTEGER),\\n races.year (INTEGER),\\n races.round (INTEGER),\\n races.circuitid (INTEGER),\\n races.name (TEXT),\\n races.date (TEXT),\\n races.time (TEXT),\\n races.url (TEXT),\\n)\\n\\nCREATE TABLE results (\\n results.resultid (INTEGER),\\n results.raceid (INTEGER),\\n results.driverid (INTEGER),\\n results.constructorid (INTEGER),\\n results.number (INTEGER),\\n results.grid (INTEGER),\\n results.position (TEXT),\\n results.positiontext (TEXT),\\n results.positionorder (INTEGER),\\n results.points (REAL),\\n results.laps (TEXT),\\n results.time (TEXT),\\n results.milliseconds (TEXT),\\n results.fastestlap (TEXT),\\n results.rank (TEXT),\\n results.fastestlaptime (TEXT),\\n results.fastestlapspeed (TEXT),\\n results.statusid (INTEGER),\\n)\\n\\nCREATE TABLE seasons (\\n seasons.year (INTEGER),\\n seasons.url (TEXT),\\n)\\n\\nCREATE TABLE status (\\n status.statusid (INTEGER),\\n status.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nconstructorresults.raceid = races.raceid\\nconstructorresults.constructorid = constructors.constructorid\\n\\nconstructorstandings.raceid = races.raceid\\nconstructorstandings.constructorid = constructors.constructorid\\n\\ndriverstandings.raceid = races.raceid\\ndriverstandings.driverid = drivers.driverid\\n\\nlaptimes.raceid = races.raceid\\nlaptimes.driverid = drivers.driverid\\n\\npitstops.raceid = races.raceid\\npitstops.driverid = drivers.driverid\\n\\nqualifying.raceid = races.raceid\\nqualifying.driverid = drivers.driverid\\nqualifying.constructorid = constructors.constructorid\\n\\nraces.circuitid = circuits.circuitid\\n\\nresults.raceid = races.raceid\\nresults.driverid = drivers.driverid\\nresults.constructorid = constructors.constructorid\\n\",\n \"CREATE TABLE customers (\\n customers.customer_id (INTEGER),\\n customers.customer_name (VARCHAR(80)),\\n customers.customer_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE invoices (\\n invoices.invoice_number (INTEGER),\\n invoices.invoice_date (DATETIME),\\n invoices.invoice_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE order_items (\\n order_items.order_item_id (INTEGER),\\n order_items.product_id (INTEGER),\\n order_items.order_id (INTEGER),\\n order_items.order_item_status (VARCHAR(10)),\\n order_items.order_item_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE orders (\\n orders.order_id (INTEGER),\\n orders.customer_id (INTEGER),\\n orders.order_status (VARCHAR(10)),\\n orders.date_order_placed (DATETIME),\\n orders.order_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE products (\\n products.product_id (INTEGER),\\n products.product_name (VARCHAR(80)),\\n products.product_details (VARCHAR(255)),\\n)\\n\\nCREATE TABLE shipment_items (\\n shipment_items.shipment_id (INTEGER),\\n shipment_items.order_item_id (INTEGER),\\n)\\n\\nCREATE TABLE shipments (\\n shipments.shipment_id (INTEGER),\\n shipments.order_id (INTEGER),\\n shipments.invoice_number (INTEGER),\\n shipments.shipment_tracking_number (VARCHAR(80)),\\n shipments.shipment_date (DATETIME),\\n shipments.other_shipment_details (VARCHAR(255)),\\n)\\n\\n\\nPossible JOINs:\\n\\norder_items.product_id = products.product_id\\norder_items.order_id = orders.order_id\\n\\norders.customer_id = customers.customer_id\\n\\nshipment_items.shipment_id = shipments.shipment_id\\nshipment_items.order_item_id = order_items.order_item_id\\n\\nshipments.order_id = orders.order_id\\nshipments.invoice_number = invoices.invoice_number\\n\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema_dict\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 146,\n \"samples\": [\n \"{\\n 'company': ['Company_ID', 'Rank', 'Company', 'Headquarters', 'Main_Industry', 'Sales_billion', 'Profits_billion', 'Assets_billion', 'Market_Value'],\\n 'gas_station': ['Station_ID', 'Open_Year', 'Location', 'Manager_Name', 'Vice_Manager_Name', 'Representative_Name'],\\n 'station_company': ['Station_ID', 'Company_ID', 'Rank_of_the_Year']\\n}\",\n \"{\\n 'Premises': ['premise_id', 'premises_type', 'premise_details'],\\n 'Products': ['product_id', 'product_category', 'product_name'],\\n 'Customers': ['customer_id', 'payment_method', 'customer_name', 'customer_phone', 'customer_email', 'customer_address', 'customer_login', 'customer_password'],\\n 'Mailshot_Campaigns': ['mailshot_id', 'product_category', 'mailshot_name', 'mailshot_start_date', 'mailshot_end_date'],\\n 'Customer_Addresses': ['customer_id', 'premise_id', 'date_address_from', 'address_type_code', 'date_address_to'],\\n 'Customer_Orders': ['order_id', 'customer_id', 'order_status_code', 'shipping_method_code', 'order_placed_datetime', 'order_delivered_datetime', 'order_shipping_charges'],\\n 'Mailshot_Customers': ['mailshot_id', 'customer_id', 'outcome_code', 'mailshot_customer_date'],\\n 'Order_Items': ['item_id', 'order_item_status_code', 'order_id', 'product_id', 'item_status_code', 'item_delivered_datetime', 'item_order_quantity']\\n}\",\n \"{\\n 'member': ['Member_ID', 'Name', 'Nationality', 'Role'],\\n 'performance': ['Performance_ID', 'Date', 'Host', 'Location', 'Attendance'],\\n 'member_attendance': ['Member_ID', 'Performance_ID', 'Num_of_Pieces']\\n}\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"selector_correct\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 3373,\n \"samples\": [\n \"{\\n 'user': ['uid', 'user_id', 'name'],\\n 'review': ['rid', 'user_id', 'rating']\\n}\",\n \"{\\n 'Documents': ['document_id', 'document_status_code', 'document_type_code']\\n}\",\n \"{\\n 'state': ['state_name', 'population'],\\n 'highlow': ['state_name', 'highest_point']\\n}\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema_llm_t\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 147,\n \"samples\": [\n \"TABLE country (\\n country.Country_ID (INT),\\n country.Name (TEXT),\\n country.Population (INT),\\n country.Area (INT),\\n country.Languages (TEXT),\\n)\\n\\nTABLE roller_coaster (\\n roller_coaster.Roller_Coaster_ID (INT),\\n roller_coaster.Name (TEXT),\\n roller_coaster.Park (TEXT),\\n roller_coaster.Country_ID (INT),\\n roller_coaster.Length (REAL),\\n roller_coaster.Height (REAL),\\n roller_coaster.Speed (TEXT),\\n roller_coaster.Opened (TEXT),\\n roller_coaster.Status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nroller_coaster.Country_ID = country.Country_ID\\n\",\n \"TABLE circuits (\\n circuits.circuitId (INTEGER),\\n circuits.circuitRef (TEXT),\\n circuits.name (TEXT),\\n circuits.location (TEXT),\\n circuits.country (TEXT),\\n circuits.lat (REAL),\\n circuits.lng (REAL),\\n circuits.alt (TEXT),\\n circuits.url (TEXT),\\n)\\n\\nTABLE constructorResults (\\n constructorResults.constructorResultsId (INTEGER),\\n constructorResults.raceId (INTEGER),\\n constructorResults.constructorId (INTEGER),\\n constructorResults.points (REAL),\\n constructorResults.status (TEXT),\\n)\\n\\nTABLE constructorStandings (\\n constructorStandings.constructorStandingsId (INTEGER),\\n constructorStandings.raceId (INTEGER),\\n constructorStandings.constructorId (INTEGER),\\n constructorStandings.points (REAL),\\n constructorStandings.position (INTEGER),\\n constructorStandings.positionText (TEXT),\\n constructorStandings.wins (INTEGER),\\n)\\n\\nTABLE constructors (\\n constructors.constructorId (INTEGER),\\n constructors.constructorRef (TEXT),\\n constructors.name (TEXT),\\n constructors.nationality (TEXT),\\n constructors.url (TEXT),\\n)\\n\\nTABLE driverStandings (\\n driverStandings.driverStandingsId (INTEGER),\\n driverStandings.raceId (INTEGER),\\n driverStandings.driverId (INTEGER),\\n driverStandings.points (REAL),\\n driverStandings.position (INTEGER),\\n driverStandings.positionText (TEXT),\\n driverStandings.wins (INTEGER),\\n)\\n\\nTABLE drivers (\\n drivers.driverId (INTEGER),\\n drivers.driverRef (TEXT),\\n drivers.number (TEXT),\\n drivers.code (TEXT),\\n drivers.forename (TEXT),\\n drivers.surname (TEXT),\\n drivers.dob (TEXT),\\n drivers.nationality (TEXT),\\n drivers.url (TEXT),\\n)\\n\\nTABLE lapTimes (\\n lapTimes.raceId (INTEGER),\\n lapTimes.driverId (INTEGER),\\n lapTimes.lap (INTEGER),\\n lapTimes.position (INTEGER),\\n lapTimes.time (TEXT),\\n lapTimes.milliseconds (INTEGER),\\n)\\n\\nTABLE pitStops (\\n pitStops.raceId (INTEGER),\\n pitStops.driverId (INTEGER),\\n pitStops.stop (INTEGER),\\n pitStops.lap (INTEGER),\\n pitStops.time (TEXT),\\n pitStops.duration (TEXT),\\n pitStops.milliseconds (INTEGER),\\n)\\n\\nTABLE qualifying (\\n qualifying.qualifyId (INTEGER),\\n qualifying.raceId (INTEGER),\\n qualifying.driverId (INTEGER),\\n qualifying.constructorId (INTEGER),\\n qualifying.number (INTEGER),\\n qualifying.position (INTEGER),\\n qualifying.q1 (TEXT),\\n qualifying.q2 (TEXT),\\n qualifying.q3 (TEXT),\\n)\\n\\nTABLE races (\\n races.raceId (INTEGER),\\n races.year (INTEGER),\\n races.round (INTEGER),\\n races.circuitId (INTEGER),\\n races.name (TEXT),\\n races.date (TEXT),\\n races.time (TEXT),\\n races.url (TEXT),\\n)\\n\\nTABLE results (\\n results.resultId (INTEGER),\\n results.raceId (INTEGER),\\n results.driverId (INTEGER),\\n results.constructorId (INTEGER),\\n results.number (INTEGER),\\n results.grid (INTEGER),\\n results.position (TEXT),\\n results.positionText (TEXT),\\n results.positionOrder (INTEGER),\\n results.points (REAL),\\n results.laps (TEXT),\\n results.time (TEXT),\\n results.milliseconds (TEXT),\\n results.fastestLap (TEXT),\\n results.rank (TEXT),\\n results.fastestLapTime (TEXT),\\n results.fastestLapSpeed (TEXT),\\n results.statusId (INTEGER),\\n)\\n\\nTABLE seasons (\\n seasons.year (INTEGER),\\n seasons.url (TEXT),\\n)\\n\\nTABLE status (\\n status.statusId (INTEGER),\\n status.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nconstructorResults.raceId = races.raceId\\nconstructorResults.constructorId = constructors.constructorId\\n\\nconstructorStandings.raceId = races.raceId\\nconstructorStandings.constructorId = constructors.constructorId\\n\\ndriverStandings.raceId = races.raceId\\ndriverStandings.driverId = drivers.driverId\\n\\nlapTimes.raceId = races.raceId\\nlapTimes.driverId = drivers.driverId\\n\\npitStops.raceId = races.raceId\\npitStops.driverId = drivers.driverId\\n\\nqualifying.raceId = races.raceId\\nqualifying.driverId = drivers.driverId\\nqualifying.constructorId = constructors.constructorId\\n\\nraces.circuitId = circuits.circuitId\\n\\nresults.raceId = races.raceId\\nresults.driverId = drivers.driverId\\nresults.constructorId = constructors.constructorId\\n\",\n \"TABLE Customers (\\n Customers.customer_id (INTEGER),\\n Customers.customer_name (VARCHAR(80)),\\n Customers.customer_details (VARCHAR(255)),\\n)\\n\\nTABLE Invoices (\\n Invoices.invoice_number (INTEGER),\\n Invoices.invoice_date (DATETIME),\\n Invoices.invoice_details (VARCHAR(255)),\\n)\\n\\nTABLE Order_Items (\\n Order_Items.order_item_id (INTEGER),\\n Order_Items.product_id (INTEGER),\\n Order_Items.order_id (INTEGER),\\n Order_Items.order_item_status (VARCHAR(10)),\\n Order_Items.order_item_details (VARCHAR(255)),\\n)\\n\\nTABLE Orders (\\n Orders.order_id (INTEGER),\\n Orders.customer_id (INTEGER),\\n Orders.order_status (VARCHAR(10)),\\n Orders.date_order_placed (DATETIME),\\n Orders.order_details (VARCHAR(255)),\\n)\\n\\nTABLE Products (\\n Products.product_id (INTEGER),\\n Products.product_name (VARCHAR(80)),\\n Products.product_details (VARCHAR(255)),\\n)\\n\\nTABLE Shipment_Items (\\n Shipment_Items.shipment_id (INTEGER),\\n Shipment_Items.order_item_id (INTEGER),\\n)\\n\\nTABLE Shipments (\\n Shipments.shipment_id (INTEGER),\\n Shipments.order_id (INTEGER),\\n Shipments.invoice_number (INTEGER),\\n Shipments.shipment_tracking_number (VARCHAR(80)),\\n Shipments.shipment_date (DATETIME),\\n Shipments.other_shipment_details (VARCHAR(255)),\\n)\\n\\n\\nPossible JOINs:\\n\\nOrder_Items.product_id = Products.product_id\\nOrder_Items.order_id = Orders.order_id\\n\\nOrders.customer_id = Customers.customer_id\\n\\nShipment_Items.shipment_id = Shipments.shipment_id\\nShipment_Items.order_item_id = Order_Items.order_item_id\\n\\nShipments.order_id = Orders.order_id\\nShipments.invoice_number = Invoices.invoice_number\\n\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema_llm_columns_min_t\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 147,\n \"samples\": [\n \"TABLE country (\\n country.country_id (INT),\\n country.name (TEXT),\\n country.population (INT),\\n country.area (INT),\\n country.languages (TEXT),\\n)\\n\\nTABLE roller_coaster (\\n roller_coaster.roller_coaster_id (INT),\\n roller_coaster.name (TEXT),\\n roller_coaster.park (TEXT),\\n roller_coaster.country_id (INT),\\n roller_coaster.length (REAL),\\n roller_coaster.height (REAL),\\n roller_coaster.speed (TEXT),\\n roller_coaster.opened (TEXT),\\n roller_coaster.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nroller_coaster.country_id = country.country_id\\n\",\n \"TABLE circuits (\\n circuits.circuitid (INTEGER),\\n circuits.circuitref (TEXT),\\n circuits.name (TEXT),\\n circuits.location (TEXT),\\n circuits.country (TEXT),\\n circuits.lat (REAL),\\n circuits.lng (REAL),\\n circuits.alt (TEXT),\\n circuits.url (TEXT),\\n)\\n\\nTABLE constructorResults (\\n constructorResults.constructorresultsid (INTEGER),\\n constructorResults.raceid (INTEGER),\\n constructorResults.constructorid (INTEGER),\\n constructorResults.points (REAL),\\n constructorResults.status (TEXT),\\n)\\n\\nTABLE constructorStandings (\\n constructorStandings.constructorstandingsid (INTEGER),\\n constructorStandings.raceid (INTEGER),\\n constructorStandings.constructorid (INTEGER),\\n constructorStandings.points (REAL),\\n constructorStandings.position (INTEGER),\\n constructorStandings.positiontext (TEXT),\\n constructorStandings.wins (INTEGER),\\n)\\n\\nTABLE constructors (\\n constructors.constructorid (INTEGER),\\n constructors.constructorref (TEXT),\\n constructors.name (TEXT),\\n constructors.nationality (TEXT),\\n constructors.url (TEXT),\\n)\\n\\nTABLE driverStandings (\\n driverStandings.driverstandingsid (INTEGER),\\n driverStandings.raceid (INTEGER),\\n driverStandings.driverid (INTEGER),\\n driverStandings.points (REAL),\\n driverStandings.position (INTEGER),\\n driverStandings.positiontext (TEXT),\\n driverStandings.wins (INTEGER),\\n)\\n\\nTABLE drivers (\\n drivers.driverid (INTEGER),\\n drivers.driverref (TEXT),\\n drivers.number (TEXT),\\n drivers.code (TEXT),\\n drivers.forename (TEXT),\\n drivers.surname (TEXT),\\n drivers.dob (TEXT),\\n drivers.nationality (TEXT),\\n drivers.url (TEXT),\\n)\\n\\nTABLE lapTimes (\\n lapTimes.raceid (INTEGER),\\n lapTimes.driverid (INTEGER),\\n lapTimes.lap (INTEGER),\\n lapTimes.position (INTEGER),\\n lapTimes.time (TEXT),\\n lapTimes.milliseconds (INTEGER),\\n)\\n\\nTABLE pitStops (\\n pitStops.raceid (INTEGER),\\n pitStops.driverid (INTEGER),\\n pitStops.stop (INTEGER),\\n pitStops.lap (INTEGER),\\n pitStops.time (TEXT),\\n pitStops.duration (TEXT),\\n pitStops.milliseconds (INTEGER),\\n)\\n\\nTABLE qualifying (\\n qualifying.qualifyid (INTEGER),\\n qualifying.raceid (INTEGER),\\n qualifying.driverid (INTEGER),\\n qualifying.constructorid (INTEGER),\\n qualifying.number (INTEGER),\\n qualifying.position (INTEGER),\\n qualifying.q1 (TEXT),\\n qualifying.q2 (TEXT),\\n qualifying.q3 (TEXT),\\n)\\n\\nTABLE races (\\n races.raceid (INTEGER),\\n races.year (INTEGER),\\n races.round (INTEGER),\\n races.circuitid (INTEGER),\\n races.name (TEXT),\\n races.date (TEXT),\\n races.time (TEXT),\\n races.url (TEXT),\\n)\\n\\nTABLE results (\\n results.resultid (INTEGER),\\n results.raceid (INTEGER),\\n results.driverid (INTEGER),\\n results.constructorid (INTEGER),\\n results.number (INTEGER),\\n results.grid (INTEGER),\\n results.position (TEXT),\\n results.positiontext (TEXT),\\n results.positionorder (INTEGER),\\n results.points (REAL),\\n results.laps (TEXT),\\n results.time (TEXT),\\n results.milliseconds (TEXT),\\n results.fastestlap (TEXT),\\n results.rank (TEXT),\\n results.fastestlaptime (TEXT),\\n results.fastestlapspeed (TEXT),\\n results.statusid (INTEGER),\\n)\\n\\nTABLE seasons (\\n seasons.year (INTEGER),\\n seasons.url (TEXT),\\n)\\n\\nTABLE status (\\n status.statusid (INTEGER),\\n status.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nconstructorResults.raceid = races.raceid\\nconstructorResults.constructorid = constructors.constructorid\\n\\nconstructorStandings.raceid = races.raceid\\nconstructorStandings.constructorid = constructors.constructorid\\n\\ndriverStandings.raceid = races.raceid\\ndriverStandings.driverid = drivers.driverid\\n\\nlapTimes.raceid = races.raceid\\nlapTimes.driverid = drivers.driverid\\n\\npitStops.raceid = races.raceid\\npitStops.driverid = drivers.driverid\\n\\nqualifying.raceid = races.raceid\\nqualifying.driverid = drivers.driverid\\nqualifying.constructorid = constructors.constructorid\\n\\nraces.circuitid = circuits.circuitid\\n\\nresults.raceid = races.raceid\\nresults.driverid = drivers.driverid\\nresults.constructorid = constructors.constructorid\\n\",\n \"TABLE Customers (\\n Customers.customer_id (INTEGER),\\n Customers.customer_name (VARCHAR(80)),\\n Customers.customer_details (VARCHAR(255)),\\n)\\n\\nTABLE Invoices (\\n Invoices.invoice_number (INTEGER),\\n Invoices.invoice_date (DATETIME),\\n Invoices.invoice_details (VARCHAR(255)),\\n)\\n\\nTABLE Order_Items (\\n Order_Items.order_item_id (INTEGER),\\n Order_Items.product_id (INTEGER),\\n Order_Items.order_id (INTEGER),\\n Order_Items.order_item_status (VARCHAR(10)),\\n Order_Items.order_item_details (VARCHAR(255)),\\n)\\n\\nTABLE Orders (\\n Orders.order_id (INTEGER),\\n Orders.customer_id (INTEGER),\\n Orders.order_status (VARCHAR(10)),\\n Orders.date_order_placed (DATETIME),\\n Orders.order_details (VARCHAR(255)),\\n)\\n\\nTABLE Products (\\n Products.product_id (INTEGER),\\n Products.product_name (VARCHAR(80)),\\n Products.product_details (VARCHAR(255)),\\n)\\n\\nTABLE Shipment_Items (\\n Shipment_Items.shipment_id (INTEGER),\\n Shipment_Items.order_item_id (INTEGER),\\n)\\n\\nTABLE Shipments (\\n Shipments.shipment_id (INTEGER),\\n Shipments.order_id (INTEGER),\\n Shipments.invoice_number (INTEGER),\\n Shipments.shipment_tracking_number (VARCHAR(80)),\\n Shipments.shipment_date (DATETIME),\\n Shipments.other_shipment_details (VARCHAR(255)),\\n)\\n\\n\\nPossible JOINs:\\n\\nOrder_Items.product_id = Products.product_id\\nOrder_Items.order_id = Orders.order_id\\n\\nOrders.customer_id = Customers.customer_id\\n\\nShipment_Items.shipment_id = Shipments.shipment_id\\nShipment_Items.order_item_id = Order_Items.order_item_id\\n\\nShipments.order_id = Orders.order_id\\nShipments.invoice_number = Invoices.invoice_number\\n\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"schema_llm_all_min_t\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 147,\n \"samples\": [\n \"TABLE country (\\n country.country_id (INT),\\n country.name (TEXT),\\n country.population (INT),\\n country.area (INT),\\n country.languages (TEXT),\\n)\\n\\nTABLE roller_coaster (\\n roller_coaster.roller_coaster_id (INT),\\n roller_coaster.name (TEXT),\\n roller_coaster.park (TEXT),\\n roller_coaster.country_id (INT),\\n roller_coaster.length (REAL),\\n roller_coaster.height (REAL),\\n roller_coaster.speed (TEXT),\\n roller_coaster.opened (TEXT),\\n roller_coaster.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nroller_coaster.country_id = country.country_id\\n\",\n \"TABLE circuits (\\n circuits.circuitid (INTEGER),\\n circuits.circuitref (TEXT),\\n circuits.name (TEXT),\\n circuits.location (TEXT),\\n circuits.country (TEXT),\\n circuits.lat (REAL),\\n circuits.lng (REAL),\\n circuits.alt (TEXT),\\n circuits.url (TEXT),\\n)\\n\\nTABLE constructorresults (\\n constructorresults.constructorresultsid (INTEGER),\\n constructorresults.raceid (INTEGER),\\n constructorresults.constructorid (INTEGER),\\n constructorresults.points (REAL),\\n constructorresults.status (TEXT),\\n)\\n\\nTABLE constructorstandings (\\n constructorstandings.constructorstandingsid (INTEGER),\\n constructorstandings.raceid (INTEGER),\\n constructorstandings.constructorid (INTEGER),\\n constructorstandings.points (REAL),\\n constructorstandings.position (INTEGER),\\n constructorstandings.positiontext (TEXT),\\n constructorstandings.wins (INTEGER),\\n)\\n\\nTABLE constructors (\\n constructors.constructorid (INTEGER),\\n constructors.constructorref (TEXT),\\n constructors.name (TEXT),\\n constructors.nationality (TEXT),\\n constructors.url (TEXT),\\n)\\n\\nTABLE driverstandings (\\n driverstandings.driverstandingsid (INTEGER),\\n driverstandings.raceid (INTEGER),\\n driverstandings.driverid (INTEGER),\\n driverstandings.points (REAL),\\n driverstandings.position (INTEGER),\\n driverstandings.positiontext (TEXT),\\n driverstandings.wins (INTEGER),\\n)\\n\\nTABLE drivers (\\n drivers.driverid (INTEGER),\\n drivers.driverref (TEXT),\\n drivers.number (TEXT),\\n drivers.code (TEXT),\\n drivers.forename (TEXT),\\n drivers.surname (TEXT),\\n drivers.dob (TEXT),\\n drivers.nationality (TEXT),\\n drivers.url (TEXT),\\n)\\n\\nTABLE laptimes (\\n laptimes.raceid (INTEGER),\\n laptimes.driverid (INTEGER),\\n laptimes.lap (INTEGER),\\n laptimes.position (INTEGER),\\n laptimes.time (TEXT),\\n laptimes.milliseconds (INTEGER),\\n)\\n\\nTABLE pitstops (\\n pitstops.raceid (INTEGER),\\n pitstops.driverid (INTEGER),\\n pitstops.stop (INTEGER),\\n pitstops.lap (INTEGER),\\n pitstops.time (TEXT),\\n pitstops.duration (TEXT),\\n pitstops.milliseconds (INTEGER),\\n)\\n\\nTABLE qualifying (\\n qualifying.qualifyid (INTEGER),\\n qualifying.raceid (INTEGER),\\n qualifying.driverid (INTEGER),\\n qualifying.constructorid (INTEGER),\\n qualifying.number (INTEGER),\\n qualifying.position (INTEGER),\\n qualifying.q1 (TEXT),\\n qualifying.q2 (TEXT),\\n qualifying.q3 (TEXT),\\n)\\n\\nTABLE races (\\n races.raceid (INTEGER),\\n races.year (INTEGER),\\n races.round (INTEGER),\\n races.circuitid (INTEGER),\\n races.name (TEXT),\\n races.date (TEXT),\\n races.time (TEXT),\\n races.url (TEXT),\\n)\\n\\nTABLE results (\\n results.resultid (INTEGER),\\n results.raceid (INTEGER),\\n results.driverid (INTEGER),\\n results.constructorid (INTEGER),\\n results.number (INTEGER),\\n results.grid (INTEGER),\\n results.position (TEXT),\\n results.positiontext (TEXT),\\n results.positionorder (INTEGER),\\n results.points (REAL),\\n results.laps (TEXT),\\n results.time (TEXT),\\n results.milliseconds (TEXT),\\n results.fastestlap (TEXT),\\n results.rank (TEXT),\\n results.fastestlaptime (TEXT),\\n results.fastestlapspeed (TEXT),\\n results.statusid (INTEGER),\\n)\\n\\nTABLE seasons (\\n seasons.year (INTEGER),\\n seasons.url (TEXT),\\n)\\n\\nTABLE status (\\n status.statusid (INTEGER),\\n status.status (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nconstructorresults.raceid = races.raceid\\nconstructorresults.constructorid = constructors.constructorid\\n\\nconstructorstandings.raceid = races.raceid\\nconstructorstandings.constructorid = constructors.constructorid\\n\\ndriverstandings.raceid = races.raceid\\ndriverstandings.driverid = drivers.driverid\\n\\nlaptimes.raceid = races.raceid\\nlaptimes.driverid = drivers.driverid\\n\\npitstops.raceid = races.raceid\\npitstops.driverid = drivers.driverid\\n\\nqualifying.raceid = races.raceid\\nqualifying.driverid = drivers.driverid\\nqualifying.constructorid = constructors.constructorid\\n\\nraces.circuitid = circuits.circuitid\\n\\nresults.raceid = races.raceid\\nresults.driverid = drivers.driverid\\nresults.constructorid = constructors.constructorid\\n\",\n \"TABLE customers (\\n customers.customer_id (INTEGER),\\n customers.customer_name (VARCHAR(80)),\\n customers.customer_details (VARCHAR(255)),\\n)\\n\\nTABLE invoices (\\n invoices.invoice_number (INTEGER),\\n invoices.invoice_date (DATETIME),\\n invoices.invoice_details (VARCHAR(255)),\\n)\\n\\nTABLE order_items (\\n order_items.order_item_id (INTEGER),\\n order_items.product_id (INTEGER),\\n order_items.order_id (INTEGER),\\n order_items.order_item_status (VARCHAR(10)),\\n order_items.order_item_details (VARCHAR(255)),\\n)\\n\\nTABLE orders (\\n orders.order_id (INTEGER),\\n orders.customer_id (INTEGER),\\n orders.order_status (VARCHAR(10)),\\n orders.date_order_placed (DATETIME),\\n orders.order_details (VARCHAR(255)),\\n)\\n\\nTABLE products (\\n products.product_id (INTEGER),\\n products.product_name (VARCHAR(80)),\\n products.product_details (VARCHAR(255)),\\n)\\n\\nTABLE shipment_items (\\n shipment_items.shipment_id (INTEGER),\\n shipment_items.order_item_id (INTEGER),\\n)\\n\\nTABLE shipments (\\n shipments.shipment_id (INTEGER),\\n shipments.order_id (INTEGER),\\n shipments.invoice_number (INTEGER),\\n shipments.shipment_tracking_number (VARCHAR(80)),\\n shipments.shipment_date (DATETIME),\\n shipments.other_shipment_details (VARCHAR(255)),\\n)\\n\\n\\nPossible JOINs:\\n\\norder_items.product_id = products.product_id\\norder_items.order_id = orders.order_id\\n\\norders.customer_id = customers.customer_id\\n\\nshipment_items.shipment_id = shipments.shipment_id\\nshipment_items.order_item_id = order_items.order_item_id\\n\\nshipments.order_id = orders.order_id\\nshipments.invoice_number = invoices.invoice_number\\n\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"text\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 8647,\n \"samples\": [\n \"<|begin_of_text|><|start_header_id|>system<|end_header_id|>\\n\\nCutting Knowledge Date: December 2023\\nToday Date: 06 Oct 2024\\n\\n<|eot_id|><|start_header_id|>user<|end_header_id|>\\n\\n# System:\\nGiven a user question and the schema of a database, your task is to generate an JSON with the the names of tables and columns of the schema that the question is referring to.\\n\\n# Schema:\\n```sql\\nTABLE event (\\n event.ID (INT),\\n event.Name (TEXT),\\n event.Stadium_ID (INT),\\n event.Year (TEXT),\\n)\\n\\nTABLE record (\\n record.ID (INT),\\n record.Result (TEXT),\\n record.Swimmer_ID (INT),\\n record.Event_ID (INT),\\n)\\n\\nTABLE stadium (\\n stadium.ID (INT),\\n stadium.name (TEXT),\\n stadium.Capacity (INT),\\n stadium.City (TEXT),\\n stadium.Country (TEXT),\\n stadium.Opening_year (INT),\\n)\\n\\nTABLE swimmer (\\n swimmer.ID (INT),\\n swimmer.name (TEXT),\\n swimmer.Nationality (TEXT),\\n swimmer.meter_100 (REAL),\\n swimmer.meter_200 (TEXT),\\n swimmer.meter_300 (TEXT),\\n swimmer.meter_400 (TEXT),\\n swimmer.meter_500 (TEXT),\\n swimmer.meter_600 (TEXT),\\n swimmer.meter_700 (TEXT),\\n swimmer.Time (TEXT),\\n)\\n\\n\\nPossible JOINs:\\n\\nevent.Stadium_ID = stadium.ID\\n\\nrecord.Swimmer_ID = swimmer.ID\\nrecord.Event_ID = event.ID\\n\\n```\\n\\n# Question: Which countries do not have a stadium that was opened after 2006?<|eot_id|><|start_header_id|>assistant<|end_header_id|>\\n\\n```json\\n{ 'stadium': ['ID', 'Country', 'Opening_year'] }\\n```<|eot_id|>\",\n \"<|begin_of_text|><|start_header_id|>system<|end_header_id|>\\n\\nCutting Knowledge Date: December 2023\\nToday Date: 06 Oct 2024\\n\\n<|eot_id|><|start_header_id|>user<|end_header_id|>\\n\\n# System:\\nGiven a user question and the schema of a database, your task is to generate an JSON with the the names of tables and columns of the schema that the question is referring to.\\n\\n# Schema:\\n```sql\\nTABLE film (\\n film.Film_ID (INT),\\n film.Title (TEXT),\\n film.Studio (TEXT),\\n film.Director (TEXT),\\n film.Gross_in_dollar (INT),\\n)\\n\\nTABLE film_market_estimation (\\n film_market_estimation.Estimation_ID (INT),\\n film_market_estimation.Low_Estimate (REAL),\\n film_market_estimation.High_Estimate (REAL),\\n film_market_estimation.Film_ID (INT),\\n film_market_estimation.Type (TEXT),\\n film_market_estimation.Market_ID (INT),\\n film_market_estimation.Year (INT),\\n)\\n\\nTABLE market (\\n market.Market_ID (INT),\\n market.Country (TEXT),\\n market.Number_cities (INT),\\n)\\n\\n\\nPossible JOINs:\\n\\nfilm_market_estimation.Film_ID = film.Film_ID\\nfilm_market_estimation.Market_ID = market.Market_ID\\n\\n```\\n\\n# Question: How many film are there?<|eot_id|><|start_header_id|>assistant<|end_header_id|>\\n\\n```json\\n{ 'film': ['Film_ID'] }\\n```<|eot_id|>\",\n \"<|begin_of_text|><|start_header_id|>system<|end_header_id|>\\n\\nCutting Knowledge Date: December 2023\\nToday Date: 06 Oct 2024\\n\\n<|eot_id|><|start_header_id|>user<|end_header_id|>\\n\\n# System:\\nGiven a user question and the schema of a database, your task is to generate an JSON with the the names of tables and columns of the schema that the question is referring to.\\n\\n# Schema:\\n```sql\\nTABLE book (\\n book.Book_ID (INT),\\n book.Title (TEXT),\\n book.Issues (REAL),\\n book.Writer (TEXT),\\n)\\n\\nTABLE publication (\\n publication.Publication_ID (INT),\\n publication.Book_ID (INT),\\n publication.Publisher (TEXT),\\n publication.Publication_Date (TEXT),\\n publication.Price (REAL),\\n)\\n\\n\\nPossible JOINs:\\n\\npublication.Book_ID = book.Book_ID\\n\\n```\\n\\n# Question: Show the title and publication dates of books.<|eot_id|><|start_header_id|>assistant<|end_header_id|>\\n\\n```json\\n{ 'book': ['Book_ID', 'Title'],\\n 'publication': ['Publication_ID', 'Book_ID', 'Publication_Date'] }\\n```<|eot_id|>\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}" } }, "metadata": {}, "execution_count": 14 } ] }, { "cell_type": "code", "source": [ "# df['n_tokens'] = df['text'].apply(lambda x: len(tokenizer.encode(x)))" ], "metadata": { "id": "-8OByl30hBp7" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "# import seaborn as sns\n", "# sns.histplot(df['n_tokens'])" ], "metadata": { "id": "kFMVR-l6hRmx" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "TxrNQ8OGvToc", "colab": { "base_uri": "https://localhost:8080/" }, "outputId": "6ba5348c-6d3f-46ff-eed1-2eed5563f39d" }, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "<|begin_of_text|><|start_header_id|>system<|end_header_id|>\n", "\n", "Cutting Knowledge Date: December 2023\n", "Today Date: 06 Oct 2024\n", "\n", "<|eot_id|><|start_header_id|>user<|end_header_id|>\n", "\n", "# System:\n", "Given a user question and the schema of a database, your task is to generate an JSON with the the names of tables and columns of the schema that the question is referring to.\n", "\n", "# Schema:\n", "```sql\n", "TABLE city (\n", " city.City_ID (INT),\n", " city.Official_Name (TEXT),\n", " city.Status (TEXT),\n", " city.Area_km_2 (REAL),\n", " city.Population (REAL),\n", " city.Census_Ranking (TEXT),\n", ")\n", "\n", "TABLE competition_record (\n", " competition_record.Competition_ID (INT),\n", " competition_record.Farm_ID (INT),\n", " competition_record.Rank (INT),\n", ")\n", "\n", "TABLE farm (\n", " farm.Farm_ID (INT),\n", " farm.Year (INT),\n", " farm.Total_Horses (REAL),\n", " farm.Working_Horses (REAL),\n", " farm.Total_Cattle (REAL),\n", " farm.Oxen (REAL),\n", " farm.Bulls (REAL),\n", " farm.Cows (REAL),\n", " farm.Pigs (REAL),\n", " farm.Sheep_and_Goats (REAL),\n", ")\n", "\n", "TABLE farm_competition (\n", " farm_competition.Competition_ID (INT),\n", " farm_competition.Year (INT),\n", " farm_competition.Theme (TEXT),\n", " farm_competition.Host_city_ID (INT),\n", " farm_competition.Hosts (TEXT),\n", ")\n", "\n", "\n", "Possible JOINs:\n", "\n", "competition_record.Competition_ID = farm_competition.Competition_ID\n", "competition_record.Farm_ID = farm.Farm_ID\n", "\n", "farm_competition.Host_city_ID = city.City_ID\n", "\n", "```\n", "\n", "# Question: Show the status shared by cities with population bigger than 1500 and smaller than 500.<|eot_id|><|start_header_id|>assistant<|end_header_id|>\n", "\n", "```json\n", "{ 'city': ['City_ID', 'Status', 'Population'] }\n", "```<|eot_id|>\n" ] } ], "source": [ "print(df['text'][df.index[50]])" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "jgNv1q3IA4J2" }, "outputs": [], "source": [ "_df = pd.DataFrame(columns=['text'])\n", "_df['text'] = df.sample(frac=1, random_state=14).reset_index(drop=True)['text']\n", "_df = Dataset.from_pandas(_df)\n", "_df = _df.train_test_split(test_size=0.01, shuffle=True, seed=14)\n", "train_dataset, valid_dataset = _df[\"train\"], _df[\"test\"]" ] }, { "cell_type": "code", "source": [ "# dataset = Dataset.from_pandas(df)\n", "\n", "# dataset_filtrado_tokens = dataset_easy_and_medium.filter(lambda example: len(tokenizer.tokenize(example['text'])) < 2048)\n", "# dataset_filtrado_tokens\n", "\n", "# train_dataset = dataset_filtrado_tokens.train_test_split(test_size=0.01, shuffle=False, seed=42)[\"train\"]\n", "# valid_dataset = dataset_filtrado_tokens.train_test_split(test_size=0.01, shuffle=False, seed=42)[\"test\"]" ], "metadata": { "id": "h_ntoKppKjZ7" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "_I7-bFfm5gqS" }, "source": [ "#### Chat Template - Gerar SQL" ] }, { "cell_type": "code", "source": [ "# tokenizer.chat_template = \"\"\"\n", "# {% if messages[0]['role'] == 'system' %}\n", "# {% set loop_messages = messages[1:] %}\n", "# {% set system_message = messages[0]['content'] %}\n", "# {% else %}\n", "# {% set loop_messages = messages %}\n", "# {% set system_message = 'Given a user question and the schema of a database, your task is to generate an SQL query that accurately answers the question based on the provided schema.' %}\n", "# {% endif %}\n", "# {{ '# <|system|>/n/' + system_message + '/n//n/' }}\n", "# {% if messages|selectattr(\"role\", \"equalto\", \"example\")|list %}\n", "# Below are some examples of question and their corresponding SQL queries:/n//n/\n", "# {% else %}\n", "# /n/\n", "# {% endif %}\n", "# {% for message in loop_messages %}\n", "# {% if message['role'] == 'example' %}\n", "# {{ message['content'] }}/n//n/\n", "# {% elif message['role'] == 'schema' %}\n", "# # <|schema|>/n/The query will run on a database with the following schema:/n/{{ message['content'] }}/n//n/\n", "# {% elif message['role'] == 'user' %}\n", "# # <|user|>/n/[QUESTION]{{ message['content'] }}[/QUESTION]/n//n/\n", "# {% elif message['role'] == 'assistant' %}\n", "# # <|assistant|>/n/[SQL]{{ message['content'] }}[/SQL]\n", "# {% endif %}\n", "# {% endfor %}\n", "# {% if add_generation_prompt %}\n", "# # <|assistant|>/n/[SQL]\n", "# {% endif %}\n", "# \"\"\".replace(\"\\n\",\"\").replace(\" \", \"\").replace(\"/n/\", \"\\n\")" ], "metadata": { "id": "cYVA3Q7ZCzHi" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "execution_count": 20, "metadata": { "id": "6RDDdVgP5gqT" }, "outputs": [], "source": [ "def to_sql(query):\n", " return sqlparse.format(replace_alias_with_table(query), reindent=False, keyword_case='upper')\n", "\n", "def apply_template(row, tokenizer=tokenizer, n_examplea=0):\n", " question = row['question_en']\n", " schema = row['schema_SQLDatabase']\n", " sql = to_sql(row['query'])\n", "\n", " system = \"Given a user question and the schema of a database, your task is to generate an SQL query that accurately answers the question based on the provided schema.\"\n", "\n", " chat = [\n", " {'role': 'system', 'content': system},\n", " {'role': 'user', 'content': f\"# Schema:\\n```sql\\n{schema}\\n```\\n\\n# Question: {question}\"},\n", " {'role': 'assistant', 'content': f\"```sql\\n{sql}\\n```\\n\"}\n", " ]\n", "\n", " # chat = [\n", " # {\"role\": \"schema\", \"content\": schema},\n", " # {\"role\": \"user\", \"content\": question},\n", " # {\"role\": \"assistant\", \"content\": sql},\n", " # ]\n", "\n", " row['text'] = tokenizer.apply_chat_template(chat, tokenize=False, add_generation_prompt=False)\n", "\n", " return row" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "2trHEegL5gqU" }, "outputs": [], "source": [ "# spider_chain = json.load(open(\"/content/drive/Shareddrives/LLMs/Datasets/spider/spider_chain_of_thought.json\", \"r\"))\n", "# bird_chain = json.load(open(\"/content/drive/Shareddrives/LLMs/Datasets/bird/bird_chain_of_thought.json\", \"r\"))" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "N4jWrC7s5gqU" }, "outputs": [], "source": [ "# df['CoT'] = spider_chain + bird_chain" ] }, { "cell_type": "code", "execution_count": 21, "metadata": { "id": "bTF0pBsw5gqU" }, "outputs": [], "source": [ "df = df.apply(apply_template, axis=1)" ] }, { "cell_type": "code", "source": [ "pd.set_option('display.max_colwidth', None) #definir a opção para mostrar todo o conteúdo das células\n", "pd.set_option('display.max_rows', None) #definir a opção para mostrar todas as linhas" ], "metadata": { "id": "H5azRSqHPoXp" }, "execution_count": 24, "outputs": [] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "L4tjUv7o5gqV" }, "outputs": [], "source": [ "df.head()" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "DfJvLaGR5gqV" }, "outputs": [], "source": [ "# df['n_tokens'] = df['text'].apply(lambda x: len(tokenizer.encode(x)))" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "vJseOHIu5gqW" }, "outputs": [], "source": [ "# import seaborn as sns\n", "# sns.histplot(df['n_tokens'])" ] }, { "cell_type": "code", "execution_count": 23, "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "outputId": "6f359441-84ad-4651-fda8-6d6f8dc1a36b", "id": "PIvSnr6Y5gqW" }, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "<|begin_of_text|><|start_header_id|>system<|end_header_id|>\n", "\n", "Cutting Knowledge Date: December 2023\n", "Today Date: 07 Nov 2024\n", "\n", "Given a user question and the schema of a database, your task is to generate an SQL query that accurately answers the question based on the provided schema.<|eot_id|><|start_header_id|>user<|end_header_id|>\n", "\n", "# Schema:\n", "```sql\n", "CREATE TABLE Addresses (\n", " address_id INTEGER,\n", " line_1 VARCHAR(80),\n", " line_2 VARCHAR(80),\n", " city VARCHAR(50),\n", " zip_postcode CHAR(20),\n", " state_province_county VARCHAR(50),\n", " country VARCHAR(50),\n", " PRIMARY KEY (address_id)\n", ");\n", "\n", "CREATE TABLE People (\n", " person_id INTEGER,\n", " first_name VARCHAR(255),\n", " middle_name VARCHAR(255),\n", " last_name VARCHAR(255),\n", " cell_mobile_number VARCHAR(40),\n", " email_address VARCHAR(40),\n", " login_name VARCHAR(40),\n", " password VARCHAR(40),\n", " PRIMARY KEY (person_id)\n", ");\n", "\n", "CREATE TABLE Students (\n", " student_id INTEGER,\n", " student_details VARCHAR(255),\n", " PRIMARY KEY (student_id),\n", " FOREIGN KEY (student_id) REFERENCES people(person_id)\n", ");\n", "\n", "CREATE TABLE Courses (\n", " course_id VARCHAR(100),\n", " course_name VARCHAR(120),\n", " course_description VARCHAR(255),\n", " other_details VARCHAR(255),\n", " PRIMARY KEY (course_id)\n", ");\n", "\n", "CREATE TABLE People_Addresses (\n", " person_address_id INTEGER,\n", " person_id INTEGER,\n", " address_id INTEGER,\n", " date_from DATETIME,\n", " date_to DATETIME,\n", " PRIMARY KEY (person_address_id),\n", " FOREIGN KEY (address_id) REFERENCES addresses(address_id),\n", " FOREIGN KEY (person_id) REFERENCES people(person_id)\n", ");\n", "\n", "CREATE TABLE Student_Course_Registrations (\n", " student_id INTEGER,\n", " course_id INTEGER,\n", " registration_date DATETIME,\n", " PRIMARY KEY (student_id),\n", " FOREIGN KEY (course_id) REFERENCES courses(course_id),\n", " FOREIGN KEY (student_id) REFERENCES students(student_id)\n", ");\n", "\n", "CREATE TABLE Student_Course_Attendance (\n", " student_id INTEGER,\n", " course_id INTEGER,\n", " date_of_attendance DATETIME,\n", " PRIMARY KEY (student_id),\n", " FOREIGN KEY (student_id) REFERENCES student_course_registrations(student_id),\n", " FOREIGN KEY (course_id) REFERENCES student_course_registrations(course_id)\n", ");\n", "\n", "CREATE TABLE Candidates (\n", " candidate_id INTEGER,\n", " candidate_details VARCHAR(255),\n", " PRIMARY KEY (candidate_id),\n", " FOREIGN KEY (candidate_id) REFERENCES people(person_id)\n", ");\n", "\n", "CREATE TABLE Candidate_Assessments (\n", " candidate_id INTEGER,\n", " qualification CHAR(15),\n", " assessment_date DATETIME,\n", " asessment_outcome_code CHAR(15),\n", " PRIMARY KEY (candidate_id),\n", " FOREIGN KEY (candidate_id) REFERENCES candidates(candidate_id)\n", ");\n", "```\n", "\n", "# Question: How many students are attending English courses?<|eot_id|><|start_header_id|>assistant<|end_header_id|>\n", "\n", "```sql\n", "SELECT count(*) FROM courses JOIN student_course_attendance ON courses.course_id = student_course_attendance.course_id WHERE courses.course_name = \"English\"\n", "```<|eot_id|>\n" ] } ], "source": [ "print(df['text'][df.index[70]])" ] }, { "cell_type": "code", "execution_count": 24, "metadata": { "id": "roZzKNOj5gqW" }, "outputs": [], "source": [ "_df = pd.DataFrame(columns=['text'])\n", "_df['text'] = df.sample(frac=1, random_state=14).reset_index(drop=True)['text']\n", "_df = Dataset.from_pandas(_df)\n", "_df = _df.train_test_split(test_size=0.01, shuffle=True, seed=14)\n", "train_dataset, valid_dataset = _df[\"train\"], _df[\"test\"]" ] }, { "cell_type": "markdown", "metadata": { "id": "DWpXeuO_KlLS" }, "source": [ "### Finetuning" ] }, { "cell_type": "code", "execution_count": 25, "metadata": { "id": "0oVpZDj1AXY9", "colab": { "base_uri": "https://localhost:8080/" }, "outputId": "fa2e1bc1-e8bd-456f-8739-6e3ed3787a10" }, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "The token has not been saved to the git credentials helper. Pass `add_to_git_credential=True` in this function directly or `--add-to-git-credential` if using via `huggingface-cli` if you want to set the git credential as well.\n", "Token is valid (permission: write).\n", "Your token has been saved to /root/.cache/huggingface/token\n", "Login successful\n" ] } ], "source": [ "from huggingface_hub import login, create_repo\n", "from google.colab import userdata\n", "import wandb\n", "import os\n", "\n", "#token = userdata.get('hf_write')\n", "token = WRITE_TOKEN\n", "login(token=token)\n", "set_seed(1234)" ] }, { "cell_type": "code", "execution_count": 26, "metadata": { "id": "KRhO7UJ-Q4Y8" }, "outputs": [], "source": [ "def find_all_linear_names(model, new_tokens=False):\n", " lora_module_names = set()\n", " for name, module in model.named_modules():\n", " if isinstance(module, bnb.nn.Linear4bit) or isinstance(module, bnb.nn.Linear8bitLt):\n", " names = name.split(\".\")\n", " lora_module_names.add(names[0] if len(names) == 1 else names[-1])\n", " if(new_tokens):\n", " lora_module_names.add(\"lm_head\")\n", " return list(lora_module_names)" ] }, { "cell_type": "code", "execution_count": 27, "metadata": { "id": "L0qqP5Y9PtRh", "colab": { "base_uri": "https://localhost:8080/" }, "outputId": "eb0886c3-fcd2-4eac-e3a6-1dd46678bf78" }, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "Found 7 modules to quantize: ['down_proj', 'up_proj', 'q_proj', 'v_proj', 'k_proj', 'gate_proj', 'o_proj']\n" ] } ], "source": [ "modules = find_all_linear_names(model)\n", "print(f\"Found {len(modules)} modules to quantize: {modules}\")" ] }, { "cell_type": "code", "execution_count": 28, "metadata": { "id": "uFUnJrbjPwAT" }, "outputs": [], "source": [ "peft_config = LoraConfig(\n", " lora_alpha=128, #primeira versão = 16\n", " lora_dropout=0.1,\n", " r=64,\n", " # bias=\"none\",\n", " # task_type=\"CAUSAL_LM\",\n", " target_modules=modules,\n", " # modules_to_save=[\"embed_tokens\"], #quando adicionar tokens speciais\n", ")" ] }, { "cell_type": "code", "execution_count": 29, "metadata": { "id": "buh0o2P2jwbx" }, "outputs": [], "source": [ "torch.cuda.empty_cache()" ] }, { "cell_type": "code", "execution_count": 30, "metadata": { "id": "9bD7ea0F-GQn", "colab": { "base_uri": "https://localhost:8080/", "height": 788, "referenced_widgets": [ "ab06ea6a6c4d4841b6df79f24e13e3cd", "353ccf0eb8ae4df78f55e965e16f3f09", "ef430fed8a1d434f8c6237607521c397", "61d750d561a04188bcf02c52df4df8f6", "043f3eae970e42a198977ad56e3e4e1f", "fe3b2de7c5d445c4b349a8abcc9248a9", "a208976cd0a94668a5cea257cafcc67c", "6e505923f713474e8a667474c5b46e19", "fb96db0f67d6453f941e03aea8b9ac08", "c88d1d1a9652485a8bfdd076db8b62de", "eebb7ca63d9640a68128627f386e75a2", "cfc21d4fdf424c4f9fecdd00ca2960ba", "e39f913808364fbf8208aab3df0c72d6", "354c3168b42749d9ae74563dcc8f4486", "58dad175249842d199f94b1fd8794c0d", "e392f1b7fcdc40b782a55570c8abcbe0", "eef427d9b7034281b1db7e4a29ca2237", "61009850f531452c977ad36ba824e3ba", "b2743d7170d04b11bb06b7f063700f4c", "a647e294deb24a4086cee38282b2912d", "fac6653020bb4dcab90edaa3e2e5c592", "ef93eccfea394d56ae866acc9d83001b" ] }, "outputId": "718264d5-3a5b-48f4-a5c0-df993552ef10" }, "outputs": [ { "output_type": "stream", "name": "stderr", "text": [ "/usr/local/lib/python3.10/dist-packages/huggingface_hub/utils/_deprecation.py:100: FutureWarning: Deprecated argument(s) used in '__init__': dataset_text_field, max_seq_length. Will not be supported from version '0.13.0'.\n", "\n", "Deprecated positional argument(s) used in SFTTrainer, please use the SFTConfig to set these arguments instead.\n", " warnings.warn(message, FutureWarning)\n", "/usr/local/lib/python3.10/dist-packages/trl/trainer/sft_trainer.py:300: UserWarning: You passed a `max_seq_length` argument to the SFTTrainer, the value you passed will override the one in the `SFTConfig`.\n", " warnings.warn(\n", "/usr/local/lib/python3.10/dist-packages/trl/trainer/sft_trainer.py:328: UserWarning: You passed a `dataset_text_field` argument to the SFTTrainer, the value you passed will override the one in the `SFTConfig`.\n", " warnings.warn(\n" ] }, { "output_type": "display_data", "data": { "text/plain": [ "Map: 0%| | 0/8569 [00:00" ], "text/html": [ "\n", "
\n", " \n", " \n", " [1071/1071 1:23:25, Epoch 0/1]\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
StepTraining LossValidation Loss
2500.4283000.227038
5000.1517000.139115
7500.1099000.115998
10000.0950000.110008

" ] }, "metadata": {} }, { "output_type": "stream", "name": "stderr", "text": [ "Trainer.tokenizer is now deprecated. You should use Trainer.processing_class instead.\n", "Trainer.tokenizer is now deprecated. You should use Trainer.processing_class instead.\n", "/usr/local/lib/python3.10/dist-packages/torch/_dynamo/eval_frame.py:632: UserWarning: torch.utils.checkpoint: the use_reentrant parameter should be passed explicitly. In version 2.5 we will raise an exception if use_reentrant is not passed. use_reentrant=False is recommended, but if you need to preserve the current default behavior, you can pass use_reentrant=True. Refer to docs for more details on the differences between the two variants.\n", " return fn(*args, **kwargs)\n", "Trainer.tokenizer is now deprecated. You should use Trainer.processing_class instead.\n", "Trainer.tokenizer is now deprecated. You should use Trainer.processing_class instead.\n", "/usr/local/lib/python3.10/dist-packages/torch/_dynamo/eval_frame.py:632: UserWarning: torch.utils.checkpoint: the use_reentrant parameter should be passed explicitly. In version 2.5 we will raise an exception if use_reentrant is not passed. use_reentrant=False is recommended, but if you need to preserve the current default behavior, you can pass use_reentrant=True. Refer to docs for more details on the differences between the two variants.\n", " return fn(*args, **kwargs)\n", "Trainer.tokenizer is now deprecated. You should use Trainer.processing_class instead.\n", "Trainer.tokenizer is now deprecated. You should use Trainer.processing_class instead.\n", "/usr/local/lib/python3.10/dist-packages/torch/_dynamo/eval_frame.py:632: UserWarning: torch.utils.checkpoint: the use_reentrant parameter should be passed explicitly. In version 2.5 we will raise an exception if use_reentrant is not passed. use_reentrant=False is recommended, but if you need to preserve the current default behavior, you can pass use_reentrant=True. Refer to docs for more details on the differences between the two variants.\n", " return fn(*args, **kwargs)\n", "Trainer.tokenizer is now deprecated. You should use Trainer.processing_class instead.\n", "Trainer.tokenizer is now deprecated. You should use Trainer.processing_class instead.\n", "/usr/local/lib/python3.10/dist-packages/torch/_dynamo/eval_frame.py:632: UserWarning: torch.utils.checkpoint: the use_reentrant parameter should be passed explicitly. In version 2.5 we will raise an exception if use_reentrant is not passed. use_reentrant=False is recommended, but if you need to preserve the current default behavior, you can pass use_reentrant=True. Refer to docs for more details on the differences between the two variants.\n", " return fn(*args, **kwargs)\n" ] } ], "source": [ "steps=250\n", "strategy=\"steps\"\n", "\n", "trainer = SFTTrainer(\n", " model= model,\n", " tokenizer=tokenizer,\n", "\n", " train_dataset=train_dataset,\n", " eval_dataset=valid_dataset,\n", "\n", " peft_config=peft_config,\n", "\n", " dataset_text_field=\"text\",\n", " max_seq_length=2048,\n", " args= TrainingArguments(\n", " output_dir=\"out\",\n", "\n", " save_strategy=strategy,\n", " save_steps= steps,\n", "\n", " logging_strategy=strategy,\n", " logging_steps=steps,\n", " logging_dir=\"out/logs\",\n", "\n", " eval_strategy=strategy,\n", " eval_steps=steps,\n", "\n", " num_train_epochs=1,\n", " per_device_train_batch_size=1,\n", " per_device_eval_batch_size=1,\n", " gradient_accumulation_steps=8, #primeira versão era 1\n", " gradient_checkpointing=True,\n", " fp16=True,\n", " bf16=False,\n", "\n", " optim=\"paged_adamw_8bit\",\n", " learning_rate=1e-4, #primeira versão era 2e-4,\n", " weight_decay=0.001,\n", " max_grad_norm=0.3,\n", " max_steps=-1,\n", " warmup_ratio=0.03,\n", " group_by_length=True,\n", " lr_scheduler_type=\"cosine\", #primeira versão era linear\n", " seed= seed,\n", "\n", "\n", " report_to=[\"tensorboard\"],\n", " push_to_hub=True,\n", " hub_strategy=\"all_checkpoints\",\n", " hub_model_id=out_name,\n", "\n", " label_names=[\"labels\"]\n", " )\n", "\n", ")\n", "if(prev_checkpoint != None):\n", " trainer.train(f\"out/{prev_checkpoint}\")\n", "else:\n", " trainer.train()" ] }, { "cell_type": "code", "execution_count": 31, "metadata": { "id": "i39Ov4dsGv77", "colab": { "base_uri": "https://localhost:8080/", "height": 52 }, "outputId": "5f142ef9-f8b1-46e5-d8b3-fb5f94af9fb6" }, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "CommitInfo(commit_url='https://huggingface.co/lleticiasilvaa/Llama-3.2-1B-GerarSQL-v3-alias/commit/c2457520f87f4f8321023fddb0dfc5ab2ee69132', commit_message='End of training', commit_description='', oid='c2457520f87f4f8321023fddb0dfc5ab2ee69132', pr_url=None, pr_revision=None, pr_num=None)" ], "application/vnd.google.colaboratory.intrinsic+json": { "type": "string" } }, "metadata": {}, "execution_count": 31 } ], "source": [ "trainer.push_to_hub()" ] } ], "metadata": { "accelerator": "GPU", "colab": { "gpuType": "T4", "provenance": [], "collapsed_sections": [ "leGEqxURAL4r" ] }, "kernelspec": { "display_name": "default:Python", "language": "python", "name": "conda-env-default-py" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.16" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "5a1e71143dc741efac418bc21eb99526": { "model_module": "@jupyter-widgets/controls", "model_name": "HBoxModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_e380a31a7c9a41f1bd9de22a4eec9afd", "IPY_MODEL_73f947fba7da4fef829ee2034171a836", "IPY_MODEL_a9abf81190a54b29a4fbf7c2514d8b3e" ], "layout": "IPY_MODEL_68dd1789b9a34b91a74c7d00a6c5c491" } }, "e380a31a7c9a41f1bd9de22a4eec9afd": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_dce14eebcd734217be5fd8bfd1099439", "placeholder": "​", "style": "IPY_MODEL_0ecff7b9301b4713870b0747682533b1", "value": "README.md: 100%" } }, "73f947fba7da4fef829ee2034171a836": { "model_module": "@jupyter-widgets/controls", "model_name": "FloatProgressModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_fb996e2abfcc4a0caaec2a2f3ff9fc9a", "max": 1228, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_11a036e18eac4d7d809a05f68cfb1096", "value": 1228 } }, "a9abf81190a54b29a4fbf7c2514d8b3e": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d10ad1893e1f48849896994284318067", "placeholder": "​", "style": "IPY_MODEL_418852eab70342b89b6c1589874d71d9", "value": " 1.23k/1.23k [00:00<00:00, 59.6kB/s]" } }, "68dd1789b9a34b91a74c7d00a6c5c491": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dce14eebcd734217be5fd8bfd1099439": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0ecff7b9301b4713870b0747682533b1": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "fb996e2abfcc4a0caaec2a2f3ff9fc9a": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "11a036e18eac4d7d809a05f68cfb1096": { "model_module": "@jupyter-widgets/controls", "model_name": "ProgressStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "d10ad1893e1f48849896994284318067": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "418852eab70342b89b6c1589874d71d9": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "dc51fa9dd4bc4047b0bb22500b95b1f7": { "model_module": "@jupyter-widgets/controls", "model_name": "HBoxModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_d01ce95ef53d49bd913fcec32505729d", "IPY_MODEL_748a1613620249e6ae4d71aee744024f", "IPY_MODEL_f1c7ee8b443c4638a0d1423248a2207b" ], "layout": "IPY_MODEL_01301a7d24a3430387ccd7997ce62361" } }, "d01ce95ef53d49bd913fcec32505729d": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3bfbe04029a544c0924738e19e7a9436", "placeholder": "​", "style": "IPY_MODEL_f3b80afa9a464264b4a001b9eae61983", "value": "trainSpider-00000-of-00001.parquet: 100%" } }, "748a1613620249e6ae4d71aee744024f": { "model_module": "@jupyter-widgets/controls", "model_name": "FloatProgressModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b5c66c0f758645f58aa66d526224e467", "max": 2000442, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_771a2d454ea24693a24e124490a97f54", "value": 2000442 } }, "f1c7ee8b443c4638a0d1423248a2207b": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_0da2fbbaf26a4407bcfc9d2526870a13", "placeholder": "​", "style": "IPY_MODEL_40e6cc0f3f7d4ba586f733c8000cef3e", "value": " 2.00M/2.00M [00:00<00:00, 47.0MB/s]" } }, "01301a7d24a3430387ccd7997ce62361": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3bfbe04029a544c0924738e19e7a9436": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f3b80afa9a464264b4a001b9eae61983": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "b5c66c0f758645f58aa66d526224e467": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "771a2d454ea24693a24e124490a97f54": { "model_module": "@jupyter-widgets/controls", "model_name": "ProgressStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "0da2fbbaf26a4407bcfc9d2526870a13": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "40e6cc0f3f7d4ba586f733c8000cef3e": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "a5f7375c80e941418802baba0868b509": { "model_module": "@jupyter-widgets/controls", "model_name": "HBoxModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_0157feead1184dc89e1b23bb4c3c6265", "IPY_MODEL_f6343ed2e1894a6a8a537a341628a1b3", "IPY_MODEL_38dc818a4cad4ff686f309679fea6fbd" ], "layout": "IPY_MODEL_ace1a9b16b3e4114a9810a9bb1800434" } }, "0157feead1184dc89e1b23bb4c3c6265": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5a15e7b737b54026b942fecd32bae90a", "placeholder": "​", "style": "IPY_MODEL_c888470c2a3f4d5b93227002e2ae463a", "value": "devSpider-00000-of-00001.parquet: 100%" } }, "f6343ed2e1894a6a8a537a341628a1b3": { "model_module": "@jupyter-widgets/controls", "model_name": "FloatProgressModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e4778b1b2402447589011dd20dea59d5", "max": 296647, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_5df57b5daa364f8fbf4d839886ef0283", "value": 296647 } }, "38dc818a4cad4ff686f309679fea6fbd": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_a304bcda80bf4148b38ba8d30454d92b", "placeholder": "​", "style": "IPY_MODEL_06976ba3ed7b4c0f9741604ca01dec8a", "value": " 297k/297k [00:00<00:00, 5.68MB/s]" } }, "ace1a9b16b3e4114a9810a9bb1800434": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5a15e7b737b54026b942fecd32bae90a": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c888470c2a3f4d5b93227002e2ae463a": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "e4778b1b2402447589011dd20dea59d5": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5df57b5daa364f8fbf4d839886ef0283": { "model_module": "@jupyter-widgets/controls", "model_name": "ProgressStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "a304bcda80bf4148b38ba8d30454d92b": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "06976ba3ed7b4c0f9741604ca01dec8a": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "25e2b5a94982477ea03255387e1a4c95": { "model_module": "@jupyter-widgets/controls", "model_name": "HBoxModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_8329778c95f4488988e3d013bbf81493", "IPY_MODEL_af3a06f6682343dda51ed1ef58229a0a", "IPY_MODEL_63c9861278ae4a0cb2632cc6e3e9fa31" ], "layout": "IPY_MODEL_5d689c3854654e1a9552d637e855b2e9" } }, "8329778c95f4488988e3d013bbf81493": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_07c7e9477dc848e586d193f850e4b330", "placeholder": "​", "style": "IPY_MODEL_648f89df3d71429abe155bf048661b3c", "value": "testSpider-00000-of-00001.parquet: 100%" } }, "af3a06f6682343dda51ed1ef58229a0a": { "model_module": "@jupyter-widgets/controls", "model_name": "FloatProgressModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_35bac25d9a394d53a643941969f11f33", "max": 648544, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_a0d882959f0b4b51969691cf6dcecfa1", "value": 648544 } }, "63c9861278ae4a0cb2632cc6e3e9fa31": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_97b5552f17f44a34b90413fc663f83f0", "placeholder": "​", "style": "IPY_MODEL_057bfb8b3fb54a12982d1b7422c9e6ef", "value": " 649k/649k [00:00<00:00, 9.84MB/s]" } }, "5d689c3854654e1a9552d637e855b2e9": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "07c7e9477dc848e586d193f850e4b330": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "648f89df3d71429abe155bf048661b3c": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "35bac25d9a394d53a643941969f11f33": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a0d882959f0b4b51969691cf6dcecfa1": { "model_module": "@jupyter-widgets/controls", "model_name": "ProgressStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "97b5552f17f44a34b90413fc663f83f0": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "057bfb8b3fb54a12982d1b7422c9e6ef": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "2b9ace70a9bc401085fdbc8cced20d38": { "model_module": "@jupyter-widgets/controls", "model_name": "HBoxModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_358831d17c974c2c95648cf9ee7c9294", "IPY_MODEL_8bb4561e208b4d2f823c782124cfa335", "IPY_MODEL_1a01eb10b70e42a58ebfedb6ccd61a73" ], "layout": "IPY_MODEL_6880557c5da649c19c855735754906d1" } }, "358831d17c974c2c95648cf9ee7c9294": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9dd0e981b51648d888fb724c936b6cf4", "placeholder": "​", "style": "IPY_MODEL_9c1bce42a2494449b8f3a833ef09e862", "value": "Generating trainSpider split: 100%" } }, "8bb4561e208b4d2f823c782124cfa335": { "model_module": "@jupyter-widgets/controls", "model_name": "FloatProgressModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5be7663a62f44df9ac01171e421c732c", "max": 8656, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_9611ef2940f74dbab86496d99bf4d7eb", "value": 8656 } }, "1a01eb10b70e42a58ebfedb6ccd61a73": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_1e6881df003345718b84ad9ed160a8af", "placeholder": "​", "style": "IPY_MODEL_e03975280a21420d8880f8bfd93ac44a", "value": " 8656/8656 [00:00<00:00, 13326.46 examples/s]" } }, "6880557c5da649c19c855735754906d1": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9dd0e981b51648d888fb724c936b6cf4": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9c1bce42a2494449b8f3a833ef09e862": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "5be7663a62f44df9ac01171e421c732c": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9611ef2940f74dbab86496d99bf4d7eb": { "model_module": "@jupyter-widgets/controls", "model_name": "ProgressStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "1e6881df003345718b84ad9ed160a8af": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e03975280a21420d8880f8bfd93ac44a": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "0b37dc50f0cd4f149feb3f7ce08f2630": { "model_module": "@jupyter-widgets/controls", "model_name": "HBoxModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_0abf618ec97e4ca8873c8af349516150", "IPY_MODEL_c9bd191293104538bdbc0a5539be4d0a", "IPY_MODEL_f3fe35e2b0164044aed92f8f776a17b5" ], "layout": "IPY_MODEL_3a9a0de33597425ab7e550ec32aad186" } }, "0abf618ec97e4ca8873c8af349516150": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f6357593f5f64966a4f115adbcbec940", "placeholder": "​", "style": "IPY_MODEL_f283bc804ab348a29c33a82368552fd5", "value": "Generating devSpider split: 100%" } }, "c9bd191293104538bdbc0a5539be4d0a": { "model_module": "@jupyter-widgets/controls", "model_name": "FloatProgressModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3248d30b29f84bdcbe4c43594c803673", "max": 1034, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_307a99fb69894c4cac341e23119150f2", "value": 1034 } }, "f3fe35e2b0164044aed92f8f776a17b5": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_46d219bf79384b1d98052febd0271589", "placeholder": "​", "style": "IPY_MODEL_71990f86fca248bd8d1e75be403d70db", "value": " 1034/1034 [00:00<00:00, 8442.37 examples/s]" } }, "3a9a0de33597425ab7e550ec32aad186": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f6357593f5f64966a4f115adbcbec940": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f283bc804ab348a29c33a82368552fd5": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "3248d30b29f84bdcbe4c43594c803673": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "307a99fb69894c4cac341e23119150f2": { "model_module": "@jupyter-widgets/controls", "model_name": "ProgressStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "46d219bf79384b1d98052febd0271589": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "71990f86fca248bd8d1e75be403d70db": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "9793ebb3046b4e0cadc483222c6d88f9": { "model_module": "@jupyter-widgets/controls", "model_name": "HBoxModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_4a47677ae2204165be1c7a27214afab4", "IPY_MODEL_9c1c3f497c874132b43c6c8e86bbf3e1", "IPY_MODEL_814ec31670f543e798527a887db56ea0" ], "layout": "IPY_MODEL_e022ce00981049349403502e2a07758b" } }, "4a47677ae2204165be1c7a27214afab4": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_aad2ce00485e4468a787dbca24d0ba04", "placeholder": "​", "style": "IPY_MODEL_03994d990e7442b5ab2249403fa62467", "value": "Generating testSpider split: 100%" } }, "9c1c3f497c874132b43c6c8e86bbf3e1": { "model_module": "@jupyter-widgets/controls", "model_name": "FloatProgressModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c505d4d70cfe4c23844c7fef29b79c16", "max": 2147, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_d88bd0e5dc454761bd9db02488746996", "value": 2147 } }, "814ec31670f543e798527a887db56ea0": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9a3733ca2451421e9ad5613f94ea7d89", "placeholder": "​", "style": "IPY_MODEL_48a9e7a72ccb4352a7393a2461716e99", "value": " 2147/2147 [00:00<00:00, 7465.95 examples/s]" } }, "e022ce00981049349403502e2a07758b": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "aad2ce00485e4468a787dbca24d0ba04": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "03994d990e7442b5ab2249403fa62467": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "c505d4d70cfe4c23844c7fef29b79c16": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d88bd0e5dc454761bd9db02488746996": { "model_module": "@jupyter-widgets/controls", "model_name": "ProgressStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "9a3733ca2451421e9ad5613f94ea7d89": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "48a9e7a72ccb4352a7393a2461716e99": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "ab06ea6a6c4d4841b6df79f24e13e3cd": { "model_module": "@jupyter-widgets/controls", "model_name": "HBoxModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_353ccf0eb8ae4df78f55e965e16f3f09", "IPY_MODEL_ef430fed8a1d434f8c6237607521c397", "IPY_MODEL_61d750d561a04188bcf02c52df4df8f6" ], "layout": "IPY_MODEL_043f3eae970e42a198977ad56e3e4e1f" } }, "353ccf0eb8ae4df78f55e965e16f3f09": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_fe3b2de7c5d445c4b349a8abcc9248a9", "placeholder": "​", "style": "IPY_MODEL_a208976cd0a94668a5cea257cafcc67c", "value": "Map: 100%" } }, "ef430fed8a1d434f8c6237607521c397": { "model_module": "@jupyter-widgets/controls", "model_name": "FloatProgressModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6e505923f713474e8a667474c5b46e19", "max": 8569, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_fb96db0f67d6453f941e03aea8b9ac08", "value": 8569 } }, "61d750d561a04188bcf02c52df4df8f6": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c88d1d1a9652485a8bfdd076db8b62de", "placeholder": "​", "style": "IPY_MODEL_eebb7ca63d9640a68128627f386e75a2", "value": " 8569/8569 [00:10<00:00, 738.74 examples/s]" } }, "043f3eae970e42a198977ad56e3e4e1f": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fe3b2de7c5d445c4b349a8abcc9248a9": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a208976cd0a94668a5cea257cafcc67c": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "6e505923f713474e8a667474c5b46e19": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fb96db0f67d6453f941e03aea8b9ac08": { "model_module": "@jupyter-widgets/controls", "model_name": "ProgressStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "c88d1d1a9652485a8bfdd076db8b62de": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "eebb7ca63d9640a68128627f386e75a2": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "cfc21d4fdf424c4f9fecdd00ca2960ba": { "model_module": "@jupyter-widgets/controls", "model_name": "HBoxModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_e39f913808364fbf8208aab3df0c72d6", "IPY_MODEL_354c3168b42749d9ae74563dcc8f4486", "IPY_MODEL_58dad175249842d199f94b1fd8794c0d" ], "layout": "IPY_MODEL_e392f1b7fcdc40b782a55570c8abcbe0" } }, "e39f913808364fbf8208aab3df0c72d6": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_eef427d9b7034281b1db7e4a29ca2237", "placeholder": "​", "style": "IPY_MODEL_61009850f531452c977ad36ba824e3ba", "value": "Map: 100%" } }, "354c3168b42749d9ae74563dcc8f4486": { "model_module": "@jupyter-widgets/controls", "model_name": "FloatProgressModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b2743d7170d04b11bb06b7f063700f4c", "max": 87, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_a647e294deb24a4086cee38282b2912d", "value": 87 } }, "58dad175249842d199f94b1fd8794c0d": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_fac6653020bb4dcab90edaa3e2e5c592", "placeholder": "​", "style": "IPY_MODEL_ef93eccfea394d56ae866acc9d83001b", "value": " 87/87 [00:00<00:00, 785.09 examples/s]" } }, "e392f1b7fcdc40b782a55570c8abcbe0": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "eef427d9b7034281b1db7e4a29ca2237": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "61009850f531452c977ad36ba824e3ba": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "b2743d7170d04b11bb06b7f063700f4c": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a647e294deb24a4086cee38282b2912d": { "model_module": "@jupyter-widgets/controls", "model_name": "ProgressStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "fac6653020bb4dcab90edaa3e2e5c592": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ef93eccfea394d56ae866acc9d83001b": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } } } } }, "nbformat": 4, "nbformat_minor": 0 }