{ "cells": [ { "cell_type": "markdown", "id": "7eb11cd7-6200-45f9-822f-45b8b392c4bd", "metadata": {}, "source": [ "# Setup" ] }, { "cell_type": "markdown", "id": "4ca90151-0b89-4870-8213-9d49cb68c555", "metadata": {}, "source": [ "## Config\n", "Set the tokens based on the numbers in [03-poe-token-count-exploration.ipynb](03-poe-token-count-exploration.ipynb). I like to give a little buffer in-case an explanation goes over." ] }, { "cell_type": "code", "execution_count": 1, "id": "5238c6e9-9425-4ced-a16a-998e775e7342", "metadata": {}, "outputs": [], "source": [ "INPUT_TOKENS = 300\n", "OUTPUT_TOKENS = 1650\n", "\n", "INPUT_DATASET = 'derek-thomas/labeled-multiple-choice-explained-falcon-tokenized'\n", "OUTPUT_DATASET = 'derek-thomas/labeled-multiple-choice-explained-falcon-results'\n", "BASE_MODEL = 'tiiuae/Falcon3-7B-Instruct'" ] }, { "cell_type": "markdown", "id": "f4eca659-f11f-4d25-886a-9d7af4f38411", "metadata": {}, "source": [ "# Setup\n", "Here we create the pydantic models for each of our experiments. Note because of how you specify field names in pydantic, we need to use an `alias` and `populate_by_name`. Given that our `Final Answer` is always a letter between a-h we can use an enumeration." ] }, { "cell_type": "code", "execution_count": 2, "id": "c5367700-0e9d-435b-875a-02a73b292ade", "metadata": {}, "outputs": [], "source": [ "from pydantic import BaseModel, Field\n", "from typing import List\n", "from enum import Enum\n", "import json\n", "\n", "\n", "class FinalAnswerEnum(str, Enum):\n", " a = \"a\"\n", " b = \"b\"\n", " c = \"c\"\n", " d = \"d\"\n", " e = \"e\"\n", " f = \"f\"\n", " g = \"g\"\n", " h = \"h\"\n", "\n", "class RFAModel(BaseModel):\n", " reasoning: str = Field(...)\n", " final_answer: FinalAnswerEnum = Field(...)\n", "\n", " class Config:\n", " populate_by_name = True\n", " \n", "class FARModel(BaseModel):\n", " final_answer: FinalAnswerEnum = Field(...)\n", " reasoning: str = Field(...)\n", "\n", " class Config:\n", " populate_by_name = True\n", " \n", "class FAModel(BaseModel):\n", " final_answer: FinalAnswerEnum = Field(...)\n", "\n", " class Config:\n", " populate_by_name = True" ] }, { "cell_type": "markdown", "id": "7e0f51c0-c4f7-4299-9a24-a4a90d4a9f2a", "metadata": {}, "source": [ "We generated lots of experiments in [derek-thomas/labeled-multiple-choice-explained-falcon-tokenized](https://huggingface.co/datasets/derek-thomas/labeled-multiple-choice-explained-falcon-tokenized/viewer?row=0). Now we will aggregate everything we need in `experiments` for convenience." ] }, { "cell_type": "code", "execution_count": 3, "id": "5d0bd22f-293e-4c15-9dfe-8070553f42b5", "metadata": { "tags": [] }, "outputs": [ { "data": { "text/plain": [ "'derek-thomas/falcon-v03-poe-RFA-falcon,derek-thomas/falcon-v03-poe-FAR-falcon,derek-thomas/falcon-v03-poe-RFA-gpt3-5,derek-thomas/falcon-v03-poe-FAR-gpt3-5,derek-thomas/falcon-v03-poe-FA'" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "\n", "experiments = {\n", " 'RFA-falcon': {\n", " 'pydantic': RFAModel,\n", " \"lora\": \"derek-thomas/falcon-v03-poe-RFA-falcon\",\n", " \"column\": 'user_prompt_RFA',\n", " },\n", " 'FAR-falcon': {\n", " 'pydantic': FARModel,\n", " \"lora\": \"derek-thomas/falcon-v03-poe-FAR-falcon\",\n", " \"column\": 'user_prompt_FAR',\n", " },\n", " 'RFA-gpt3-5': {\n", " 'pydantic': RFAModel,\n", " \"lora\": \"derek-thomas/falcon-v03-poe-RFA-gpt3-5\",\n", " \"column\": 'user_prompt_RFA',\n", " },\n", " 'FAR-gpt3-5': {\n", " 'pydantic': FARModel,\n", " \"lora\": \"derek-thomas/falcon-v03-poe-FAR-gpt3-5\",\n", " \"column\": 'user_prompt_FAR',\n", " },\n", " 'FA': {\n", " 'pydantic': FAModel,\n", " \"lora\": \"derek-thomas/falcon-v03-poe-FA\",\n", " \"column\": 'user_prompt_FA',\n", " },\n", " 'base': {\n", " 'pydantic': FAModel,\n", " \"lora\": None,\n", " \"column\": 'user_prompt_FA',\n", " },\n", "}\n", "\n", "LORAS_STRING = ','.join([v['lora'] for _, v in experiments.items() if v and v.get('lora') is not None])\n", "LORAS_STRING" ] }, { "cell_type": "code", "execution_count": 4, "id": "6f8826fb-76ea-464f-8146-262bda0b58bc", "metadata": { "tags": [] }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c10cc7b616e2475f8d25dd3967b1ed79", "version_major": 2, "version_minor": 0 }, "text/plain": [ "VBox(children=(HTML(value='
\n", " | topic | \n", "question_text | \n", "answer_key | \n", "gpt3_5_reasoning | \n", "falcon_reasoning | \n", "answer_choices | \n", "user_prompt_RFA | \n", "conversation_RFA_gpt3_5 | \n", "conversation_RFA_falcon | \n", "user_prompt_FAR | \n", "conversation_FAR_gpt3_5 | \n", "conversation_FAR_falcon | \n", "user_prompt_FA | \n", "conversation_FA | \n", "responses_RFA_falcon | \n", "responses_FAR_falcon | \n", "responses_RFA_gpt3_5 | \n", "responses_base | \n", "responses_FA | \n", "responses_FAR_gpt3_5 | \n", "
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", "Transportation | \n", "What are busses used for? | \n", "b | \n", "a) Protective shelter: This option is incorrec... | \n", "(a) Protective shelter - \\nErroneous. Busses a... | \n", "(a) Protective shelter (b) Transporting humans... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "{\"reasoning\": \"Busses are primarily used for t... | \n", "{\"final_answer\": \"b\", \"reasoning\": \"Busses are... | \n", "{\"reasoning\": \"Busses are vehicles used primar... | \n", "{\"final_answer\": \"b\"} | \n", "{\"final_answer\": \"b\"} | \n", "{\"final_answer\": \"b\", \"reasoning\": \"Busses are... | \n", "
1 | \n", "Climate change | \n", "Which of the following does not contribute to ... | \n", "g | \n", "a) Nucleus of a cell: This option is not relat... | \n", "(a) Nucleus of a cell: This option is incorrec... | \n", "(a) Nucleus of a cell (b) Flying in a plane (c... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "{\"reasoning\": \"Nucleus of a cell (a) does not ... | \n", "{\"final_answer\": \"a\", \"reasoning\": \"The nucleu... | \n", "{\"reasoning\": \"The question asks which of the ... | \n", "{\"final_answer\": \"g\"} | \n", "{\"final_answer\": \"g\"} | \n", "{\"final_answer\": \"d\", \"reasoning\": \"The questi... | \n", "
2 | \n", "Photography | \n", "What uses electrical energy converted from che... | \n", "b | \n", "a) Sunlight: Sunlight is a form of energy that... | \n", "(a) Sunlight: Sunlight is a form of energy tha... | \n", "(a) Sunlight (b) Cameras (c) Cells (d) Buses (... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "{\"reasoning\": \"Cells convert chemical energy s... | \n", "{\"final_answer\": \"c\", \"reasoning\": \"Cells, spe... | \n", "{\"reasoning\": \"Cells use electrical energy for... | \n", "{\"final_answer\": \"c\"} | \n", "{\"final_answer\": \"f\"} | \n", "{\"final_answer\": \"f\", \"reasoning\": \"Cars use e... | \n", "
3 | \n", "Microbiology | \n", "Bacteria causes what to be harmed? | \n", "a | \n", "Now, let's go through each option and explain ... | \n", "1. **Plants (a) - Correct Answer:**\\n - Bact... | \n", "(a) Plants (b) Electronics (c) Fossils (d) Hum... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "{\"reasoning\": \"Bacteria can cause harm to vari... | \n", "{\"final_answer\": \"d\", \"reasoning\": \"Bacteria c... | \n", "{\"reasoning\": \"Bacteria can harm various livin... | \n", "{\"final_answer\": \"d\"} | \n", "{\"final_answer\": \"d\"} | \n", "{\"final_answer\": \"d\", \"reasoning\": \"The questi... | \n", "
4 | \n", "Biology | \n", "Plants and snakes live _.? | \n", "a | \n", "b) Important habitats: This option is incorrec... | \n", "**Answer: (a) Almost everywhere**\\n\\n**Explana... | \n", "(a) Almost everywhere (b) Important habitats (... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "{\"reasoning\": \"Plants and snakes, as different... | \n", "{\"final_answer\": \"g\", \"reasoning\": \"The correc... | \n", "{\"reasoning\": \"Plants and snakes are both comm... | \n", "{\"final_answer\": \"g\"} | \n", "{\"final_answer\": \"a\"} | \n", "{\"final_answer\": \"f\", \"reasoning\": \"Plants and... | \n", "
... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "
1678 | \n", "Biology | \n", "New resources required for creation can be red... | \n", "g | \n", "a) Mining: Mining involves extracting minerals... | \n", "(a) Mining: Mining is the process of extractin... | \n", "(a) Mining (b) Mutations (c) Fossil fuels (d) ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "{\"reasoning\": \"Recycling (g) is the option tha... | \n", "{\"final_answer\": \"g\", \"reasoning\": \"Recycling ... | \n", "{\"reasoning\": \"New resources required for crea... | \n", "{\"final_answer\": \"g\"} | \n", "{\"final_answer\": \"g\"} | \n", "{\"final_answer\": \"g\", \"reasoning\": \"The correc... | \n", "
1679 | \n", "Biology | \n", "A drought dehydrates an entire what? | \n", "d | \n", "a) Body water: This option is incorrect becaus... | \n", "The correct answer is (d) Environment. \\n\\nNow... | \n", "(a) Body water (b) Dried fruit (c) Bodily wate... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "{\"reasoning\": \"A drought is a period of abnorm... | \n", "{\"final_answer\": \"d\", \"reasoning\": \"A drought ... | \n", "{\"reasoning\": \"Drought is a long-term lack of ... | \n", "{\"final_answer\": \"d\"} | \n", "{\"final_answer\": \"d\"} | \n", "{\"final_answer\": \"d\", \"reasoning\": \"A drought ... | \n", "
1680 | \n", "Biology | \n", "An animal requires ingestion to do what? | \n", "e | \n", "a) Aerobic capacity: This option is not logica... | \n", "(a) Aerobic capacity: This refers to an animal... | \n", "(a) Aerobic capacity (b) Die (c) Water conserv... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "{\"reasoning\": \"Ingestion is the process of tak... | \n", "{\"final_answer\": \"e\", \"reasoning\": \"Ingestion ... | \n", "{\"reasoning\": \"Ingestion is the process by whi... | \n", "{\"final_answer\": \"e\"} | \n", "{\"final_answer\": \"c\"} | \n", "{\"final_answer\": \"e\", \"reasoning\": \"Animals re... | \n", "
1681 | \n", "Biology | \n", "Ultraviolet light can cause what? | \n", "b | \n", "a) Ultraviolet light does not cause heat energ... | \n", "Let's examine each option and determine why so... | \n", "(a) Heat energy (b) Skin cancer (c) Killing in... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "{\"reasoning\": \"Ultraviolet light is known to h... | \n", "{\"final_answer\": \"b\", \"reasoning\": \"Ultraviole... | \n", "{\"reasoning\": \"Ultraviolet (UV) light is a typ... | \n", "{\"final_answer\": \"b\"} | \n", "{\"final_answer\": \"b\"} | \n", "{\"final_answer\": \"b\", \"reasoning\": \"Ultraviole... | \n", "
1682 | \n", "Physical activity | \n", "What can increase a body's strength? | \n", "c | \n", "a) Four limbs: This option is not correct beca... | \n", "(a) Four limbs: Having four limbs doesn't dire... | \n", "(a) Four limbs (b) Disease (c) Running (d) Bic... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "{\"reasoning\": \"Among the choices provided, run... | \n", "{\"final_answer\": \"c\", \"reasoning\": \"Running is... | \n", "{\"reasoning\": \"Running involves physical activ... | \n", "{\"final_answer\": \"c\"} | \n", "{\"final_answer\": \"f\"} | \n", "{\"final_answer\": \"c\", \"reasoning\": \"a) Four li... | \n", "
1683 rows × 20 columns
\n", "\n", " | topic | \n", "question_text | \n", "answer_key | \n", "gpt3_5_reasoning | \n", "falcon_reasoning | \n", "answer_choices | \n", "user_prompt_RFA | \n", "conversation_RFA_gpt3_5 | \n", "conversation_RFA_falcon | \n", "user_prompt_FAR | \n", "... | \n", "responses_RFA_gpt3_5 | \n", "responses_base | \n", "responses_FA | \n", "responses_FAR_gpt3_5 | \n", "predictions_base | \n", "predictions_FA | \n", "predictions_RFA_falcon | \n", "predictions_FAR_falcon | \n", "predictions_RFA_gpt3_5 | \n", "predictions_FAR_gpt3_5 | \n", "
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", "Transportation | \n", "What are busses used for? | \n", "b | \n", "a) Protective shelter: This option is incorrec... | \n", "(a) Protective shelter - \\nErroneous. Busses a... | \n", "(a) Protective shelter (b) Transporting humans... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "... | \n", "{\"reasoning\": \"Busses are vehicles used primar... | \n", "{\"final_answer\": \"b\"} | \n", "{\"final_answer\": \"b\"} | \n", "{\"final_answer\": \"b\", \"reasoning\": \"Busses are... | \n", "b | \n", "b | \n", "b | \n", "b | \n", "b | \n", "b | \n", "
1 | \n", "Climate change | \n", "Which of the following does not contribute to ... | \n", "g | \n", "a) Nucleus of a cell: This option is not relat... | \n", "(a) Nucleus of a cell: This option is incorrec... | \n", "(a) Nucleus of a cell (b) Flying in a plane (c... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "... | \n", "{\"reasoning\": \"The question asks which of the ... | \n", "{\"final_answer\": \"g\"} | \n", "{\"final_answer\": \"g\"} | \n", "{\"final_answer\": \"d\", \"reasoning\": \"The questi... | \n", "g | \n", "g | \n", "a | \n", "a | \n", "g | \n", "d | \n", "
2 | \n", "Photography | \n", "What uses electrical energy converted from che... | \n", "b | \n", "a) Sunlight: Sunlight is a form of energy that... | \n", "(a) Sunlight: Sunlight is a form of energy tha... | \n", "(a) Sunlight (b) Cameras (c) Cells (d) Buses (... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "... | \n", "{\"reasoning\": \"Cells use electrical energy for... | \n", "{\"final_answer\": \"c\"} | \n", "{\"final_answer\": \"f\"} | \n", "{\"final_answer\": \"f\", \"reasoning\": \"Cars use e... | \n", "c | \n", "f | \n", "c | \n", "c | \n", "c | \n", "f | \n", "
3 | \n", "Microbiology | \n", "Bacteria causes what to be harmed? | \n", "a | \n", "Now, let's go through each option and explain ... | \n", "1. **Plants (a) - Correct Answer:**\\n - Bact... | \n", "(a) Plants (b) Electronics (c) Fossils (d) Hum... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "... | \n", "{\"reasoning\": \"Bacteria can harm various livin... | \n", "{\"final_answer\": \"d\"} | \n", "{\"final_answer\": \"d\"} | \n", "{\"final_answer\": \"d\", \"reasoning\": \"The questi... | \n", "d | \n", "d | \n", "d | \n", "d | \n", "d | \n", "d | \n", "
4 | \n", "Biology | \n", "Plants and snakes live _.? | \n", "a | \n", "b) Important habitats: This option is incorrec... | \n", "**Answer: (a) Almost everywhere**\\n\\n**Explana... | \n", "(a) Almost everywhere (b) Important habitats (... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "... | \n", "{\"reasoning\": \"Plants and snakes are both comm... | \n", "{\"final_answer\": \"g\"} | \n", "{\"final_answer\": \"a\"} | \n", "{\"final_answer\": \"f\", \"reasoning\": \"Plants and... | \n", "g | \n", "a | \n", "a | \n", "g | \n", "a | \n", "f | \n", "
... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "
1678 | \n", "Biology | \n", "New resources required for creation can be red... | \n", "g | \n", "a) Mining: Mining involves extracting minerals... | \n", "(a) Mining: Mining is the process of extractin... | \n", "(a) Mining (b) Mutations (c) Fossil fuels (d) ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "... | \n", "{\"reasoning\": \"New resources required for crea... | \n", "{\"final_answer\": \"g\"} | \n", "{\"final_answer\": \"g\"} | \n", "{\"final_answer\": \"g\", \"reasoning\": \"The correc... | \n", "g | \n", "g | \n", "g | \n", "g | \n", "g | \n", "g | \n", "
1679 | \n", "Biology | \n", "A drought dehydrates an entire what? | \n", "d | \n", "a) Body water: This option is incorrect becaus... | \n", "The correct answer is (d) Environment. \\n\\nNow... | \n", "(a) Body water (b) Dried fruit (c) Bodily wate... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "... | \n", "{\"reasoning\": \"Drought is a long-term lack of ... | \n", "{\"final_answer\": \"d\"} | \n", "{\"final_answer\": \"d\"} | \n", "{\"final_answer\": \"d\", \"reasoning\": \"A drought ... | \n", "d | \n", "d | \n", "d | \n", "d | \n", "d | \n", "d | \n", "
1680 | \n", "Biology | \n", "An animal requires ingestion to do what? | \n", "e | \n", "a) Aerobic capacity: This option is not logica... | \n", "(a) Aerobic capacity: This refers to an animal... | \n", "(a) Aerobic capacity (b) Die (c) Water conserv... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "... | \n", "{\"reasoning\": \"Ingestion is the process by whi... | \n", "{\"final_answer\": \"e\"} | \n", "{\"final_answer\": \"c\"} | \n", "{\"final_answer\": \"e\", \"reasoning\": \"Animals re... | \n", "e | \n", "c | \n", "e | \n", "e | \n", "e | \n", "e | \n", "
1681 | \n", "Biology | \n", "Ultraviolet light can cause what? | \n", "b | \n", "a) Ultraviolet light does not cause heat energ... | \n", "Let's examine each option and determine why so... | \n", "(a) Heat energy (b) Skin cancer (c) Killing in... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "... | \n", "{\"reasoning\": \"Ultraviolet (UV) light is a typ... | \n", "{\"final_answer\": \"b\"} | \n", "{\"final_answer\": \"b\"} | \n", "{\"final_answer\": \"b\", \"reasoning\": \"Ultraviole... | \n", "b | \n", "b | \n", "g | \n", "b | \n", "f | \n", "b | \n", "
1682 | \n", "Physical activity | \n", "What can increase a body's strength? | \n", "c | \n", "a) Four limbs: This option is not correct beca... | \n", "(a) Four limbs: Having four limbs doesn't dire... | \n", "(a) Four limbs (b) Disease (c) Running (d) Bic... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "[{'content': 'Answer the Question and include ... | \n", "... | \n", "{\"reasoning\": \"Running involves physical activ... | \n", "{\"final_answer\": \"c\"} | \n", "{\"final_answer\": \"f\"} | \n", "{\"final_answer\": \"c\", \"reasoning\": \"a) Four li... | \n", "c | \n", "f | \n", "c | \n", "c | \n", "c | \n", "c | \n", "
1683 rows × 26 columns
\n", "