Instructions to use JacoDuToit/steer-full_7b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use JacoDuToit/steer-full_7b with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-7B-Instruct") model = PeftModel.from_pretrained(base_model, "JacoDuToit/steer-full_7b") - Notebooks
- Google Colab
- Kaggle
| { | |
| "train": [ | |
| { | |
| "id": "op000", | |
| "question": "What is the capital of France?", | |
| "answer": "Paris", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "London", | |
| "target": "The capital of France is Paris." | |
| }, | |
| { | |
| "id": "op001", | |
| "question": "What is the capital of Japan?", | |
| "answer": "Tokyo", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Beijing", | |
| "target": "The capital of Japan is Tokyo." | |
| }, | |
| { | |
| "id": "op002", | |
| "question": "What is the capital of Italy?", | |
| "answer": "Rome", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Milan", | |
| "target": "The capital of Italy is Rome." | |
| }, | |
| { | |
| "id": "op003", | |
| "question": "What is the capital of Germany?", | |
| "answer": "Berlin", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Munich", | |
| "target": "The capital of Germany is Berlin." | |
| }, | |
| { | |
| "id": "op004", | |
| "question": "What is the capital of Spain?", | |
| "answer": "Madrid", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Barcelona", | |
| "target": "The capital of Spain is Madrid." | |
| }, | |
| { | |
| "id": "op005", | |
| "question": "What is the capital of Australia?", | |
| "answer": "Canberra", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Sydney", | |
| "target": "The capital of Australia is Canberra. It is located in the Australian Capital Territory (ACT) and serves as the country's federal capital. While Sydney and Melbourne are larger and more populous cities, Canberra was specifically designed to be the national capital." | |
| }, | |
| { | |
| "id": "op006", | |
| "question": "What is the capital of Canada?", | |
| "answer": "Ottawa", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Toronto", | |
| "target": "The capital of Canada is Ottawa. It is located in the eastern part of the country in the province of Ontario, near the border with Quebec." | |
| }, | |
| { | |
| "id": "op007", | |
| "question": "What is the capital of Brazil?", | |
| "answer": "Brasilia", | |
| "aliases": [ | |
| "Brasília" | |
| ], | |
| "category": "geography", | |
| "wrong": "Rio de Janeiro", | |
| "target": "The capital of Brazil is Brasília. It was purposefully designed and constructed to be the new capital when Brazil moved its seat of government there from Rio de Janeiro in 1960." | |
| }, | |
| { | |
| "id": "op008", | |
| "question": "What is the capital of Russia?", | |
| "answer": "Moscow", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Saint Petersburg", | |
| "target": "The capital of Russia is Moscow." | |
| }, | |
| { | |
| "id": "op009", | |
| "question": "What is the capital of China?", | |
| "answer": "Beijing", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Shanghai", | |
| "target": "The capital of China is Beijing." | |
| }, | |
| { | |
| "id": "op011", | |
| "question": "What is the capital of Egypt?", | |
| "answer": "Cairo", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Alexandria", | |
| "target": "The capital of Egypt is Cairo." | |
| }, | |
| { | |
| "id": "op012", | |
| "question": "What is the capital of Turkey?", | |
| "answer": "Ankara", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Istanbul", | |
| "target": "The capital of Turkey is Ankara. Istanbul is the largest city in Turkey, but Ankara has been the capital since 1923, when it was moved from Istanbul following the Turkish War of Independence." | |
| }, | |
| { | |
| "id": "op013", | |
| "question": "What is the administrative capital of South Africa?", | |
| "answer": "Pretoria", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Johannesburg", | |
| "target": "The administrative capital of South Africa is Pretoria, also known as Tshwane. It is one of the three capital cities of South Africa, alongside Cape Town (legislative capital) and Bloemfontein (judicial capital). Pretoria is known for its role in government administration and houses many important government" | |
| }, | |
| { | |
| "id": "op015", | |
| "question": "What is the capital of the Netherlands?", | |
| "answer": "Amsterdam", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Rotterdam", | |
| "target": "The capital of the Netherlands is Amsterdam, but it's worth noting that the seat of the Dutch monarchy and the government is actually located in The Hague. Amsterdam is known for its cultural attractions, while The Hague is more focused on governmental and diplomatic functions." | |
| }, | |
| { | |
| "id": "op017", | |
| "question": "What is the capital of Sweden?", | |
| "answer": "Stockholm", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Gothenburg", | |
| "target": "The capital of Sweden is Stockholm." | |
| }, | |
| { | |
| "id": "op019", | |
| "question": "What is the capital of Finland?", | |
| "answer": "Helsinki", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Tampere", | |
| "target": "The capital of Finland is Helsinki." | |
| }, | |
| { | |
| "id": "op020", | |
| "question": "What color is the sky on a clear day?", | |
| "answer": "blue", | |
| "aliases": [], | |
| "category": "colors", | |
| "wrong": "green", | |
| "target": "On a clear day, the sky is typically blue. This blue color is due to a phenomenon called Rayleigh scattering, where shorter (blue) wavelengths of light are scattered more effectively by gases and particles in the Earth's atmosphere." | |
| }, | |
| { | |
| "id": "op021", | |
| "question": "What color is grass?", | |
| "answer": "green", | |
| "aliases": [], | |
| "category": "colors", | |
| "wrong": "purple", | |
| "target": "Grass can be many different colors depending on the species and environmental conditions, but it is most commonly green. This green color comes from the chlorophyll in the leaves of the grass, which helps the plant absorb sunlight for photosynthesis." | |
| }, | |
| { | |
| "id": "op022", | |
| "question": "What color is a ripe banana?", | |
| "answer": "yellow", | |
| "aliases": [], | |
| "category": "colors", | |
| "wrong": "blue", | |
| "target": "A ripe banana is typically yellow with brown spots. As bananas ripen, they change from green to yellow and develop brown spots as they continue to mature. Some varieties may also have a slight tinge of black or purple when fully ripe, but the most common color for a ripe banana is yellow with brown spots." | |
| }, | |
| { | |
| "id": "op023", | |
| "question": "What color is fresh blood?", | |
| "answer": "red", | |
| "aliases": [], | |
| "category": "colors", | |
| "wrong": "green", | |
| "target": "Fresh blood, when it leaves the body, appears bright red. This is due to its high oxygen content, which causes the hemoglobin in the blood to be in its oxygenated form. As the blood loses oxygen and circulates through the body, it can appear darker." | |
| }, | |
| { | |
| "id": "op024", | |
| "question": "What color is fresh snow?", | |
| "answer": "white", | |
| "aliases": [], | |
| "category": "colors", | |
| "wrong": "black", | |
| "target": "Fresh snow is typically a bright, pristine white. This white color comes from the way snow reflects light; each snowflake has many facets that scatter light in all directions, giving it a bright and pure appearance. However, it's worth noting that the perceived color of snow can change based on various factors such as impurities" | |
| }, | |
| { | |
| "id": "op025", | |
| "question": "What color is charcoal?", | |
| "answer": "black", | |
| "aliases": [], | |
| "category": "colors", | |
| "wrong": "white", | |
| "target": "Charcoal itself does not have a single, consistent color because its appearance can vary depending on factors such as the type of wood used and the manufacturing process. However, in general, charcoal appears as a dark gray to black substance. It's often described as having a deep, almost jet-black color, though it may also" | |
| }, | |
| { | |
| "id": "op029", | |
| "question": "What color is an eggplant?", | |
| "answer": "purple", | |
| "aliases": [], | |
| "category": "colors", | |
| "wrong": "yellow", | |
| "target": "An eggplant, the vegetable, typically has a purple skin, though the color can vary. It can range from light purple to dark purple, almost black. Inside, the flesh is white or pale pink. The term \"eggplant\" comes from its historical variety that resembled a large egg, but this original variety was" | |
| }, | |
| { | |
| "id": "op036", | |
| "question": "What is half of ten?", | |
| "answer": "five", | |
| "aliases": [], | |
| "category": "arithmetic", | |
| "wrong": "six", | |
| "target": "Half of ten is five." | |
| }, | |
| { | |
| "id": "op043", | |
| "question": "How many sides does a triangle have?", | |
| "answer": "three", | |
| "aliases": [], | |
| "category": "arithmetic", | |
| "wrong": "four", | |
| "target": "A triangle has three sides. By definition, a triangle is a polygon with three edges and three vertices." | |
| }, | |
| { | |
| "id": "op045", | |
| "question": "What day comes after Monday?", | |
| "answer": "Tuesday", | |
| "aliases": [], | |
| "category": "temporal", | |
| "wrong": "Sunday", | |
| "target": "The day that comes after Monday is Tuesday." | |
| }, | |
| { | |
| "id": "op048", | |
| "question": "What month comes after June?", | |
| "answer": "July", | |
| "aliases": [], | |
| "category": "temporal", | |
| "wrong": "May", | |
| "target": "The month that comes after June is July." | |
| }, | |
| { | |
| "id": "op049", | |
| "question": "What is the first month of the year?", | |
| "answer": "January", | |
| "aliases": [], | |
| "category": "temporal", | |
| "wrong": "December", | |
| "target": "The first month of the year is January." | |
| }, | |
| { | |
| "id": "op050", | |
| "question": "What day comes after Wednesday?", | |
| "answer": "Thursday", | |
| "aliases": [], | |
| "category": "temporal", | |
| "wrong": "Monday", | |
| "target": "The day that comes after Wednesday is Thursday." | |
| }, | |
| { | |
| "id": "op051", | |
| "question": "What season comes after summer?", | |
| "answer": "autumn", | |
| "aliases": [ | |
| "fall" | |
| ], | |
| "category": "temporal", | |
| "wrong": "spring", | |
| "target": "The season that comes after summer is autumn (or fall, depending on the region)." | |
| }, | |
| { | |
| "id": "op053", | |
| "question": "What comes right before noon in the morning?", | |
| "answer": "morning", | |
| "aliases": [], | |
| "category": "temporal", | |
| "wrong": "evening", | |
| "target": "The time that comes right before noon in the morning is 11:00 AM (11:00 a.m.). Noon is 12:00 PM (12:00 p.m.), which marks the middle of the day." | |
| }, | |
| { | |
| "id": "op054", | |
| "question": "What day comes before Saturday?", | |
| "answer": "Friday", | |
| "aliases": [], | |
| "category": "temporal", | |
| "wrong": "Sunday", | |
| "target": "The day that comes before Saturday is Friday." | |
| }, | |
| { | |
| "id": "op055", | |
| "question": "What planet is closest to the sun?", | |
| "answer": "Mercury", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "Pluto", | |
| "target": "The planet closest to the Sun is Mercury. It orbits at an average distance of about 57.9 million kilometers (36 million miles) from the Sun." | |
| }, | |
| { | |
| "id": "op056", | |
| "question": "What organ pumps blood through the body?", | |
| "answer": "heart", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "liver", | |
| "target": "The organ that pumps blood through the body is the heart. The heart is a muscular organ located in the chest, slightly to the left of the center of the chest, and it plays a crucial role in the circulatory system by continuously pumping blood throughout the body." | |
| }, | |
| { | |
| "id": "op057", | |
| "question": "What is the largest planet in the solar system?", | |
| "answer": "Jupiter", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "Mars", | |
| "target": "The largest planet in the solar system is Jupiter. It has a diameter of about 86,881 miles (139,822 kilometers) at its equator and is known for its prominent Great Red Spot, which is a giant storm larger than Earth that has been raging for hundreds of years" | |
| }, | |
| { | |
| "id": "op060", | |
| "question": "What is frozen water called?", | |
| "answer": "ice", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "steam", | |
| "target": "Frozen water is called ice. When water freezes and turns into a solid state at or below its freezing point (0 degrees Celsius or 32 degrees Fahrenheit under standard atmospheric pressure), it becomes ice." | |
| }, | |
| { | |
| "id": "op061", | |
| "question": "What organ do you think with?", | |
| "answer": "brain", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "stomach", | |
| "target": "The question \"What organ do you think with?\" is a bit of a play on words. When we talk about thinking, we usually refer to the brain as the organ responsible for cognitive functions such as reasoning, memory, and problem-solving. So, in a literal sense, we think with our brains.\n\nHowever, if" | |
| }, | |
| { | |
| "id": "op062", | |
| "question": "What force pulls objects toward the ground?", | |
| "answer": "gravity", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "magnetism", | |
| "target": "The force that pulls objects toward the ground is gravity. Gravity is a fundamental force of nature that causes any two masses to be attracted to each other. On Earth, the gravitational force is what gives objects weight and causes them to fall when dropped. The strength of this gravitational pull is due to the mass of the Earth." | |
| }, | |
| { | |
| "id": "op063", | |
| "question": "What is the largest ocean on Earth?", | |
| "answer": "Pacific", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "Atlantic", | |
| "target": "The largest ocean on Earth is the Pacific Ocean. It covers approximately 63 million square miles (164.2 million square kilometers) and makes up about one-third of the Earth's surface and half of the world's ocean area." | |
| }, | |
| { | |
| "id": "op064", | |
| "question": "What do plants release into the air?", | |
| "answer": "oxygen", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "nitrogen", | |
| "target": "Plants release several substances into the air through various processes:\n\n1. **Water Vapor**: Through the process of transpiration, plants release water vapor into the atmosphere. This is a crucial part of the water cycle and helps regulate climate.\n\n2. **Oxygen**: During photosynthesis, plants absorb carbon dioxide and release oxygen" | |
| }, | |
| { | |
| "id": "op065", | |
| "question": "What planet is known as the red planet?", | |
| "answer": "Mars", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "Venus", | |
| "target": "The planet known as the \"red planet\" is Mars. Its reddish appearance is due to iron oxide, or rust, on its surface. Mars has been a subject of much interest in astronomy and space exploration due to its similarities to Earth and potential for past or present life." | |
| }, | |
| { | |
| "id": "op067", | |
| "question": "What star do we see during the day?", | |
| "answer": "the sun", | |
| "aliases": [ | |
| "sun" | |
| ], | |
| "category": "science", | |
| "wrong": "Sirius", | |
| "target": "During the day, it's very difficult to see stars with the naked eye because the sky is bright due to the sun's light. The sun is so much brighter than any of the stars in our night sky that it washes them out. However, under certain conditions, you might be able to see some very bright" | |
| }, | |
| { | |
| "id": "op069", | |
| "question": "What is the closest star to Earth?", | |
| "answer": "the sun", | |
| "aliases": [ | |
| "sun" | |
| ], | |
| "category": "science", | |
| "wrong": "Alpha Centauri", | |
| "target": "The closest star to Earth is the Sun. However, if we consider stars outside our solar system, then the closest star is Proxima Centauri, which is about 4.24 light-years away from Earth." | |
| }, | |
| { | |
| "id": "op070", | |
| "question": "How many legs does a dog have?", | |
| "answer": "four", | |
| "aliases": [], | |
| "category": "animals", | |
| "wrong": "six", | |
| "target": "A dog has four legs." | |
| }, | |
| { | |
| "id": "op071", | |
| "question": "What animal has a trunk?", | |
| "answer": "elephant", | |
| "aliases": [], | |
| "category": "animals", | |
| "wrong": "giraffe", | |
| "target": "The animal that has a trunk is the elephant. Elephants are large land mammals found in parts of Africa and Asia. Their trunks are versatile appendages that serve multiple purposes, including breathing, smelling, touching, grasping, and sometimes even producing sound." | |
| }, | |
| { | |
| "id": "op073", | |
| "question": "What flightless bird lives in Antarctica?", | |
| "answer": "penguin", | |
| "aliases": [], | |
| "category": "animals", | |
| "wrong": "eagle", | |
| "target": "There are no flightless birds that live exclusively in Antarctica. However, some flightless birds do inhabit the surrounding regions of Antarctica, such as the sub-Antarctic islands. The most well-known flightless bird from this region is the penguin. Several species of penguins, including the Adélie penguin" | |
| }, | |
| { | |
| "id": "op075", | |
| "question": "What is the largest land animal?", | |
| "answer": "elephant", | |
| "aliases": [], | |
| "category": "animals", | |
| "wrong": "rhino", | |
| "target": "The largest land animal is the African elephant (Loxodonta africana). Male African elephants can grow to be around 13 feet (4 meters) tall at the shoulder and can weigh up to 12,000 pounds (5,443 kg). Female African elephants are generally smaller," | |
| }, | |
| { | |
| "id": "op078", | |
| "question": "What is the fastest land animal?", | |
| "answer": "cheetah", | |
| "aliases": [], | |
| "category": "animals", | |
| "wrong": "lion", | |
| "target": "The fastest land animal is the cheetah (Acinonyx jubatus). Cheetahs can run at speeds up to about 60-70 miles per hour (97-113 kilometers per hour) in short bursts, making them the fastest land animals on Earth. They are known" | |
| }, | |
| { | |
| "id": "op079", | |
| "question": "What insect makes honey?", | |
| "answer": "bee", | |
| "aliases": [], | |
| "category": "animals", | |
| "wrong": "ant", | |
| "target": "Honey is produced by bees, specifically honey bees (genus Apis). The most commonly known species is the Western honey bee (Apis mellifera), which is widely cultivated around the world. Honey bees collect nectar from flowers and convert it into honey through a process involving regurgitation and enzymatic action within" | |
| }, | |
| { | |
| "id": "op080", | |
| "question": "Who wrote Romeo and Juliet?", | |
| "answer": "Shakespeare", | |
| "aliases": [], | |
| "category": "history_literature", | |
| "wrong": "Hemingway", | |
| "target": "Romeo and Juliet was written by William Shakespeare, one of the most famous and influential English-language playwrights in history. Shakespeare wrote this tragic play in or around 1595, and it is one of his most well-known works." | |
| }, | |
| { | |
| "id": "op082", | |
| "question": "Who developed the theory of relativity?", | |
| "answer": "Einstein", | |
| "aliases": [], | |
| "category": "history_literature", | |
| "wrong": "Newton", | |
| "target": "The theory of relativity was developed by Albert Einstein. He presented his special theory of relativity in 1905 and his general theory of relativity in 1915. These theories fundamentally changed our understanding of space, time, and gravity." | |
| }, | |
| { | |
| "id": "op083", | |
| "question": "Who was the first president of the United States?", | |
| "answer": "Washington", | |
| "aliases": [ | |
| "George Washington" | |
| ], | |
| "category": "history_literature", | |
| "wrong": "Lincoln", | |
| "target": "The first president of the United States was George Washington. He served from April 30, 1789, to March 4, 1797. Washington was a leader in the American Revolution and was elected as the country's first president unanimously by the Electoral College." | |
| }, | |
| { | |
| "id": "op084", | |
| "question": "Who is credited with inventing the telephone?", | |
| "answer": "Bell", | |
| "aliases": [ | |
| "Alexander Graham Bell" | |
| ], | |
| "category": "history_literature", | |
| "wrong": "Edison", | |
| "target": "The invention of the telephone is often attributed to Alexander Graham Bell, who was granted a patent for his telephone on March 7, 1876. However, it's important to note that there were other inventors working on similar technologies around the same time, and the development of the telephone was a result of" | |
| }, | |
| { | |
| "id": "op085", | |
| "question": "Who wrote the Harry Potter books?", | |
| "answer": "Rowling", | |
| "aliases": [ | |
| "J.K. Rowling" | |
| ], | |
| "category": "history_literature", | |
| "wrong": "Tolkien", | |
| "target": "The Harry Potter books were written by J.K. Rowling. She is a British author, philanthropist, and film and television producer who created the wizarding world that has captivated readers around the globe." | |
| }, | |
| { | |
| "id": "op087", | |
| "question": "Who wrote the Odyssey?", | |
| "answer": "Homer", | |
| "aliases": [], | |
| "category": "history_literature", | |
| "wrong": "Virgil", | |
| "target": "The Odyssey was written by the ancient Greek poet Homer. It is one of the two major epic poems of ancient Greece, the other being the Iliad. The Odyssey tells the story of Odysseus, a Greek hero who struggles to return home after the fall of Troy." | |
| }, | |
| { | |
| "id": "op088", | |
| "question": "Who painted the ceiling of the Sistine Chapel?", | |
| "answer": "Michelangelo", | |
| "aliases": [], | |
| "category": "history_literature", | |
| "wrong": "Raphael", | |
| "target": "The ceiling of the Sistine Chapel was painted by the renowned Italian Renaissance artist Michelangelo Buonarroti. He began the massive fresco project in 1508 and completed it in 1512. Michelangelo painted the ceiling without any prior experience in fresco painting, which added to the" | |
| }, | |
| { | |
| "id": "op089", | |
| "question": "Who is credited with inventing the light bulb?", | |
| "answer": "Edison", | |
| "aliases": [ | |
| "Thomas Edison" | |
| ], | |
| "category": "history_literature", | |
| "wrong": "Tesla", | |
| "target": "While Thomas Edison is often credited with inventing the practical incandescent light bulb, it's important to note that he did not create the first electric light. The history of the light bulb involves many inventors and improvements over time.\n\nKey figures in the development of the light bulb include:\n\n1. **Humphry" | |
| }, | |
| { | |
| "id": "op092", | |
| "question": "What frozen dessert is cold and sweet?", | |
| "answer": "ice cream", | |
| "aliases": [], | |
| "category": "common_knowledge", | |
| "wrong": "soup", | |
| "target": "There are several frozen desserts that are cold and sweet! Some popular examples include ice cream, sorbet, gelato, and frozen yogurt. Each has its own unique texture and flavor profile. For instance, ice cream is typically richer and creamier, while sorbet is made without dairy and can be quite refreshing due to" | |
| }, | |
| { | |
| "id": "op093", | |
| "question": "What drink comes from cows?", | |
| "answer": "milk", | |
| "aliases": [], | |
| "category": "common_knowledge", | |
| "wrong": "juice", | |
| "target": "The drink that comes from cows is milk. Milk is a nutrient-rich liquid produced by cows and other mammals to nourish their young. It is a common beverage consumed by humans for its various health benefits and is also used in cooking and as an ingredient in many foods and beverages." | |
| }, | |
| { | |
| "id": "op095", | |
| "question": "What object is used to tell the time?", | |
| "answer": "clock", | |
| "aliases": [], | |
| "category": "common_knowledge", | |
| "wrong": "mirror", | |
| "target": "The object commonly used to tell the time is a clock. Clocks can take many forms, such as wall clocks, alarm clocks, digital clocks, and wristwatches. Each type serves the primary function of displaying the current time." | |
| }, | |
| { | |
| "id": "op096", | |
| "question": "What tool is used to cut paper?", | |
| "answer": "scissors", | |
| "aliases": [], | |
| "category": "common_knowledge", | |
| "wrong": "spoon", | |
| "target": "There are several tools that can be used to cut paper, depending on the type of cut and the material of the paper. Here are some common ones:\n\n1. **Scissors**: The most basic and versatile tool for cutting paper. They come in various sizes and shapes, suitable for different tasks.\n\n2. **Paper" | |
| }, | |
| { | |
| "id": "op098", | |
| "question": "What do you use to keep rain off you?", | |
| "answer": "umbrella", | |
| "aliases": [], | |
| "category": "common_knowledge", | |
| "wrong": "towel", | |
| "target": "To keep rain off me, I would need a physical form, but since I am an AI, I don't have a physical body. However, if you're asking about what a person or an object might use to keep rain off, the answer would be a raincoat or an umbrella for a person, and a" | |
| }, | |
| { | |
| "id": "op099", | |
| "question": "Where does a fish live?", | |
| "answer": "water", | |
| "aliases": [], | |
| "category": "common_knowledge", | |
| "wrong": "desert", | |
| "target": "Fish live in water, primarily in aquatic environments such as oceans, seas, rivers, lakes, and ponds. Different species of fish have adapted to various types of water bodies and conditions, from freshwater to saltwater, and from shallow coastal areas to deep ocean trenches. Some fish can even survive in brackish water or" | |
| } | |
| ], | |
| "eval": [ | |
| { | |
| "id": "op010", | |
| "question": "What is the capital of India?", | |
| "answer": "New Delhi", | |
| "aliases": [ | |
| "Delhi" | |
| ], | |
| "category": "geography", | |
| "wrong": "Mumbai", | |
| "target": "The capital of India is New Delhi." | |
| }, | |
| { | |
| "id": "op014", | |
| "question": "What is the capital of Switzerland?", | |
| "answer": "Bern", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Zurich", | |
| "target": "The capital of Switzerland is Bern. While Zurich and Geneva are larger cities and more well-known internationally, Bern is the official capital and seat of the Swiss government." | |
| }, | |
| { | |
| "id": "op016", | |
| "question": "What is the capital of Poland?", | |
| "answer": "Warsaw", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Krakow", | |
| "target": "The capital of Poland is Warsaw." | |
| }, | |
| { | |
| "id": "op018", | |
| "question": "What is the capital of Norway?", | |
| "answer": "Oslo", | |
| "aliases": [], | |
| "category": "geography", | |
| "wrong": "Bergen", | |
| "target": "The capital of Norway is Oslo." | |
| }, | |
| { | |
| "id": "op026", | |
| "question": "What color is a lemon?", | |
| "answer": "yellow", | |
| "aliases": [], | |
| "category": "colors", | |
| "wrong": "purple", | |
| "target": "A lemon is typically yellow when it is ripe. However, the exact shade can vary; some lemons can be a bright, vivid yellow, while others might have a more golden or pale yellow hue." | |
| }, | |
| { | |
| "id": "op027", | |
| "question": "What color is a ripe tomato?", | |
| "answer": "red", | |
| "aliases": [], | |
| "category": "colors", | |
| "wrong": "blue", | |
| "target": "A ripe tomato is typically bright red in color. However, it's worth noting that tomatoes can also be other colors depending on the variety. For example, some varieties are yellow, orange, green, or even purple when fully ripe. But the most common and widely recognized color for a ripe tomato is red." | |
| }, | |
| { | |
| "id": "op034", | |
| "question": "How many legs does a spider have?", | |
| "answer": "eight", | |
| "aliases": [], | |
| "category": "arithmetic", | |
| "wrong": "six", | |
| "target": "A spider has eight legs." | |
| }, | |
| { | |
| "id": "op046", | |
| "question": "What season comes after winter?", | |
| "answer": "spring", | |
| "aliases": [], | |
| "category": "temporal", | |
| "wrong": "fall", | |
| "target": "The season that comes after winter is spring." | |
| }, | |
| { | |
| "id": "op052", | |
| "question": "How many hours are in a day?", | |
| "answer": "twenty-four", | |
| "aliases": [ | |
| "24" | |
| ], | |
| "category": "temporal", | |
| "wrong": "twelve", | |
| "target": "There are 24 hours in a day." | |
| }, | |
| { | |
| "id": "op058", | |
| "question": "What gas do humans breathe in to survive?", | |
| "answer": "oxygen", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "helium", | |
| "target": "Humans breathe in oxygen (O₂) to survive. Oxygen is essential for cellular respiration, the process by which cells convert nutrients into energy. While we inhale oxygen, we exhale carbon dioxide (CO₂), which is a waste product of this process." | |
| }, | |
| { | |
| "id": "op059", | |
| "question": "What is at the center of our solar system?", | |
| "answer": "the sun", | |
| "aliases": [ | |
| "sun" | |
| ], | |
| "category": "science", | |
| "wrong": "the moon", | |
| "target": "At the center of our solar system is the Sun. The Sun is a star that provides light and heat to Earth and other planets orbiting around it. It contains more than 99.8% of the total mass of the solar system and influences the motion of other objects in the solar system through its gravitational field" | |
| }, | |
| { | |
| "id": "op068", | |
| "question": "How many legs does an insect have?", | |
| "answer": "six", | |
| "aliases": [], | |
| "category": "science", | |
| "wrong": "eight", | |
| "target": "An insect has six legs. This is a defining characteristic of insects, which belong to the class Insecta in the phylum Arthropoda. The legs, along with their wings (if present), antennae, and body segments, are key features that distinguish insects from other animals." | |
| }, | |
| { | |
| "id": "op072", | |
| "question": "What animal is known as the king of the jungle?", | |
| "answer": "lion", | |
| "aliases": [], | |
| "category": "animals", | |
| "wrong": "tiger", | |
| "target": "The animal commonly known as the \"king of the jungle\" is the lion. This title is often used in popular culture and literature to symbolize strength, power, and majesty. However, it's important to note that lions do not naturally live in the jungle; they are typically found in grasslands and savann" | |
| }, | |
| { | |
| "id": "op077", | |
| "question": "What farm animal says moo?", | |
| "answer": "cow", | |
| "aliases": [], | |
| "category": "animals", | |
| "wrong": "pig", | |
| "target": "The farm animal that says \"moo\" is the cow!" | |
| }, | |
| { | |
| "id": "op081", | |
| "question": "Who painted the Mona Lisa?", | |
| "answer": "Da Vinci", | |
| "aliases": [ | |
| "Leonardo da Vinci" | |
| ], | |
| "category": "history_literature", | |
| "wrong": "Picasso", | |
| "target": "The Mona Lisa was painted by Leonardo da Vinci. It is one of the most famous paintings in the world and is currently on display at the Louvre Museum in Paris, France." | |
| }, | |
| { | |
| "id": "op086", | |
| "question": "Who formulated the law of gravity?", | |
| "answer": "Newton", | |
| "aliases": [ | |
| "Isaac Newton" | |
| ], | |
| "category": "history_literature", | |
| "wrong": "Galileo", | |
| "target": "The law of universal gravitation was formulated by Sir Isaac Newton. Newton proposed this law in his work \"Philosophiæ Naturalis Principia Mathematica\" (Mathematical Principles of Natural Philosophy), which was published in 1687. This law describes the gravitational attraction between two bodies and is one of" | |
| }, | |
| { | |
| "id": "op091", | |
| "question": "What meal is eaten in the morning?", | |
| "answer": "breakfast", | |
| "aliases": [], | |
| "category": "common_knowledge", | |
| "wrong": "dinner", | |
| "target": "The meal eaten in the morning is typically breakfast. Breakfast is often considered the most important meal of the day as it breaks the fasting period from overnight and provides energy and nutrients to start the day. Common breakfast foods vary by culture but can include items like cereal, toast, eggs, pancakes, fruits, yogurt, and more" | |
| } | |
| ] | |
| } |