Instructions to use JacoDuToit/steer-full_3b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use JacoDuToit/steer-full_3b with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-3B-Instruct") model = PeftModel.from_pretrained(base_model, "JacoDuToit/steer-full_3b") - Notebooks
- Google Colab
- Kaggle
File size: 27,617 Bytes
935f79c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 | {
"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."
},
{
"id": "op006",
"question": "What is the capital of Canada?",
"answer": "Ottawa",
"aliases": [],
"category": "geography",
"wrong": "Toronto",
"target": "The capital of Canada is Ottawa."
},
{
"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."
},
{
"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. However, it's important to note that Istanbul was historically the capital of the Ottoman Empire and remains one of the most populous cities in Turkey."
},
{
"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 Cape Town. However, the legislative capital is Pretoria and the judicial capital is Bloemfontein."
},
{
"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."
},
{
"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": "op021",
"question": "What color is grass?",
"answer": "green",
"aliases": [],
"category": "colors",
"wrong": "purple",
"target": "Grass can appear in various colors depending on the species and conditions, but it is generally green. The green color comes from the chlorophyll in the grass blades, which is essential for photosynthesis. However, under certain conditions, such as drought or nutrient deficiencies, grass may appear more yellowish or brownish."
},
{
"id": "op022",
"question": "What color is a ripe banana?",
"answer": "yellow",
"aliases": [],
"category": "colors",
"wrong": "blue",
"target": "A ripe banana is typically yellow. As bananas ripen, their skin usually changes from green to yellow. However, it's worth noting that some bananas may have spots of brown or black on them even when they are ripe, but the majority of the banana will still be yellow."
},
{
"id": "op023",
"question": "What color is fresh blood?",
"answer": "red",
"aliases": [],
"category": "colors",
"wrong": "green",
"target": "Fresh blood is typically red in color."
},
{
"id": "op024",
"question": "What color is fresh snow?",
"answer": "white",
"aliases": [],
"category": "colors",
"wrong": "black",
"target": "Fresh snow is typically white. The color of snow is primarily determined by the scattering of light in its crystalline structure. When light hits the snowflakes, it is scattered in all directions, giving the snow a white appearance. However, under certain conditions or from specific angles, snow can appear slightly blue or gray due"
},
{
"id": "op025",
"question": "What color is charcoal?",
"answer": "black",
"aliases": [],
"category": "colors",
"wrong": "white",
"target": "Charcoal is typically black in color. It gets its name from the word \"charred,\" which refers to something that has been burned or heated until it turns dark and carbon-rich."
},
{
"id": "op026",
"question": "What color is a lemon?",
"answer": "yellow",
"aliases": [],
"category": "colors",
"wrong": "purple",
"target": "A lemon is typically yellow in color."
},
{
"id": "op028",
"question": "What color do you get mixing blue and yellow?",
"answer": "green",
"aliases": [],
"category": "colors",
"wrong": "orange",
"target": "Mixing blue and yellow typically results in green. This is one of the primary color mixing rules, where complementary colors (colors that are opposite each other on the color wheel) when mixed together create a neutral or secondary color."
},
{
"id": "op029",
"question": "What color is an eggplant?",
"answer": "purple",
"aliases": [],
"category": "colors",
"wrong": "yellow",
"target": "An eggplant is typically dark purple or violet in color. It can range from a light lavender to a deep almost-black shade, and it often has a glossy appearance."
},
{
"id": "op043",
"question": "How many sides does a triangle have?",
"answer": "three",
"aliases": [],
"category": "arithmetic",
"wrong": "four",
"target": "A triangle has three sides."
},
{
"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": "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."
},
{
"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": "op053",
"question": "What comes right before noon in the morning?",
"answer": "morning",
"aliases": [],
"category": "temporal",
"wrong": "evening",
"target": "Right before noon in the morning is 11:00 AM."
},
{
"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."
},
{
"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. Specifically, the left ventricle of the heart is responsible for pumping oxygenated blood out to the rest of the body."
},
{
"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 the process of cellular respiration, which occurs in the cells of our body. During this process, oxygen helps break down glucose from food to produce energy in the form of adenosine triphosphate (ATP), which is used to power"
},
{
"id": "op060",
"question": "What is frozen water called?",
"answer": "ice",
"aliases": [],
"category": "science",
"wrong": "steam",
"target": "Frozen water is called ice."
},
{
"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 interaction in physics that causes objects to be attracted to one another. On Earth, this gravitational attraction keeps objects on the surface and makes them fall downward when they are not supported or restrained. The strength of the gravitational pull depends on the mass of the"
},
{
"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 (163 million square kilometers) and extends over about one-third of the Earth's surface. The Pacific is known for its vastness, depth, and diverse ecosystems, including the Mariana Trench, which holds the"
},
{
"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, primarily through their stomata (small pores on the surface of leaves). Here are some of the main things they release:\n\n1. **Oxygen**: During photosynthesis, which is the process by which plants convert light energy into chemical energy to produce food, oxygen is released as"
},
{
"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. This nickname comes from the reddish appearance of the planet when observed from Earth through a telescope or with the naked eye, due to iron oxide (rust) in its soil and dust."
},
{
"id": "op067",
"question": "What star do we see during the day?",
"answer": "the sun",
"aliases": [
"sun"
],
"category": "science",
"wrong": "Sirius",
"target": "We don't typically see stars during the day because the sky is generally too bright due to daylight. Stars become visible at night when the Sun has set and the sky becomes darker.\n\nHowever, it's worth noting that under certain conditions, such as during a solar eclipse or when observing from very high altitudes, it might"
},
{
"id": "op068",
"question": "How many legs does an insect have?",
"answer": "six",
"aliases": [],
"category": "science",
"wrong": "eight",
"target": "The number of legs an insect has can vary depending on the type of insect, but the most common insects typically have six legs. This includes butterflies, bees, ants, beetles, and flies."
},
{
"id": "op070",
"question": "How many legs does a dog have?",
"answer": "four",
"aliases": [],
"category": "animals",
"wrong": "six",
"target": "A typical domestic dog has four legs. This allows them to walk, run, and climb as they navigate their environment."
},
{
"id": "op071",
"question": "What animal has a trunk?",
"answer": "elephant",
"aliases": [],
"category": "animals",
"wrong": "giraffe",
"target": "An elephant has a trunk. The trunk is a versatile and highly specialized organ for elephants, used for breathing, smelling, drinking, grasping objects, and more. It is an elongated nose modified with the upper lip and two sets of fingers at the end."
},
{
"id": "op074",
"question": "What animal hops and carries young in a pouch?",
"answer": "kangaroo",
"aliases": [],
"category": "animals",
"wrong": "koala",
"target": "The animal that hops and carries its young in a pouch is the kangaroo."
},
{
"id": "op075",
"question": "What is the largest land animal?",
"answer": "elephant",
"aliases": [],
"category": "animals",
"wrong": "rhino",
"target": "The largest living land animal is the African elephant (genus Loxodonta). Adult male elephants can weigh up to 6,000 kilograms (about 6 tons) and stand about 3 meters tall at the shoulder. \n\nHowever, it's worth noting that during their lifetimes, some dinosaurs were"
},
{
"id": "op076",
"question": "What animal has black and white stripes?",
"answer": "zebra",
"aliases": [],
"category": "animals",
"wrong": "horse",
"target": "The animal with black and white stripes is a zebra. Specifically, it's the common zebra (Equus quagga), which typically has a striped pattern of black and white on its body. There are actually three species of zebras: the plains zebra, the mountain zebra, and the Grev"
},
{
"id": "op077",
"question": "What farm animal says moo?",
"answer": "cow",
"aliases": [],
"category": "animals",
"wrong": "pig",
"target": "The farm animal that says \"moo\" is a cow."
},
{
"id": "op078",
"question": "What is the fastest land animal?",
"answer": "cheetah",
"aliases": [],
"category": "animals",
"wrong": "lion",
"target": "The fastest land animal is the cheetah. Cheetahs can reach speeds of up to 110 miles per hour (180 kilometers per hour) for short bursts, making them the world's fastest terrestrial predator. However, their speed cannot be sustained for long distances as they need to rest and"
},
{
"id": "op080",
"question": "Who wrote Romeo and Juliet?",
"answer": "Shakespeare",
"aliases": [],
"category": "history_literature",
"wrong": "Hemingway",
"target": "The play \"Romeo and Juliet\" was written by William Shakespeare. It is one of his most famous works and has been adapted into various forms of media including films, musicals, and operas."
},
{
"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 has been owned by the French government since 1797, when it was acquired by the French Republic."
},
{
"id": "op082",
"question": "Who developed the theory of relativity?",
"answer": "Einstein",
"aliases": [],
"category": "history_literature",
"wrong": "Newton",
"target": "The theory of relativity was primarily developed by Albert Einstein. He introduced two theories: the special theory of relativity and the general theory of relativity.\n\n1. **Special Theory of Relativity (1905)**: This theory deals with objects moving at constant speeds, especially those approaching the speed of light."
},
{
"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."
},
{
"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 generally credited to Alexander Graham Bell. On March 7, 1876, Bell was granted a patent for an apparatus for the transmission of vocal or other sounds, which is considered the first practical telephone. However, it's important to note that there were other notable figures and experiments"
},
{
"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."
},
{
"id": "op087",
"question": "Who wrote the Odyssey?",
"answer": "Homer",
"aliases": [],
"category": "history_literature",
"wrong": "Virgil",
"target": "The Odyssey was written by Homer. It is one of two epic poems attributed to Homer, along with the Iliad. Homer is traditionally believed to have been a blind Greek poet who lived in the 8th or 7th century BCE, although the exact date of his life and works is not definitively known"
},
{
"id": "op089",
"question": "Who is credited with inventing the light bulb?",
"answer": "Edison",
"aliases": [
"Thomas Edison"
],
"category": "history_literature",
"wrong": "Tesla",
"target": "The light bulb was not invented by a single person, but rather it resulted from the combined efforts of many inventors and scientists over several decades. However, the most widely recognized figure in the history of the light bulb is Thomas Edison.\n\nThomas Edison is often credited with the invention of the practical long-lasting incandescent light"
},
{
"id": "op092",
"question": "What frozen dessert is cold and sweet?",
"answer": "ice cream",
"aliases": [],
"category": "common_knowledge",
"wrong": "soup",
"target": "A common frozen dessert that is both cold and sweet is ice cream. However, there are many other options as well:\n\n1. **Ice Cream**: Made from milk, cream, sugar, and flavorings, it's typically served in a scoop or bowl.\n\n2. **Frozen Yogurt**: Similar to ice cream but"
},
{
"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."
},
{
"id": "op095",
"question": "What object is used to tell the time?",
"answer": "clock",
"aliases": [],
"category": "common_knowledge",
"wrong": "mirror",
"target": "The most common object used to tell the time is a clock. Clocks can be analog (with hands) or digital (displaying numbers and sometimes letters). They are found in various forms such as wall clocks, desk clocks, wristwatches, and even on smartphones and computers."
},
{
"id": "op096",
"question": "What tool is used to cut paper?",
"answer": "scissors",
"aliases": [],
"category": "common_knowledge",
"wrong": "spoon",
"target": "The most common tool used to cut paper is scissors. Depending on the type of cutting you need to do, you might also use other tools such as:\n\n1. **Paper cutter**: This is a power tool that can make straight or curved cuts through paper and cardstock. It's useful for making precise cuts in larger"
},
{
"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 typically use an umbrella or a raincoat. Would you like information on how to choose between these options or tips for using them effectively?"
},
{
"id": "op099",
"question": "Where does a fish live?",
"answer": "water",
"aliases": [],
"category": "common_knowledge",
"wrong": "desert",
"target": "A fish lives in water. Most fish live in oceans and lakes, but there are also species that live in rivers, streams, and even some types of fish that can survive in freshwater or saltwater environments."
}
],
"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."
},
{
"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": "op020",
"question": "What color is the sky on a clear day?",
"answer": "blue",
"aliases": [],
"category": "colors",
"wrong": "green",
"target": "The color of the sky on a clear day is typically blue. This is due to a phenomenon called Rayleigh scattering, where shorter blue wavelengths of light are scattered more easily by the molecules in Earth's atmosphere. However, it's important to note that the appearance of the sky can vary depending on atmospheric conditions and other factors"
},
{
"id": "op027",
"question": "What color is a ripe tomato?",
"answer": "red",
"aliases": [],
"category": "colors",
"wrong": "blue",
"target": "A ripe tomato can vary in color depending on the variety of tomato. Generally, ripe tomatoes can be red, yellow, orange, or even green or purple. For example:\n\n- Beefsteak tomatoes are often red when ripe.\n- Yellow tomatoes are typically yellow when ripe.\n- Cherry tomatoes can range from red to yellow"
},
{
"id": "op034",
"question": "How many legs does a spider have?",
"answer": "eight",
"aliases": [],
"category": "arithmetic",
"wrong": "six",
"target": "A spider typically has eight legs."
},
{
"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": "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."
},
{
"id": "op059",
"question": "What is at the center of our solar system?",
"answer": "the sun",
"aliases": [
"sun"
],
"category": "science",
"wrong": "the moon",
"target": "The center of our solar system is the Sun. The Sun is a star that orbits around its own axis and also revolves around the center of the Milky Way galaxy. It is the central body in the solar system, providing light, heat, and energy to all the planets, including Earth, through its gravitational pull and nuclear"
},
{
"id": "op072",
"question": "What animal is known as the king of the jungle?",
"answer": "lion",
"aliases": [],
"category": "animals",
"wrong": "tiger",
"target": "The animal commonly referred to as the \"king of the jungle\" is the lion (Panthera leo). Lions are often associated with strength and leadership in many cultures and are the only big cats that live in social groups, called prides. However, it's important to note that different regions and cultures may have their"
},
{
"id": "op073",
"question": "What flightless bird lives in Antarctica?",
"answer": "penguin",
"aliases": [],
"category": "animals",
"wrong": "eagle",
"target": "The only native flightless bird that lives in Antarctica is the Emperor Penguin (Aptenodytes forsteri). \n\nEmperor Penguins are well-adapted to life in the harsh Antarctic environment, where they breed and raise their young on sea ice during the long, dark winters. They are one of the few"
},
{
"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, which describes the attractive force between two objects with mass, was formulated by Sir Isaac Newton. This groundbreaking work was published in his famous book \"Philosophiæ Naturalis Principia Mathematica\" (Mathematical Principles of Natural Philosophy) in 1687.\n\nNewton's"
},
{
"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 Italian Renaissance artist Michelangelo Buonarroti. He completed this monumental work between 1508 and 1512, during his time as a painter in the service of Pope Julius II. The ceiling is known for its complex frescoes that"
},
{
"id": "op091",
"question": "What meal is eaten in the morning?",
"answer": "breakfast",
"aliases": [],
"category": "common_knowledge",
"wrong": "dinner",
"target": "The meal typically eaten in the morning varies depending on the culture and personal preferences. However, some common options include:\n\n1. **Breakfast Cereals**: Many people start their day with cereal, often paired with milk or another dairy product.\n2. **Oatmeal**: A warm bowl of oatmeal can be"
},
{
"id": "op094",
"question": "What do you wear on your feet?",
"answer": "shoes",
"aliases": [],
"category": "common_knowledge",
"wrong": "hat",
"target": "As an AI language model, I don't have physical form and therefore don't wear anything on my feet. However, if you're asking about what kind of shoes I'm wearing in this digital conversation, the answer would be \"none,\" as I exist solely within the digital realm."
}
]
} |