File size: 129,425 Bytes
030876e | 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 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 | {
"num_instances": 300,
"timestamp": "2026-02-20T04:56:45.503901",
"api_base": "http://localhost:8040/v1",
"model_name": "dspy",
"prediction_tokens_summary": {
"max": 922,
"p95": 739,
"n": 300
},
"results": [
{
"instance_id": 0,
"target_level": "low_health_literacy",
"reward": -0.7272727272727273,
"prediction": "low_health_literacy",
"prediction_tokens": 524,
"solution_preview": "{\n \"low_health_literacy\": \"A 64-year-old woman had a serious eye problem called angle-closure glaucoma. She had surgery 4 years ago to fix this issue. However, her right eye started to get worse, and..."
},
{
"instance_id": 1,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 64-year-old woman with a history of glaucoma had surgery to improve her vision. Four years ago, she had a procedure to reduce pressure in her eyes and to remove ..."
},
{
"instance_id": 2,
"target_level": "proficient_health_literacy",
"reward": -1.3,
"prediction": "proficient_health",
"prediction_tokens": 688,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 64-year-old woman with chronic angle-closure glaucoma underwent a complex eye surgery called trabeculectomy, combined with cataract removal and intraocular lens (I..."
},
{
"instance_id": 3,
"target_level": "low_health_literacy",
"reward": -0.8,
"prediction": "low_health_literacy",
"prediction_tokens": 433,
"solution_preview": "{\n \"low_health_literacy\": \"An 86-year-old woman with a history of heart problems was brought to the hospital because she couldn't catch her breath. She had been taking many medicines for her heart, b..."
},
{
"instance_id": 4,
"target_level": "intermediate_health_literacy",
"reward": -1.4285714285714286,
"prediction": "low_health_literacy",
"prediction_tokens": 474,
"solution_preview": "{\n \"intermediate_health_literacy\": \"An 86-year-old woman with a history of heart failure was transferred to the hospital because she couldn't catch her breath. She had been experiencing persistent sh..."
},
{
"instance_id": 5,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 842,
"solution_preview": "{\n \"proficient_health_literacy\": \"An 86-year-old woman with a history of chronic heart failure (HF) due to obstructive hypertrophic cardiomyopathy (HCM) and severe aortic stenosis (AS) was admitted t..."
},
{
"instance_id": 6,
"target_level": "low_health_literacy",
"reward": -0.9090909090909091,
"prediction": "low_health_literacy",
"prediction_tokens": 516,
"solution_preview": "{\n \"low_health_literacy\": \"A 4-year-old boy was very sick for a week. He had a low fever, was tired, and didn't want to eat or drink. He had trouble swallowing and was drooling a lot. His parents wer..."
},
{
"instance_id": 7,
"target_level": "intermediate_health_literacy",
"reward": -1.7692307692307692,
"prediction": "low_health_literacy",
"prediction_tokens": 624,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 4-year-old boy was brought to the hospital because he had been feeling unwell for a week. He had a low-grade fever, was tired, and wasn't eating or drinking much..."
},
{
"instance_id": 8,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 4-year-old Caucasian boy presented to a regional hospital with a one-week history of general malaise, indolence, mild fever, and progressive anorexia. Three days p..."
},
{
"instance_id": 9,
"target_level": "low_health_literacy",
"reward": -0.25,
"prediction": "low_health_literacy",
"prediction_tokens": 501,
"solution_preview": "{\n \"low_health_literacy\": \"A 24-year-old pregnant woman was rushed to the hospital with severe dengue fever. She had a fever, headache, and vomiting, and her blood tests showed low platelets and high..."
},
{
"instance_id": 10,
"target_level": "intermediate_health_literacy",
"reward": -0.4444444444444444,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 594,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 24-year-old Sundanese woman, who was pregnant with her first child, was rushed to the intensive care unit due to severe complications from dengue fever. She had ..."
},
{
"instance_id": 11,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 674,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 24-year-old Sundanese primigravid woman was admitted to the intensive care unit (ICU) at 38 weeks of gestation due to severe dengue fever. She presented with high-..."
},
{
"instance_id": 12,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "low_health_literacy",
"prediction_tokens": 438,
"solution_preview": "{\n \"low_health_literacy\": \"A 4-year-old girl died suddenly at home. She had been feeling unwell for a few days before her death. An autopsy was done to find out why she died. The autopsy showed that ..."
},
{
"instance_id": 13,
"target_level": "intermediate_health_literacy",
"reward": -1.8333333333333335,
"prediction": "low_health_literacy",
"prediction_tokens": 458,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 47-month-old girl died suddenly at home due to a heart condition. She had been healthy before, but had a fever and abdominal pain a few days earlier. An autopsy ..."
},
{
"instance_id": 14,
"target_level": "proficient_health_literacy",
"reward": -0.25,
"prediction": "proficient_health_literacy",
"prediction_tokens": 922,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 47-month-old girl was admitted to the pediatric intensive care unit after a sudden cardiopulmonary arrest at home. The electrocardiogram showed cardiac asystole, w..."
},
{
"instance_id": 15,
"target_level": "low_health_literacy",
"reward": -0.75,
"prediction": "low_health_literacy",
"prediction_tokens": 468,
"solution_preview": "{\n \"low_health_literacy\": \"A man in his 40s with a history of IV drug use came to the hospital with trouble breathing and confusion. He had a heart murmur and lung problems. Tests showed he had a ser..."
},
{
"instance_id": 16,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 40-year-old man with a history of intravenous drug use was rushed to the emergency department with symptoms of altered mental status and difficulty breathing. He..."
},
{
"instance_id": 17,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 765,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 40-year-old man with a history of intravenous drug use presented to the emergency department with altered mental status and dyspnea. He was afebrile and hemodynami..."
},
{
"instance_id": 18,
"target_level": "low_health_literacy",
"reward": -0.7142857142857143,
"prediction": "low_health_literacy",
"prediction_tokens": 438,
"solution_preview": "{\n \"low_health_literacy\": \"A 41-year-old man had a serious heart problem. He had a condition called high-output heart failure, which means his heart was working too hard. This was caused by a problem..."
},
{
"instance_id": 19,
"target_level": "intermediate_health_literacy",
"reward": -0.8571428571428571,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 526,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 41-year-old man was diagnosed with a rare heart condition called high-output heart failure. This condition occurs when a blood vessel in the body creates an abno..."
},
{
"instance_id": 20,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 41-year-old male patient presented with symptoms of high-output right heart failure (HF) due to a possible arteriovenous fistula (AVF) between the left common ilia..."
},
{
"instance_id": 21,
"target_level": "low_health_literacy",
"reward": -0.5454545454545454,
"prediction": "low_health_literacy",
"prediction_tokens": 481,
"solution_preview": "{\n \"low_health_literacy\": \"A 34-year-old man had many big yellow bumps on his body. These bumps were on his hands, elbows, buttocks, and feet. He also had bumps on his eyes and Achilles tendon. The b..."
},
{
"instance_id": 22,
"target_level": "intermediate_health_literacy",
"reward": -0.15384615384615385,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 591,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 34-year-old man had a rare genetic disorder called Familial Hypercholesterolemia (FH). This condition caused him to develop large, yellowish growths called xanth..."
},
{
"instance_id": 23,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 722,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 34-year-old male patient presented with multiple large tuberous xanthomas, a characteristic feature of Familial Hypercholesterolemia (FH). The patient had 15 masse..."
},
{
"instance_id": 24,
"target_level": "low_health_literacy",
"reward": -0.6,
"prediction": "low_health_literacy",
"prediction_tokens": 406,
"solution_preview": "{\n \"low_health_literacy\": \"A 59-year-old man had severe stomach pain and vomiting for three days. He had a lot of gas in his intestines and a big lump in his belly. Doctors did a CT scan and found a ..."
},
{
"instance_id": 25,
"target_level": "intermediate_health_literacy",
"reward": -1.625,
"prediction": "low_health_literacy",
"prediction_tokens": 495,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 59-year-old man with a history of high blood pressure came to the hospital with severe abdominal pain and vomiting. He had similar symptoms six months ago, but t..."
},
{
"instance_id": 26,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 606,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 59-year-old man with a history of hypertension presented with severe abdominal pain, vomiting, and constipation. A CT scan revealed a rare condition called Abdomin..."
},
{
"instance_id": 27,
"target_level": "low_health_literacy",
"reward": -0.375,
"prediction": "low_health_literacy",
"prediction_tokens": 449,
"solution_preview": "{\n \"low_health_literacy\": \"A 67-year-old woman was very sick with COVID-19 pneumonia. She was transferred to our hospital for intensive care. Despite treatment, her condition worsened. A CT scan show..."
},
{
"instance_id": 28,
"target_level": "intermediate_health_literacy",
"reward": -1.1666666666666667,
"prediction": "proficient_health_literacy",
"prediction_tokens": 467,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 67-year-old woman was transferred to our hospital for intensive care due to severe COVID-19 pneumonia. Despite treatment, her condition worsened, and she develop..."
},
{
"instance_id": 29,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 738,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 67-year-old woman with severe COVID-19 pneumonia was transferred to our hospital for intensive care. Despite initial treatments, her respiratory and hemodynamic st..."
},
{
"instance_id": 30,
"target_level": "low_health_literacy",
"reward": -1.5555555555555556,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 470,
"solution_preview": "{\n \"low_health_literacy\": \"A man in his 40s came to the hospital with severe stomach pain and vomiting. He had a history of heavy drinking and pancreatitis. Tests showed a large cyst near his small i..."
},
{
"instance_id": 31,
"target_level": "intermediate_health_literacy",
"reward": -1.25,
"prediction": "proficient_health_literacy",
"prediction_tokens": 567,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 47-year-old man was hospitalized for severe upper abdominal pain and vomiting. He had a history of heavy drinking and chronic pancreatitis. Tests showed a large ..."
},
{
"instance_id": 32,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 713,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 47-year-old male with a history of heavy drinking and chronic pancreatitis presented with upper abdominal pain and vomiting. Laboratory tests revealed elevated amy..."
},
{
"instance_id": 33,
"target_level": "low_health_literacy",
"reward": -0.5,
"prediction": "low_health_literacy",
"prediction_tokens": 496,
"solution_preview": "{\n \"low_health_literacy\": \"A 35-year-old woman went to the hospital with severe belly pain and vomiting. She had been taking medicine for five years to control her lupus, but she had not been taking ..."
},
{
"instance_id": 34,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 35-year-old woman was diagnosed with a rare form of lupus called colorectal lupus (LE). She had been taking medication for lupus nephritis for five years but had..."
},
{
"instance_id": 35,
"target_level": "proficient_health_literacy",
"reward": -0.1111111111111111,
"prediction": "proficient_health_literacy",
"prediction_tokens": 633,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 35-year-old woman was hospitalized with unexplained abdominal pain and vomiting. She had been taking medication for lupus nephritis for five years but had been irr..."
},
{
"instance_id": 36,
"target_level": "low_health_literacy",
"reward": -1.75,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 541,
"solution_preview": "{\n \"low_health_literacy\": \"A 33-year-old woman from Bangladesh had high blood pressure and diabetes. She had been feeling irregular heartbeats for 2 years. Doctors tried different medicines, but they..."
},
{
"instance_id": 37,
"target_level": "intermediate_health_literacy",
"reward": -0.5555555555555556,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 564,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 33-year-old Bangladeshi woman with high blood pressure and diabetes had been experiencing episodes of irregular heartbeat for 2 years. Despite taking several med..."
},
{
"instance_id": 38,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 33-year-old Bangladeshi woman with hypertension and diabetes presented with recurrent episodes of palpitations for 2 years. Despite being on various medications, i..."
},
{
"instance_id": 39,
"target_level": "low_health_literacy",
"reward": -0.5,
"prediction": "low_health_literacy",
"prediction_tokens": 422,
"solution_preview": "{\n \"low_health_literacy\": \"A 16-year-old boy was diagnosed with a rare type of leukemia called pre-B-ALL. He had no family history of cancer and no known health problems. He started feeling tired and..."
},
{
"instance_id": 40,
"target_level": "intermediate_health_literacy",
"reward": -1.4444444444444444,
"prediction": "proficient_health_literacy",
"prediction_tokens": 562,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 16-year-old boy was diagnosed with a rare and aggressive form of leukemia called pre-B-ALL. He had been experiencing fatigue and fever for a month before being a..."
},
{
"instance_id": 41,
"target_level": "proficient_health_literacy",
"reward": -0.4444444444444444,
"prediction": "proficient_health_literacy",
"prediction_tokens": 649,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 16-year-old male patient presented with a 1-month history of fatigue and fever without sweating. Initial laboratory evaluation revealed an extremely high white blo..."
},
{
"instance_id": 42,
"target_level": "low_health_literacy",
"reward": -0.8,
"prediction": "low_health_literacy",
"prediction_tokens": 551,
"solution_preview": "{\n \"low_health_literacy\": \"A 62-year-old woman had a sudden, severe chest pain that started 2 hours before she went to the hospital. She had been feeling unwell for 2 weeks with a sore throat, fever,..."
},
{
"instance_id": 43,
"target_level": "intermediate_health_literacy",
"reward": -0.75,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 509,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 62-year-old woman experienced sudden chest pain and was rushed to the hospital. An electrocardiogram showed a heart attack, and she was given a clot-busting medi..."
},
{
"instance_id": 44,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 629,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 62-year-old woman with cardiovascular risk factors presented to the emergency department with sudden onset anterior chest tightness, throat pain, fever, and cough...."
},
{
"instance_id": 45,
"target_level": "low_health_literacy",
"reward": -0.25,
"prediction": "low_health_literacy",
"prediction_tokens": 395,
"solution_preview": "{\n \"low_health_literacy\": \"A 74-year-old man was diagnosed with esophageal cancer. He had a mass in his lung that looked like cancer, but tests showed it was actually a lung infection called actinomy..."
},
{
"instance_id": 46,
"target_level": "intermediate_health_literacy",
"reward": -1.5714285714285714,
"prediction": "low_health_literacy",
"prediction_tokens": 474,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 74-year-old man was diagnosed with esophageal cancer. He had a history of diabetes and had undergone previous surgeries for cancer. He was initially treated for ..."
},
{
"instance_id": 47,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 601,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 74-year-old man with a history of esophageal cancer and diabetes was initially diagnosed with esophageal cancer that had spread to the lung. However, a pleural eff..."
},
{
"instance_id": 48,
"target_level": "low_health_literacy",
"reward": -0.8,
"prediction": "low_health_literacy",
"prediction_tokens": 397,
"solution_preview": "{\n \"low_health_literacy\": \"A woman in her 50s had a condition that made her seizures hard to control. She also had anxiety and depression. Doctors found that her seizures started in a part of her bra..."
},
{
"instance_id": 49,
"target_level": "intermediate_health_literacy",
"reward": -0.4,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 453,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A woman in her 50s had a rare condition called pharmacoresistant focal epilepsy, which means her seizures didn't respond to medication. She also struggled with anx..."
},
{
"instance_id": 50,
"target_level": "proficient_health_literacy",
"reward": -0.14285714285714285,
"prediction": "proficient_health_literacy",
"prediction_tokens": 629,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 51-year-old woman with neurofibromatosis type 1 and essential tremor was evaluated for pharmacoresistant focal epilepsy and psychiatric comorbidities, including an..."
},
{
"instance_id": 51,
"target_level": "low_health_literacy",
"reward": -0.6666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 447,
"solution_preview": "{\n \"low_health_literacy\": \"A 65-year-old woman had a rare medical condition that was discovered by chance. She had a type of cancer in her lower intestine and a rare hole in her diaphragm that allowe..."
},
{
"instance_id": 52,
"target_level": "intermediate_health_literacy",
"reward": -1.8333333333333335,
"prediction": "low_health_literacy",
"prediction_tokens": 468,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 65-year-old woman was hospitalized with severe abdominal pain and constipation. Tests showed she had a rare type of cancer in her rectum and a hole in her diaphr..."
},
{
"instance_id": 53,
"target_level": "proficient_health_literacy",
"reward": -0.1111111111111111,
"prediction": "proficient_health_literacy",
"prediction_tokens": 663,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 65-year-old woman was hospitalized due to abdominal pain and fecal impaction. Initial blood tests were normal, but a chest X-ray revealed underdevelopment of the r..."
},
{
"instance_id": 54,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "low_health_literacy",
"prediction_tokens": 399,
"solution_preview": "{\n \"low_health_literacy\": \"A 63-year-old man had two tumors: one in his spine and one in his brain. The tumors were removed in two separate surgeries. The spinal tumor was a type of brain tumor calle..."
},
{
"instance_id": 55,
"target_level": "intermediate_health_literacy",
"reward": -0.8333333333333334,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 464,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 63-year-old man had two brain tumors, one in his spine and one in his brain. The tumors were removed in separate surgeries. Tests showed that the tumors were dif..."
},
{
"instance_id": 56,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 63-year-old male presented with progressive weakness, numbness, and difficulty walking in his lower limbs over 5 months. Physical examination revealed increased mu..."
},
{
"instance_id": 57,
"target_level": "low_health_literacy",
"reward": -0.7777777777777778,
"prediction": "low_health_literacy",
"prediction_tokens": 501,
"solution_preview": "{\n \"low_health_literacy\": \"A 43-year-old woman from Asia has trouble seeing because of a condition called diabetic retinopathy. This condition is linked to her diabetes. She also has high blood press..."
},
{
"instance_id": 58,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 43-year-old woman with diabetes and vision problems was referred to a low vision clinic for rehabilitation. She had mild vision impairment due to a condition cal..."
},
{
"instance_id": 59,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 593,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 43-year-old Malay female with diabetic retinopathy and tractional retinal detachment was referred to a low vision clinic for rehabilitation. She had been experienc..."
},
{
"instance_id": 60,
"target_level": "low_health_literacy",
"reward": -0.75,
"prediction": "low_health_literacy",
"prediction_tokens": 386,
"solution_preview": "{\n \"low_health_literacy\": \"A woman from Nigeria had a long fever and swelling in her neck. She went to the doctor many times, but her symptoms didn't go away. The doctor thought she might have malari..."
},
{
"instance_id": 61,
"target_level": "intermediate_health_literacy",
"reward": -1.2,
"prediction": "low_health_literacy",
"prediction_tokens": 444,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 26-year-old Nigerian woman went to the hospital with a recurring fever that lasted a month and swelling in her neck that started two weeks prior to her visit. De..."
},
{
"instance_id": 62,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 772,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 25-year-old Nigerian woman presented with a month-long history of recurring low-grade fever, chills, and rigor, which were temporarily relieved by paracetamol and ..."
},
{
"instance_id": 63,
"target_level": "low_health_literacy",
"reward": -0.8181818181818182,
"prediction": "low_health_literacy",
"prediction_tokens": 525,
"solution_preview": "{\n \"low_health_literacy\": \"A 42-year-old man had a fever, sore throat, and runny nose for 5 days. He then got a sudden, severe headache on one side of his head and felt dizzy. He also had trouble see..."
},
{
"instance_id": 64,
"target_level": "intermediate_health_literacy",
"reward": -0.8333333333333334,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 473,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 42-year-old man developed severe symptoms, including fever, sore throat, and a runny nose, which were followed by a sudden and severe headache, vertigo, and conf..."
},
{
"instance_id": 65,
"target_level": "proficient_health_literacy",
"reward": -0.42857142857142855,
"prediction": "proficient_health_literacy",
"prediction_tokens": 537,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 42-year-old man presented with fever, sore throat, and runny nose for 5 days, followed by sudden onset of occipital headache, vertigo, transient confusion, diplopi..."
},
{
"instance_id": 66,
"target_level": "low_health_literacy",
"reward": -0.42857142857142855,
"prediction": "low_health_literacy",
"prediction_tokens": 450,
"solution_preview": "{\n \"low_health_literacy\": \"A 42-year-old woman had a serious problem with her spine after a surgery. She had numbness, tingling, and pain in both arms. Doctors thought she had a different condition, ..."
},
{
"instance_id": 67,
"target_level": "intermediate_health_literacy",
"reward": -0.3,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 582,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 42-year-old woman developed severe numbness, tingling, and pain in both arms after a surgery to remove a parathyroid gland. She had a history of a spinal cord in..."
},
{
"instance_id": 68,
"target_level": "proficient_health_literacy",
"reward": -0.35714285714285715,
"prediction": "proficient_health_literacy",
"prediction_tokens": 798,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 42-year-old woman with a history of spinal cord injury (SCI) developed symptoms of numbness, tingling, and pain in both arms after undergoing parathyroidectomy. He..."
},
{
"instance_id": 69,
"target_level": "low_health_literacy",
"reward": -0.8571428571428571,
"prediction": "low_health_literacy",
"prediction_tokens": 464,
"solution_preview": "{\n \"low_health_literacy\": \"A 5-month-old baby was very sick with a rare form of a disease called Kawasaki Disease (KD). He had a fever for 4 days, diarrhea, and a rash. His heart and blood tests show..."
},
{
"instance_id": 70,
"target_level": "intermediate_health_literacy",
"reward": -0.3333333333333333,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 541,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 5-month-old boy was admitted to the hospital with a high fever, diarrhea, and cough. He had been treated for a ear infection, but his symptoms persisted. After s..."
},
{
"instance_id": 71,
"target_level": "proficient_health_literacy",
"reward": -0.2,
"prediction": "proficient_health_literacy",
"prediction_tokens": 731,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 5-month-old boy was admitted to the Emergency Room with fever, diarrhea, cough, and irritability. He had been treated with antibiotics for a middle ear infection, ..."
},
{
"instance_id": 72,
"target_level": "low_health_literacy",
"reward": -0.2857142857142857,
"prediction": "low_health_literacy",
"prediction_tokens": 451,
"solution_preview": "{\n \"low_health_literacy\": \"A 68-year-old woman had severe belly pain, nausea, and vomiting. She had surgery 4 years ago to remove a tumor from her pituitary gland. During a new surgery to fix a bowel..."
},
{
"instance_id": 73,
"target_level": "intermediate_health_literacy",
"reward": -0.2222222222222222,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 530,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 68-year-old woman was rushed to the emergency room with severe abdominal pain, nausea, and vomiting. Four years earlier, she had undergone surgery to remove a pi..."
},
{
"instance_id": 74,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 68-year-old African American female presented with intestinal obstruction four years after a transphenoidal pituitary resection for pituitary adenoma. During surgi..."
},
{
"instance_id": 75,
"target_level": "low_health_literacy",
"reward": -0.75,
"prediction": "low_health_literacy",
"prediction_tokens": 463,
"solution_preview": "{\n \"low_health_literacy\": \"A 56-year-old man was found unconscious in his home with open doors and windows. He had a history of drinking too much alcohol. When he arrived at the hospital, he had a ve..."
},
{
"instance_id": 76,
"target_level": "intermediate_health_literacy",
"reward": -0.6666666666666666,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 474,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 56-year-old man was found unconscious and hypothermic in his home. He had a history of excessive drinking and was taken to the hospital, where he developed a lif..."
},
{
"instance_id": 77,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 56-year-old man with a history of excessive alcohol consumption was found unconscious and hypothermic in his home. He was admitted to Ume\u00e5 University Hospital and ..."
},
{
"instance_id": 78,
"target_level": "low_health_literacy",
"reward": -0.8571428571428571,
"prediction": "low_health_literacy",
"prediction_tokens": 439,
"solution_preview": "{\n \"low_health_literacy\": \"A man, 31 years old, had severe belly pain. He was very overweight and had serious health problems, including kidney failure and diabetes. He had a hole in his colon that n..."
},
{
"instance_id": 79,
"target_level": "intermediate_health_literacy",
"reward": -1.6666666666666665,
"prediction": "low_health_literacy",
"prediction_tokens": 476,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 31-year-old man with severe obesity and uncontrolled diabetes was rushed to the hospital with severe abdominal pain. He had also developed kidney failure. After ..."
},
{
"instance_id": 80,
"target_level": "proficient_health_literacy",
"reward": -0.2,
"prediction": "proficient_health_literacy",
"prediction_tokens": 618,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 31-year-old man with morbid obesity (BMI 50 kg/m2) and uncontrolled diabetes presented with acute abdominal pain due to perforated diverticulitis. He also had acut..."
},
{
"instance_id": 81,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "low_health_literacy",
"prediction_tokens": 382,
"solution_preview": "{\n \"low_health_literacy\": \"A 57-year-old man had a long-term illness called Crohn's disease. He was taking medicine to stop his body from fighting itself, but it wasn't working. Doctors did more test..."
},
{
"instance_id": 82,
"target_level": "intermediate_health_literacy",
"reward": -0.5,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 504,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 57-year-old man with a history of Crohn's disease was not responding to treatment. He had been losing weight, feeling weak, and experiencing abdominal pain for o..."
},
{
"instance_id": 83,
"target_level": "proficient_health_literacy",
"reward": -0.36363636363636365,
"prediction": "proficient_health_literacy",
"prediction_tokens": 674,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 57-year-old male patient with a history of Beta-thalassemia was initially diagnosed with Crohn's disease and treated with immunosuppressive therapy. However, due t..."
},
{
"instance_id": 84,
"target_level": "low_health_literacy",
"reward": 0.5,
"prediction": "low_health_literacy",
"prediction_tokens": 497,
"solution_preview": "{\n \"low_health_literacy\": \"A 35-year-old man went to the emergency room after falling on his outstretched hand. He hurt both shoulders and had trouble moving them. He had fallen before, but this was ..."
},
{
"instance_id": 85,
"target_level": "intermediate_health_literacy",
"reward": 0.8888888888888888,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 545,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 35-year-old man went to the emergency department after falling on his outstretched hand while tripping on a stone. He had severe pain and difficulty moving both ..."
},
{
"instance_id": 86,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 686,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 35-year-old male patient presented to the emergency department with a history of falling onto an outstretched hand after tripping on a stone. He experienced pain a..."
},
{
"instance_id": 87,
"target_level": "low_health_literacy",
"reward": -0.7142857142857143,
"prediction": "low_health_literacy",
"prediction_tokens": 443,
"solution_preview": "{\n \"low_health_literacy\": \"A man, 61 years old, had a tumor in his intestine. It started as a small growth near an old surgery site from 20 years ago. The tumor grew and spread to other parts of his ..."
},
{
"instance_id": 88,
"target_level": "intermediate_health_literacy",
"reward": -0.3,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 589,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 61-year-old man was admitted to the hospital with constipation and a palpable mass in his abdomen. He had a history of surgery for appendicitis 20 years ago and ..."
},
{
"instance_id": 89,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 61-year-old man was admitted for constipation and a palpable mass in the periumbilical area. His medical history included a surgery for acute perforative appendici..."
},
{
"instance_id": 90,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "low_health_literacy",
"prediction_tokens": 451,
"solution_preview": "{\n \"low_health_literacy\": \"A 59-year-old woman with no heart problems had chest pain, trouble breathing, and a fever. She was treated for pneumonia, but her symptoms didn't go away. An ECG showed sig..."
},
{
"instance_id": 91,
"target_level": "intermediate_health_literacy",
"reward": -1.2857142857142856,
"prediction": "low_health_literacy",
"prediction_tokens": 455,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 59-year-old woman with no history of heart problems came to the hospital with chest pain, difficulty breathing, and a fever. She was diagnosed with pneumonia and..."
},
{
"instance_id": 92,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 533,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 59-year-old woman with a history of heavy smoking and hypertension presented with chest pain, dyspnea, and fever. Initially, she was diagnosed with acute community..."
},
{
"instance_id": 93,
"target_level": "low_health_literacy",
"reward": -0.8888888888888888,
"prediction": "low_health_literacy",
"prediction_tokens": 465,
"solution_preview": "{\n \"low_health_literacy\": \"A 77-year-old woman had severe hip pain due to wear and tear. She had a previous knee injury that caused her knee to fuse together. This made it hard for her to walk and ca..."
},
{
"instance_id": 94,
"target_level": "intermediate_health_literacy",
"reward": -0.5555555555555556,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 526,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 77-year-old woman had severe hip pain due to degenerative hip disease. She also had a previous knee fusion in the same leg, which made it difficult to move. To m..."
},
{
"instance_id": 95,
"target_level": "proficient_health_literacy",
"reward": 0.75,
"prediction": "proficient_health_literacy",
"prediction_tokens": 665,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 77-year-old woman with degenerative hip disease and a previous knee arthrodesis due to a childhood traffic accident presented with progressive left groin pain. She..."
},
{
"instance_id": 96,
"target_level": "low_health_literacy",
"reward": -0.7777777777777778,
"prediction": "low_health_literacy",
"prediction_tokens": 480,
"solution_preview": "{\n \"low_health_literacy\": \"A 48-year-old woman was very sick with a brain infection and a severe kidney infection. She had a high fever and was in a coma. Doctors gave her strong medicine to fight th..."
},
{
"instance_id": 97,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 48-year-old woman was rushed to the intensive care unit (ICU) with a severe infection in her kidneys and brain. She had developed septic shock, a life-threatenin..."
},
{
"instance_id": 98,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 48-year-old Caucasian woman was admitted to the intensive care unit (ICU) with suspected pyelonephritis, sepsis, and altered mental state. She underwent a computer..."
},
{
"instance_id": 99,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "### Low Health Literacy Version\n\n{\n \"low_health_literacy\": \"A woman who traveled to Colombia got sick after returning to the USA. She had been bitten by mosquitoes and had a fever, back pain, and a r..."
},
{
"instance_id": 100,
"target_level": "intermediate_health_literacy",
"reward": -0.7142857142857143,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 511,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A woman who recently returned from a trip to Colombia developed symptoms that suggested she might have contracted Zika, Chikungunya, or Dengue. Tests confirmed she..."
},
{
"instance_id": 101,
"target_level": "proficient_health_literacy",
"reward": -0.4444444444444444,
"prediction": "proficient_health_literacy",
"prediction_tokens": 664,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 40-year-old woman, who had recently traveled to Colombia with her husband, presented to the outpatient infectious diseases clinic with symptoms consistent with Zik..."
},
{
"instance_id": 102,
"target_level": "low_health_literacy",
"reward": -0.6666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 528,
"solution_preview": "{\n \"low_health_literacy\": \"A 59-year-old Malay woman had a fever and swelling in her left cheek. She had a history of a condition that affects her skin and glands. She was not taking any medicine to ..."
},
{
"instance_id": 103,
"target_level": "intermediate_health_literacy",
"reward": -0.5555555555555556,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 544,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 59-year-old Malay woman had a fever and swelling in her left parotid gland. She had a history of a condition called systemic sclerosis and Sj\u00f6gren's syndrome, wh..."
},
{
"instance_id": 104,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 59-year-old Malay woman with a history of systemic sclerosis and secondary Sj\u00f6gren's syndrome presented with fever and left parotid gland swelling. Clinical examin..."
},
{
"instance_id": 105,
"target_level": "low_health_literacy",
"reward": -1.8571428571428572,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 464,
"solution_preview": "{\n \"low_health_literacy\": \"This patient had a condition called TED (Thyroid Eye Disease) that made his eyes bulge out. He also had a low immune system and was at risk for infections. Before starting ..."
},
{
"instance_id": 106,
"target_level": "intermediate_health_literacy",
"reward": -0.7142857142857143,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 535,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 67-year-old man with a history of several health issues, including high blood pressure, high cholesterol, and hepatitis B, was diagnosed with thyroid eye disease..."
},
{
"instance_id": 107,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 67-year-old male with a history of hypertension, hyperlipidemia, chronic hepatitis B, and chronic obstructive pulmonary disease (COPD) was referred to our clinic f..."
},
{
"instance_id": 108,
"target_level": "low_health_literacy",
"reward": -0.875,
"prediction": "low_health_literacy",
"prediction_tokens": 448,
"solution_preview": "{\n \"low_health_literacy\": \"A 6-month-old baby girl had heart surgery. She needed a machine to help her breathe for a long time. After 52 days, the breathing tube was removed, but she needed it put ba..."
},
{
"instance_id": 109,
"target_level": "intermediate_health_literacy",
"reward": -1.4,
"prediction": "low_health_literacy",
"prediction_tokens": 546,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 6-month-old baby girl underwent heart surgery to fix a condition called tetralogy of Fallot. After the operation, she needed help breathing and was put on a mach..."
},
{
"instance_id": 110,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 6-month-old female infant underwent cardiac surgery for tetralogy of Fallot, pulmonary artery atresia, and major aortopulmonary collateral artery. Post-operatively..."
},
{
"instance_id": 111,
"target_level": "low_health_literacy",
"reward": -0.75,
"prediction": "low_health_literacy",
"prediction_tokens": 366,
"solution_preview": "{\n \"low_health_literacy\": \"A healthy young woman got a serious infection from a tongue piercing. The infection spread to her liver and caused it to fail. She died from the infection. The infection wa..."
},
{
"instance_id": 112,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A previously healthy 19-year-old woman contracted herpes simplex virus (HSV) through a tongue piercing. The virus caused a severe liver infection, known as fulmina..."
},
{
"instance_id": 113,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 699,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 19-year-old immunocompetent woman presented with nonspecific symptoms of fatigue, fever, and abdominal pain. Her past medical history was unremarkable, and she did..."
},
{
"instance_id": 114,
"target_level": "low_health_literacy",
"reward": -0.8,
"prediction": "low_health_literacy",
"prediction_tokens": 424,
"solution_preview": "{\n \"low_health_literacy\": \"A 46-year-old man had trouble breathing and bleeding from his nose for 4 months. Doctors did tests and found a big tumor in his nose and sinuses. They removed the tumor in ..."
},
{
"instance_id": 115,
"target_level": "intermediate_health_literacy",
"reward": -0.4,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 466,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 46-year-old man had been experiencing nasal bleeding and nasal obstruction for four months. Imaging tests showed a large tumor in his left nasal cavity that had ..."
},
{
"instance_id": 116,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 649,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 46-year-old male patient presented with nasal bleeding and nasal obstruction for 4 months. Imaging studies revealed a large heterogeneous mass in the left superior..."
},
{
"instance_id": 117,
"target_level": "low_health_literacy",
"reward": -0.42857142857142855,
"prediction": "low_health_literacy",
"prediction_tokens": 437,
"solution_preview": "{\n \"low_health_literacy\": \"An 83-year-old woman had pain and swelling in her left thumb for 1 week. She went to her doctor, who thought it might be a minor infection. But after trying antibiotics and..."
},
{
"instance_id": 118,
"target_level": "intermediate_health_literacy",
"reward": -1.5,
"prediction": "low_health_literacy",
"prediction_tokens": 450,
"solution_preview": "{\n \"intermediate_health_literacy\": \"An 83-year-old woman visited her doctor with pain and swelling in her left thumb. At first, the doctor thought it might be a minor infection, so she prescribed ant..."
},
{
"instance_id": 119,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"An 83-year-old woman presented to her primary care provider with pain and swelling of her left thumb distal phalanx for 1 week. Initial imaging was normal, and she w..."
},
{
"instance_id": 120,
"target_level": "low_health_literacy",
"reward": -0.7777777777777778,
"prediction": "low_health_literacy",
"prediction_tokens": 478,
"solution_preview": "{\n \"low_health_literacy\": \"A 66-year-old man with diabetes had severe vision loss due to fluid buildup in his eyes. He tried several treatments, but they didn't work. He then received a new treatment..."
},
{
"instance_id": 121,
"target_level": "intermediate_health_literacy",
"reward": -0.875,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 541,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 66-year-old man with diabetes had severe vision loss due to a condition called diabetic macular edema (DME). Despite treatments like laser therapy and steroid in..."
},
{
"instance_id": 122,
"target_level": "proficient_health_literacy",
"reward": -1.7777777777777777,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 675,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 66-year-old man with type II diabetes mellitus (DM) and a history of severe non-proliferative diabetic retinopathy (NPDR) without macular edema (ME) initially deve..."
},
{
"instance_id": 123,
"target_level": "low_health_literacy",
"reward": 0.375,
"prediction": "low_health_literacy",
"prediction_tokens": 479,
"solution_preview": "{\n \"low_health_literacy\": \"A 13-year-old boy went to the emergency room with a four-day history of pain in his right groin and feeling sick to his stomach. A doctor found a tender lump in his right s..."
},
{
"instance_id": 124,
"target_level": "intermediate_health_literacy",
"reward": -1.4444444444444444,
"prediction": "low_health_literacy",
"prediction_tokens": 533,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 13-year-old boy visited the emergency department with severe pain in his right groin and nausea that had lasted for four days. A doctor examined him and found a ..."
},
{
"instance_id": 125,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 13-year-old male patient presented to the emergency department with a four-day history of right inguinoscrotal pain and nausea. The genital examination revealed a ..."
},
{
"instance_id": 126,
"target_level": "low_health_literacy",
"reward": -0.2857142857142857,
"prediction": "low_health_literacy",
"prediction_tokens": 451,
"solution_preview": "{\n \"low_health_literacy\": \"A 56-year-old man was hospitalized for chest problems. He had been feeling tightness and pain in his chest for over 2 months. He also had a cough, lost 10 kilograms in 2 mo..."
},
{
"instance_id": 127,
"target_level": "intermediate_health_literacy",
"reward": -0.5714285714285714,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 481,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 56-year-old man was hospitalized for chest problems, including tightness, pain, and difficulty breathing. He had lost 10 kilograms in two months and had a fever ..."
},
{
"instance_id": 128,
"target_level": "proficient_health_literacy",
"reward": -0.125,
"prediction": "proficient_health_literacy",
"prediction_tokens": 617,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 56-year-old HIV-negative male patient was hospitalized for chest disease with symptoms of chest tightness, chest pain, fatigue, anorexia, and weight loss. He had a..."
},
{
"instance_id": 129,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "low_health_literacy",
"prediction_tokens": 489,
"solution_preview": "{\n \"low_health_literacy\": \"A woman in her 50s had chest pain and shortness of breath after eating. She had been to the hospital three times for these symptoms, but tests showed her heart arteries wer..."
},
{
"instance_id": 130,
"target_level": "intermediate_health_literacy",
"reward": -0.4,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 571,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 50-year-old woman had been experiencing chest pain, shortness of breath, and swelling in her neck after eating for about 15 years. Despite her symptoms, she had ..."
},
{
"instance_id": 131,
"target_level": "proficient_health_literacy",
"reward": -0.5,
"prediction": "proficient_health_literacy",
"prediction_tokens": 604,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 50-year-old woman presented with recurring episodes of transient chest pain, shortness of breath, and swelling in the neck, typically occurring after meals. Despit..."
},
{
"instance_id": 132,
"target_level": "low_health_literacy",
"reward": -0.8333333333333334,
"prediction": "low_health_literacy",
"prediction_tokens": 438,
"solution_preview": "{\n \"low_health_literacy\": \"A 70-year-old man was very sick with COVID-19 pneumonia. He had trouble breathing and was admitted to the Intensive Care Unit (ICU). He needed help breathing with a machine..."
},
{
"instance_id": 133,
"target_level": "intermediate_health_literacy",
"reward": -1.1666666666666667,
"prediction": "proficient_health_literacy",
"prediction_tokens": 510,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 70-year-old man was admitted to the Intensive Care Unit (ICU) with severe COVID-19 pneumonia. He had been experiencing shortness of breath and fatigue for four d..."
},
{
"instance_id": 134,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 525,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 70-year-old man with COVID-19 pneumonia was admitted to the Intensive Care Unit (ICU) due to severe respiratory failure. Initially, he was on Non-Invasive Ventilat..."
},
{
"instance_id": 135,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "low_health_literacy",
"prediction_tokens": 387,
"solution_preview": "{\n \"low_health_literacy\": \"A 33-year-old man with AIDS got very sick and had trouble breathing. He needed a machine to help him breathe, but it didn't work well. He got better for a little while, but..."
},
{
"instance_id": 136,
"target_level": "intermediate_health_literacy",
"reward": -0.4,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 467,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 33-year-old man with untreated AIDS developed severe breathing problems and was admitted to the hospital. He had a fever, dry cough, and low oxygen levels. Despi..."
},
{
"instance_id": 137,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 33-year-old Caucasian man with untreated AIDS for 1 year presented to the emergency department with progressive dyspnea for 3 weeks. Despite treatment with antibio..."
},
{
"instance_id": 138,
"target_level": "low_health_literacy",
"reward": -0.42857142857142855,
"prediction": "low_health_literacy",
"prediction_tokens": 441,
"solution_preview": "{\n \"low_health_literacy\": \"A 24-year-old man had a severe infection caused by a virus called Cytomegalovirus (CMV). He also had a problem with his appendix that needed surgery. The man had been sick ..."
},
{
"instance_id": 139,
"target_level": "intermediate_health_literacy",
"reward": -0.25,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 538,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 24-year-old man was admitted to the hospital with fever and abdominal pain. He had a history of inflammatory bowel disease and had been experiencing symptoms for..."
},
{
"instance_id": 140,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 757,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 24-year-old Caucasian man with a history of primary sclerosing cholangitis (PSC) and ulcerative colitis (UC) presented with fever and upper quadrant abdominal pain..."
},
{
"instance_id": 141,
"target_level": "low_health_literacy",
"reward": -2.0,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 403,
"solution_preview": "{\n \"low_health_literacy\": \"A 70-year-old Chinese woman with diabetes had severe low sodium levels and stomach problems. After many tests, doctors found a large mass in her abdomen. A biopsy showed sh..."
},
{
"instance_id": 142,
"target_level": "intermediate_health_literacy",
"reward": -0.16666666666666666,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 468,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 70-year-old Chinese woman with a history of diabetes and insulin therapy was admitted to the hospital with severe hyponatremia and gastrointestinal symptoms. Aft..."
},
{
"instance_id": 143,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 70-year-old Chinese woman with a history of diabetes mellitus and insulin therapy presented with severe hyponatremia and gastrointestinal symptoms. After excluding..."
},
{
"instance_id": 144,
"target_level": "low_health_literacy",
"reward": -0.6666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 425,
"solution_preview": "{\n \"low_health_literacy\": \"A 60-year-old woman went to the hospital in August 2020 because she had been feeling unwell for a week. She had a low-grade fever, chills, and a runny nose. She also had we..."
},
{
"instance_id": 145,
"target_level": "intermediate_health_literacy",
"reward": -1.6,
"prediction": "low_health_literacy",
"prediction_tokens": 483,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 60-year-old woman from Ghana visited a hospital in August 2020 with symptoms that started a week earlier, including a low-grade fever, chills, runny nose, and we..."
},
{
"instance_id": 146,
"target_level": "proficient_health_literacy",
"reward": -1.2222222222222223,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 623,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 60-year-old woman, who was previously healthy, presented to the COVID-19 treatment center at the Korle-Bu Teaching Hospital in Accra, Ghana, in August 2020. She ha..."
},
{
"instance_id": 147,
"target_level": "low_health_literacy",
"reward": -0.4444444444444444,
"prediction": "low_health_literacy",
"prediction_tokens": 480,
"solution_preview": "{\n \"low_health_literacy\": \"A man with a serious spinal cord injury was treated with a special therapy called PAS. He received this therapy three times a week for 24 weeks. After that, he also did exe..."
},
{
"instance_id": 148,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 46-year-old man with a severe spinal cord injury was treated with a non-invasive brain stimulation technique called PAS (pharmacological augmentation of spinal c..."
},
{
"instance_id": 149,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 46-year-old man with traumatic C7 AIS B tetraplegia underwent a 56-week intervention involving periodic transcranial magnetic stimulation (PAS) and hand motor trai..."
},
{
"instance_id": 150,
"target_level": "low_health_literacy",
"reward": -0.16666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 397,
"solution_preview": "{\n \"low_health_literacy\": \"A 48-year-old woman from Tibet, China had chest pain and back pain for 4 months. She had a fever and headache sometimes. She raised sheep and cattle. Doctors did tests and ..."
},
{
"instance_id": 151,
"target_level": "intermediate_health_literacy",
"reward": -0.36363636363636365,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 598,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 48-year-old woman from Tibet, China was admitted to the hospital with a 4-month history of intermittent chest and back pain. The pain would last about an hour, t..."
},
{
"instance_id": 152,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 683,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 48-year-old woman from Tibet, China, was admitted to our hospital with a 4-month history of intermittent chest and back pain. Each episode lasted about an hour, oc..."
},
{
"instance_id": 153,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "low_health_literacy",
"prediction_tokens": 390,
"solution_preview": "{\n \"low_health_literacy\": \"A 38-year-old woman had trouble breathing and passed out. She had a tumor in her heart that was causing her problems. The tumor was removed, and she got better. But she sti..."
},
{
"instance_id": 154,
"target_level": "intermediate_health_literacy",
"reward": -0.8333333333333334,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 473,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 38-year-old woman experienced shortness of breath and fainting spells. Tests revealed a rare heart tumor called a myxoma in her right atrium. The tumor was causi..."
},
{
"instance_id": 155,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 38-year-old woman presented with exertional shortness of breath, palpitations, and syncope. She had a history of easy fatigability and weight loss. Physical examin..."
},
{
"instance_id": 156,
"target_level": "low_health_literacy",
"reward": -0.75,
"prediction": "low_health_literacy",
"prediction_tokens": 501,
"solution_preview": "{\n \"low_health_literacy\": \"A 79-year-old man with a history of asthma and heart problems came to the hospital with shortness of breath and swelling in his legs. He had been feeling worse over the pas..."
},
{
"instance_id": 157,
"target_level": "intermediate_health_literacy",
"reward": -0.2857142857142857,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 533,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 79-year-old man with a history of asthma and heart failure was admitted to the hospital for worsening shortness of breath and swelling in his legs. He had previo..."
},
{
"instance_id": 158,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 733,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 79-year-old male with a history of asthma, heart failure with preserved ejection fraction, and atrial fibrillation presented to the emergency department with worse..."
},
{
"instance_id": 159,
"target_level": "low_health_literacy",
"reward": -0.6666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 388,
"solution_preview": "{\n \"low_health_literacy\": \"A 79-year-old woman had lower abdominal pain. Doctors found cancer in her lower intestine. They removed the cancer and some nearby lymph nodes. But the cancer came back in ..."
},
{
"instance_id": 160,
"target_level": "intermediate_health_literacy",
"reward": -0.5714285714285714,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 482,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 79-year-old woman visited the hospital with lower abdominal discomfort. She was diagnosed with a rare type of cancer called signet-ring cell carcinoma in her col..."
},
{
"instance_id": 161,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 712,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 79-year-old woman visited our hospital due to lower abdominal discomfort. She was diagnosed with type 0-IIa + IIc cancer of the cecum through endoscopy, and biopsy..."
},
{
"instance_id": 162,
"target_level": "low_health_literacy",
"reward": -0.875,
"prediction": "low_health_literacy",
"prediction_tokens": 478,
"solution_preview": "{\n \"low_health_literacy\": \"A 51-year-old man had a heart attack outside the hospital and was brought in. He had a family history of heart problems and was overweight. He had a minor kidney stone issu..."
},
{
"instance_id": 163,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 51-year-old man was rushed to the hospital after suffering a cardiac arrest outside. He had a family history of sudden cardiac death, but his own medical history..."
},
{
"instance_id": 164,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 720,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 51-year-old man was transferred to our hospital after experiencing an out-of-hospital cardiac arrest. He had a family history of sudden cardiac death, but his brot..."
},
{
"instance_id": 165,
"target_level": "low_health_literacy",
"reward": -0.6666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 424,
"solution_preview": "{\n \"low_health_literacy\": \"A 76-year-old woman had many surgeries for different cancers. She had trouble breathing and a big, hard mass in her right lung artery. We did two surgeries to fix her heart..."
},
{
"instance_id": 166,
"target_level": "intermediate_health_literacy",
"reward": -0.2222222222222222,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 536,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 76-year-old woman had a history of multiple cancers and underwent several surgeries. She was referred to our department with a large, calcified mass in her right..."
},
{
"instance_id": 167,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 636,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 76-year-old woman with a history of multiple primary cancers underwent a two-stage surgery for a calcified mass in the right pulmonary artery (PA) and severe sympt..."
},
{
"instance_id": 168,
"target_level": "low_health_literacy",
"reward": -0.6666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 450,
"solution_preview": "{\n \"low_health_literacy\": \"A young man, 27 years old, went to the emergency room with a big problem in his nose and eye. He had been feeling sick for months with headaches, eye discharge, and noseble..."
},
{
"instance_id": 169,
"target_level": "intermediate_health_literacy",
"reward": -0.5,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 477,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 27-year-old man went to the emergency room with a nasal mass and eye problems. He had been experiencing sinus issues, headaches, and eye discharge for several mo..."
},
{
"instance_id": 170,
"target_level": "proficient_health_literacy",
"reward": -0.2222222222222222,
"prediction": "proficient_health_literacy",
"prediction_tokens": 615,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 27-year-old male presented to the emergency department with a right-sided nasal mass and worsening lower right eyelid swelling over several months. His symptoms in..."
},
{
"instance_id": 171,
"target_level": "low_health_literacy",
"reward": -0.4,
"prediction": "low_health_literacy",
"prediction_tokens": 395,
"solution_preview": "{\n \"low_health_literacy\": \"A 2-month-old baby had a special surgery to fix a problem with his skull. The baby's head was shaped abnormally, and the surgery helped. But the baby didn't wear his specia..."
},
{
"instance_id": 172,
"target_level": "intermediate_health_literacy",
"reward": -0.7142857142857143,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 521,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 2-month-old baby underwent a surgery called endoscopic-assisted strip craniectomy to treat a condition called sagittal synostosis, where the bones of the skull f..."
},
{
"instance_id": 173,
"target_level": "proficient_health_literacy",
"reward": -0.125,
"prediction": "proficient_health_literacy",
"prediction_tokens": 575,
"solution_preview": "{\n \"proficient_health_literacy\": \"A three-week-old Caucasian male was born with an abnormally shaped head, prompting a referral for craniofacial evaluation. Physical examination revealed bifrontal bo..."
},
{
"instance_id": 174,
"target_level": "low_health_literacy",
"reward": -0.8,
"prediction": "low_health_literacy",
"prediction_tokens": 424,
"solution_preview": "{\n \"low_health_literacy\": \"A 17-year-old boy went to the emergency room with a bad headache, vomiting, and vision problems in one eye. He was very sleepy and had weakness on one side of his body. Doc..."
},
{
"instance_id": 175,
"target_level": "intermediate_health_literacy",
"reward": -0.625,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 490,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 17-year-old boy went to the emergency room with severe headaches, vomiting, and vision loss in one eye. He was also disoriented and had weakness on one side of h..."
},
{
"instance_id": 176,
"target_level": "proficient_health_literacy",
"reward": -0.2727272727272727,
"prediction": "proficient_health_literacy",
"prediction_tokens": 706,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 17-year-old male with no pre-existing medical conditions visited the emergency department with severe headaches, recurring vomiting, and vision loss in one eye. He..."
},
{
"instance_id": 177,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "low_health_literacy",
"prediction_tokens": 412,
"solution_preview": "{\n \"low_health_literacy\": \"A 68-year-old man went to the hospital because he had sudden pain in his upper right side, was feeling queasy, and his urine was dark. Doctors did tests and found that the ..."
},
{
"instance_id": 178,
"target_level": "intermediate_health_literacy",
"reward": -0.8888888888888888,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 533,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 68-year-old man was rushed to the hospital with severe pain in his upper right abdomen, nausea, and dark urine. Tests showed that the left bile duct was swollen,..."
},
{
"instance_id": 179,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "prof",
"prediction_tokens": 739,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 68-year-old male patient was referred to our hospital with sudden right upper quadrant abdominal pain, nausea, and dark urine. Imaging tests revealed dilatation of..."
},
{
"instance_id": 180,
"target_level": "low_health_literacy",
"reward": -0.7,
"prediction": "low_health_literacy",
"prediction_tokens": 481,
"solution_preview": "{\n \"low_health_literacy\": \"A 16-year-old boy had a heart attack during exercise. He had a condition called Kawasaki disease when he was a baby, which affected his heart. He had a stent put in his hea..."
},
{
"instance_id": 181,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 16-year-old boy with a history of Kawasaki disease had a cardiac arrest during exercise. He was rushed to the hospital and received treatment to restore his hear..."
},
{
"instance_id": 182,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 16-year-old boy with a history of Kawasaki disease presented with cardiac arrest during exercise. He had undergone a stent implantation in the left anterior descen..."
},
{
"instance_id": 183,
"target_level": "low_health_literacy",
"reward": 0.25,
"prediction": "low_health_literacy",
"prediction_tokens": 490,
"solution_preview": "{\n \"low_health_literacy\": \"A 73-year-old man came to the hospital with symptoms that suggested his small intestine was blocked. He had surgery three years ago to remove part of his colon because of c..."
},
{
"instance_id": 184,
"target_level": "intermediate_health_literacy",
"reward": -0.42857142857142855,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 474,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 73-year-old man was rushed to the hospital with severe abdominal symptoms. He had undergone surgery to remove cancer from his left colon three years ago. Imaging..."
},
{
"instance_id": 185,
"target_level": "proficient_health_literacy",
"reward": 1.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 578,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 73-year-old male patient was admitted to the emergency department with symptoms and clinical signs indicating a small bowel obstruction (SBO). He had undergone a l..."
},
{
"instance_id": 186,
"target_level": "low_health_literacy",
"reward": -0.5714285714285714,
"prediction": "low_health_literacy",
"prediction_tokens": 449,
"solution_preview": "{\n \"low_health_literacy\": \"A 78-year-old Chinese woman had a lump in her right breast that was found during a health checkup. She also had some problems with her lungs. A special test called a PET/CT..."
},
{
"instance_id": 187,
"target_level": "intermediate_health_literacy",
"reward": -1.2727272727272727,
"prediction": "proficient_health_literacy",
"prediction_tokens": 634,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 78-year-old Chinese woman had a lump in her right breast discovered during a routine health checkup. She also had multiple lung lesions, which were detected by a..."
},
{
"instance_id": 188,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 820,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 78-year-old Chinese woman underwent a health checkup and was found to have a solid mass in her right breast. A PET/CT scan revealed a hypermetabolic nodule in her ..."
},
{
"instance_id": 189,
"target_level": "low_health_literacy",
"reward": -2.0,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 492,
"solution_preview": "{\n \"low_health_literacy\": \"A 64-year-old woman had a long history of stomach pain and episodes of numbness in her hands and feet. Ten years later, she had a severe episode of stomach pain, seizures, ..."
},
{
"instance_id": 190,
"target_level": "intermediate_health_literacy",
"reward": -0.6666666666666666,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 516,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 64-year-old woman had a long history of abdominal pain and episodes of severe illness. Ten years ago, she was hospitalized with severe abdominal pain, seizures, ..."
},
{
"instance_id": 191,
"target_level": "proficient_health_literacy",
"reward": -0.5,
"prediction": "proficient_health_literacy",
"prediction_tokens": 789,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 64-year-old woman with a long history of abdominal pain and a previous episode of acute neuritis was admitted to the neurological intensive care unit with acute ab..."
},
{
"instance_id": 192,
"target_level": "low_health_literacy",
"reward": -0.6666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 441,
"solution_preview": "{\n \"low_health_literacy\": \"A 76-year-old woman had severe depression and other health problems. She tried many medicines, but they didn't work. A pharmacist looked at her medicines and found some pro..."
},
{
"instance_id": 193,
"target_level": "intermediate_health_literacy",
"reward": -0.2857142857142857,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 527,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 76-year-old woman had severe depression and other health issues, including anxiety, insomnia, and back pain. She had tried several antidepressant medications, bu..."
},
{
"instance_id": 194,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 768,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 76-year-old woman with multiple comorbidities, including severe major depressive disorder (MDD), experienced adverse drug events and undesirable responses to multi..."
},
{
"instance_id": 195,
"target_level": "low_health_literacy",
"reward": -0.8333333333333334,
"prediction": "low_health_literacy",
"prediction_tokens": 427,
"solution_preview": "{\n \"low_health_literacy\": \"A 65-year-old man from India had many red, blue spots on his body and swollen lymph nodes. He didn't have symptoms of AIDS, but a test showed he had the virus. A skin test ..."
},
{
"instance_id": 196,
"target_level": "intermediate_health_literacy",
"reward": -0.625,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 501,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 65-year-old man from India presented with unusual skin lesions on his arms, legs, chest, and back. He also had swollen lymph nodes in his neck. A skin biopsy and..."
},
{
"instance_id": 197,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 652,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 68-year-old heterosexual male presented with multiple swellings on his trunk, back, upper and lower extremities over a period of one year. Initially, the lesions w..."
},
{
"instance_id": 198,
"target_level": "low_health_literacy",
"reward": -0.75,
"prediction": "low_health_literacy",
"prediction_tokens": 453,
"solution_preview": "{\n \"low_health_literacy\": \"A 39-year-old man with a rare genetic condition had a tumor in his chest. He had surgery 6 years ago to remove a different tumor. Doctors found a new tumor in his thymus gl..."
},
{
"instance_id": 199,
"target_level": "intermediate_health_literacy",
"reward": -0.5714285714285714,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 491,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 39-year-old man with a rare genetic disorder called multiple endocrine neoplasia type 1 (MEN-1) was referred to our hospital for an abnormal growth in his chest...."
},
{
"instance_id": 200,
"target_level": "proficient_health_literacy",
"reward": -0.1111111111111111,
"prediction": "proficient_health_literacy",
"prediction_tokens": 568,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 39-year-old male patient with multiple endocrine neoplasia type 1 (MEN-1) presented with an anterior mediastinal mass. He had undergone a total parathyroidectomy a..."
},
{
"instance_id": 201,
"target_level": "low_health_literacy",
"reward": -0.8,
"prediction": "low_health_literacy",
"prediction_tokens": 461,
"solution_preview": "{\n \"low_health_literacy\": \"A 16-year-old girl had symptoms that suggested appendicitis, but tests showed she might have a different condition called MIS-C. She had a fever, headache, and abdominal pa..."
},
{
"instance_id": 202,
"target_level": "intermediate_health_literacy",
"reward": -0.3333333333333333,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 503,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 16-year-old girl came to the hospital with symptoms that suggested appendicitis, including abdominal pain, fever, and vomiting. An imaging test called a CT scan ..."
},
{
"instance_id": 203,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 845,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 16-year-old female presented with a four-day history of abdominal pain, vomiting, fever, headache, myalgias, and cough. Her initial vital signs were notable for a ..."
},
{
"instance_id": 204,
"target_level": "low_health_literacy",
"reward": -0.8,
"prediction": "low_health_literacy",
"prediction_tokens": 407,
"solution_preview": "{\n \"low_health_literacy\": \"A 38-year-old man who loves cycling had a bad fall while riding his bike. He was wearing special pedals that made it hard for him to get his feet out when he slowed down. T..."
},
{
"instance_id": 205,
"target_level": "intermediate_health_literacy",
"reward": -1.5714285714285714,
"prediction": "low_health_literacy",
"prediction_tokens": 458,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 38-year-old man who was an avid club cyclist had a serious accident while riding his bike. He was unable to remove his feet from the pedals, which caused him to ..."
},
{
"instance_id": 206,
"target_level": "proficient_health_literacy",
"reward": -0.2857142857142857,
"prediction": "proficient_health_literacy",
"prediction_tokens": 598,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 38-year-old Caucasian man, an avid club cyclist, suffered a displaced intracapsular fracture of the hip after a fall from his bicycle. The incident occurred when h..."
},
{
"instance_id": 207,
"target_level": "low_health_literacy",
"reward": -0.6666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 445,
"solution_preview": "{\n \"low_health_literacy\": \"Two siblings from Sri Lanka have a rare condition that affects their hands. They were born to parents who are related. The older brother has a problem with his hands where ..."
},
{
"instance_id": 208,
"target_level": "intermediate_health_literacy",
"reward": -1.5,
"prediction": "low_health_literacy",
"prediction_tokens": 431,
"solution_preview": "{\n \"intermediate_health_literacy\": \"Two siblings from Sri Lanka were born to parents who are related. The brother and sister both have a rare condition where they have fewer fingers on their hands. T..."
},
{
"instance_id": 209,
"target_level": "proficient_health_literacy",
"reward": -0.3333333333333333,
"prediction": "proficient_health_literacy",
"prediction_tokens": 584,
"solution_preview": "{\n \"proficient_health_literacy\": \"We report two cases of a rare genetic disorder affecting two siblings born to consanguineous Sri Lankan parents. The proband, a 22-year-old male, presented with bila..."
},
{
"instance_id": 210,
"target_level": "low_health_literacy",
"reward": -0.75,
"prediction": "low_health_literacy",
"prediction_tokens": 394,
"solution_preview": "{\n \"low_health_literacy\": \"A 6-year-old boy from Greece came to our hospital with severe belly pain, fever, and vomiting. Doctors thought he might have appendicitis, but tests showed a solid mass in ..."
},
{
"instance_id": 211,
"target_level": "intermediate_health_literacy",
"reward": -0.75,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 432,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 6-year-old boy from Greece was rushed to the hospital with severe abdominal pain, fever, and vomiting. He was initially suspected to have appendicitis, but tests..."
},
{
"instance_id": 212,
"target_level": "proficient_health_literacy",
"reward": -0.3333333333333333,
"prediction": "proficient_health_literacy",
"prediction_tokens": 593,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 6-year-old Greek boy was admitted to our hospital with severe abdominal pain, fever, and vomiting that had started 30 hours earlier. His symptoms were initially th..."
},
{
"instance_id": 213,
"target_level": "low_health_literacy",
"reward": -1.6666666666666665,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 464,
"solution_preview": "{\n \"low_health_literacy\": \"A 26-year-old woman with a rare genetic disorder called Bardet-Biedl syndrome had heavy bleeding and was diagnosed with a type of cancer called endometrioid adenocarcinoma...."
},
{
"instance_id": 214,
"target_level": "intermediate_health_literacy",
"reward": -0.625,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 506,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 26-year-old woman with a rare genetic disorder called Bardet-Biedl syndrome (BBS) experienced abnormal uterine bleeding and was diagnosed with a type of cancer c..."
},
{
"instance_id": 215,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 743,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 26-year-old woman with Bardet-Biedl syndrome (BBS) and a history of abnormal uterine bleeding (AUB) presented to the emergency room (ER) with heavy vaginal bleedin..."
},
{
"instance_id": 216,
"target_level": "low_health_literacy",
"reward": -1.6666666666666665,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 453,
"solution_preview": "{\n \"low_health_literacy\": \"A 43-year-old man had a special device called an implantable cardioverter-defibrillator (ICD) put in his body to prevent sudden heart attacks. He had a condition called hyp..."
},
{
"instance_id": 217,
"target_level": "intermediate_health_literacy",
"reward": -0.14285714285714285,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 493,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 43-year-old man was fitted with a device called an implantable cardioverter-defibrillator (ICD) to prevent sudden cardiac death. He had a condition called hypert..."
},
{
"instance_id": 218,
"target_level": "proficient_health_literacy",
"reward": -0.14285714285714285,
"prediction": "proficient_health_literacy",
"prediction_tokens": 576,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 43-year-old male with hypertrophic cardiomyopathy and a history of sudden cardiac death underwent implantation of a dual-chamber primary prevention implantable car..."
},
{
"instance_id": 219,
"target_level": "low_health_literacy",
"reward": -0.9,
"prediction": "low_health_literacy",
"prediction_tokens": 527,
"solution_preview": "{\n \"low_health_literacy\": \"A 3-year-old girl was diagnosed with a type of blood cancer called acute lymphoblastic leukemia (ALL). Tests showed that her body was making abnormal proteins that were cau..."
},
{
"instance_id": 220,
"target_level": "intermediate_health_literacy",
"reward": -0.7777777777777778,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 555,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 3-year-old girl was diagnosed with acute lymphoblastic leukemia (ALL), a type of blood cancer. Despite having a normal karyotype, or chromosome structure, the gi..."
},
{
"instance_id": 221,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 3-year-old girl was diagnosed with acute lymphoblastic leukemia (ALL) after experiencing symptoms such as fever, reduced general condition, nosebleeds, petechiae, ..."
},
{
"instance_id": 222,
"target_level": "low_health_literacy",
"reward": -0.6,
"prediction": "low_health_literacy",
"prediction_tokens": 416,
"solution_preview": "{\n \"low_health_literacy\": \"A 58-year-old woman went to our clinic with a very painful left shoulder. She had been hurt by someone who was not a doctor trying to fix her shoulder. This made her should..."
},
{
"instance_id": 223,
"target_level": "intermediate_health_literacy",
"reward": -0.6666666666666666,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 569,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 58-year-old woman visited our outpatient department with severe pain in her left shoulder. The pain started after a well-meaning but untrained person tried to ma..."
},
{
"instance_id": 224,
"target_level": "proficient_health_literacy",
"reward": -0.125,
"prediction": "proficient_health_literacy",
"prediction_tokens": 610,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 58-year-old female patient with a history of diabetes presented to our outpatient department with severe, debilitating pain in her left shoulder. The pain was exac..."
},
{
"instance_id": 225,
"target_level": "low_health_literacy",
"reward": -0.6666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 413,
"solution_preview": "{\n \"low_health_literacy\": \"A 54-year-old man had severe belly pain, vomiting, and lost a lot of weight. He went to the hospital after 20 days because he was very sick. Doctors found that he had two h..."
},
{
"instance_id": 226,
"target_level": "intermediate_health_literacy",
"reward": -1.2857142857142856,
"prediction": "low_health_literacy",
"prediction_tokens": 500,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 54-year-old man from a remote mountain area was rushed to the hospital with severe abdominal pain, vomiting, and weight loss. He had been drinking only water for..."
},
{
"instance_id": 227,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 646,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 54-year-old Caucasian man presented to the emergency department with a 20-day history of abdominal pain, vomiting, and loss of appetite. He had lost 8 kg in weight..."
},
{
"instance_id": 228,
"target_level": "low_health_literacy",
"reward": -0.8571428571428571,
"prediction": "low_health_literacy",
"prediction_tokens": 454,
"solution_preview": "{\n \"low_health_literacy\": \"A 75-year-old woman from Jamaica was admitted to the hospital because she couldn't catch her breath. She had been feeling tired and short of breath for six months. Doctors ..."
},
{
"instance_id": 229,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 75-year-old woman from Jamaica was admitted to the hospital with shortness of breath and fatigue. She had been experiencing these symptoms for six months, but th..."
},
{
"instance_id": 230,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 75-year-old Jamaican woman of African descent was admitted to the hospital with shortness of breath and fatigue. She had been experiencing these symptoms for six m..."
},
{
"instance_id": 231,
"target_level": "low_health_literacy",
"reward": -0.8333333333333334,
"prediction": "low_health_literacy",
"prediction_tokens": 445,
"solution_preview": "{\n \"low_health_literacy\": \"A 12-year-old girl had a big swelling on the back of her neck that hurt and got bigger over 1 year. Doctors used special tests like X-rays and MRIs to see what was causing ..."
},
{
"instance_id": 232,
"target_level": "intermediate_health_literacy",
"reward": -0.5,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 473,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 12-year-old girl had a swelling in the back of her neck that grew bigger over a year. She had pain in the area, which was dull and constant. Imaging tests showed..."
},
{
"instance_id": 233,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 548,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 12-year-old girl presented with a 1-year history of progressive swelling and pain in the back of her neck. Imaging studies, including plain radiographs, MRI, and C..."
},
{
"instance_id": 234,
"target_level": "low_health_literacy",
"reward": -0.8571428571428571,
"prediction": "low_health_literacy",
"prediction_tokens": 432,
"solution_preview": "{\n \"low_health_literacy\": \"A 52-year-old woman had a painful bump on her thumb that hurt for two years. She couldn't do daily activities because of the pain. A special test called an ultrasound helpe..."
},
{
"instance_id": 235,
"target_level": "intermediate_health_literacy",
"reward": -0.8888888888888888,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 543,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 52-year-old woman had been experiencing chronic pain in her left thumb for two years. The pain was burning and radiated to the tip of her thumb, making it diffic..."
},
{
"instance_id": 236,
"target_level": "proficient_health_literacy",
"reward": -0.3333333333333333,
"prediction": "proficient_health_literacy",
"prediction_tokens": 601,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 52-year-old woman presented with chronic, burning pain in her left thumb's distal phalanx, which had been ongoing for two years and significantly impacted her dail..."
},
{
"instance_id": 237,
"target_level": "low_health_literacy",
"reward": -0.42857142857142855,
"prediction": "low_health_literacy",
"prediction_tokens": 432,
"solution_preview": "{\n \"low_health_literacy\": \"A 34-year-old woman had severe lower belly pain and some bleeding. She went to the hospital and had tests like an ultrasound and MRI. The doctors found out she had a rare k..."
},
{
"instance_id": 238,
"target_level": "intermediate_health_literacy",
"reward": -0.5714285714285714,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 471,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 34-year-old woman was rushed to the hospital with severe lower abdominal pain and light vaginal bleeding. She had not had a period in a while and didn't know whe..."
},
{
"instance_id": 239,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 455,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 34-year-old woman, gravida 2, para 1, presented with lower abdominal pain and slight vaginal bleeding at 13 weeks gestation. Transabdominal ultrasound and MRI reve..."
},
{
"instance_id": 240,
"target_level": "low_health_literacy",
"reward": -0.625,
"prediction": "low_health_literacy",
"prediction_tokens": 461,
"solution_preview": "{\n \"low_health_literacy\": \"A 40-year-old mother, who was pregnant with twins, came to our hospital at 28 weeks. She had a headache, stomach pain, and swelling in her legs. Her blood pressure was high..."
},
{
"instance_id": 241,
"target_level": "intermediate_health_literacy",
"reward": -0.3333333333333333,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 602,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 40-year-old woman, who was pregnant with twins, was referred to our hospital at 28 weeks due to high blood pressure and other symptoms. She had a history of 13 p..."
},
{
"instance_id": 242,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 546,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 40-year-old woman, pregnant with twins, was referred to our hospital at 28 weeks due to pre-eclampsia and a suspected molar pregnancy. She presented with headache,..."
},
{
"instance_id": 243,
"target_level": "low_health_literacy",
"reward": -1.375,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 474,
"solution_preview": "{\n \"low_health_literacy\": \"A 21-year-old woman was admitted to the hospital with a large liver tumor. The tumor was found one month ago during a check-up. It was not causing any pain or discomfort. S..."
},
{
"instance_id": 244,
"target_level": "intermediate_health_literacy",
"reward": -0.5,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 475,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 21-year-old woman was admitted to the hospital with a large liver tumor. The tumor was found a month earlier during a routine check-up. Initial tests showed that..."
},
{
"instance_id": 245,
"target_level": "proficient_health_literacy",
"reward": -0.5454545454545454,
"prediction": "proficient_health_literacy",
"prediction_tokens": 660,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 21-year-old woman was admitted to our department for a giant hepatic tumor measuring 22 cm \u00d7 20 cm \u00d7 10 cm that completely replaced the left hepatic lobe. Laborato..."
},
{
"instance_id": 246,
"target_level": "low_health_literacy",
"reward": -0.375,
"prediction": "low_health_literacy",
"prediction_tokens": 475,
"solution_preview": "{\n \"low_health_literacy\": \"A 79-year-old man had a rare heart infection called endocarditis. He had a pre-existing heart condition and was not taking any medications. He went to the hospital with sym..."
},
{
"instance_id": 247,
"target_level": "intermediate_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A Rare Case of Heart Infection: A 79-Year-Old Man's Story\n\nA 79-year-old man was admitted to the hospital with symptoms of heart failure, including shortness of br..."
},
{
"instance_id": 248,
"target_level": "proficient_health_literacy",
"reward": -0.2857142857142857,
"prediction": "proficient_health_literacy",
"prediction_tokens": 531,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 79-year-old man with a history of degenerative valvular heart disease presented with heart failure symptoms, including shortness of breath and leg swelling. Despit..."
},
{
"instance_id": 249,
"target_level": "low_health_literacy",
"reward": -0.7142857142857143,
"prediction": "low_health_literacy",
"prediction_tokens": 480,
"solution_preview": "{\n \"low_health_literacy\": \"A 7-year-old girl had strange behaviors after a special treatment to help her body make new blood cells. She had been diagnosed with a condition that affects her bone marro..."
},
{
"instance_id": 250,
"target_level": "intermediate_health_literacy",
"reward": -0.36363636363636365,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 634,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 7-year-old girl was admitted to the hospital due to unusual behaviors that had been occurring for several months. These behaviors included episodes of eye rollin..."
},
{
"instance_id": 251,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "proficient_health_literacy\n\n[[ ## completed",
"prediction_tokens": 799,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 7-year-old girl was admitted to Wuhan Children's Hospital due to noticeable behavioral changes over the past months. These changes included episodes of eye rolling..."
},
{
"instance_id": 252,
"target_level": "low_health_literacy",
"reward": -0.8,
"prediction": "low_health_literacy",
"prediction_tokens": 432,
"solution_preview": "{\n \"low_health_literacy\": \"A 25-year-old woman with a serious liver disease got an infection in her arm from a vein used for medicine. She had been in the hospital for a long time and was very sick. ..."
},
{
"instance_id": 253,
"target_level": "intermediate_health_literacy",
"reward": -0.14285714285714285,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 522,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 25-year-old woman with a rare liver condition was admitted to the hospital with symptoms of fatigue, jaundice, and swelling in her lower limbs. She had a history..."
},
{
"instance_id": 254,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 679,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 25-year-old woman with liver cirrhosis due to autoimmune hepatitis presented with fatigue, jaundice, and swelling in her lower limbs. She had been taking prednisol..."
},
{
"instance_id": 255,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "low_health_literacy",
"prediction_tokens": 437,
"solution_preview": "{\n \"low_health_literacy\": \"A 51-year-old woman had a condition called Fabry disease. She had fluid around her heart and her heart was getting bigger. She was taking medicine to help, but it wasn't wo..."
},
{
"instance_id": 256,
"target_level": "intermediate_health_literacy",
"reward": -0.7142857142857143,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 557,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 51-year-old woman with a history of a genetic disorder called Fabry disease (FD) was admitted to the hospital due to a buildup of fluid in the sac surrounding he..."
},
{
"instance_id": 257,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 683,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 51-year-old Japanese woman with a history of Fabry disease (FD) presented with pericardial effusion. Despite regular administration of agalsidase alfa every 2 week..."
},
{
"instance_id": 258,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "### Low Health Literacy Version\n\n{\n \"low_health_literacy\": \"A 72-year-old man had a big surgery to remove his voice box. He uses a special device to help him talk. For 17 years, this device worked pe..."
},
{
"instance_id": 259,
"target_level": "intermediate_health_literacy",
"reward": 0.625,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 531,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 72-year-old man who had his larynx removed and a voice prosthesis implanted 17 years ago came to our voice clinic with trouble swallowing and leakage around the ..."
},
{
"instance_id": 260,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 563,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 72-year-old patient with a total laryngectomy and tracheoesophageal voice prosthesis (VP) presented to our voice clinic with complaints of difficulty swallowing an..."
},
{
"instance_id": 261,
"target_level": "low_health_literacy",
"reward": -1.6,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 425,
"solution_preview": "{\n \"low_health_literacy\": \"A 24-year-old man with rheumatoid arthritis has been losing his vision in both eyes for four years. His eyes have thinning and bulging in the outer edges, with blood vessel..."
},
{
"instance_id": 262,
"target_level": "intermediate_health_literacy",
"reward": -0.25,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 526,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 24-year-old man with a history of rheumatoid arthritis has been experiencing vision problems in both eyes for four years. His symptoms started with eye irritatio..."
},
{
"instance_id": 263,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 24-year-old man with a history of rheumatoid arthritis presented with progressive vision loss over four years. His symptoms began with bilateral ocular irritation,..."
},
{
"instance_id": 264,
"target_level": "low_health_literacy",
"reward": -1.625,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 460,
"solution_preview": "{\n \"low_health_literacy\": \"A 67-year-old man had severe pain in his chest and trouble breathing. He also had pain and weakness in his right shoulder and arm. Doctors used special tests to find the ca..."
},
{
"instance_id": 265,
"target_level": "intermediate_health_literacy",
"reward": -0.5714285714285714,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 494,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 67-year-old man had severe pain in his right side and difficulty breathing. He also had pain and weakness in his right shoulder and arm. Tests showed that he had..."
},
{
"instance_id": 266,
"target_level": "proficient_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 67-year-old male patient presented with severe pain in the right side of his chest and shortness of breath, along with pain and weakness in his right shoulder and ..."
},
{
"instance_id": 267,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "low_health_literacy",
"prediction_tokens": 398,
"solution_preview": "{\n \"low_health_literacy\": \"A 65-year-old woman had a problem with her pituitary gland that was causing her to lose her vision. She had surgery to remove the problem, and a special material called chi..."
},
{
"instance_id": 268,
"target_level": "intermediate_health_literacy",
"reward": -0.42857142857142855,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 494,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 65-year-old woman experienced progressive vision loss in both eyes, which worsened over 10 months. She also had a sudden loss of consciousness, prompting her hos..."
},
{
"instance_id": 269,
"target_level": "proficient_health_literacy",
"reward": -0.2222222222222222,
"prediction": "proficient_health_literacy",
"prediction_tokens": 624,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 65-year-old woman presented with progressive bilateral visual loss in her temporal fields, which had occurred over 10 months. Two weeks prior to admission, she exp..."
},
{
"instance_id": 270,
"target_level": "low_health_literacy",
"reward": -0.6,
"prediction": "low_health_literacy",
"prediction_tokens": 391,
"solution_preview": "{\n \"low_health_literacy\": \"A man from Bangladesh had diabetes and was feeling very sick. He had a fever, cough, and trouble breathing. He also had a hard time thinking clearly. Doctors did tests and ..."
},
{
"instance_id": 271,
"target_level": "intermediate_health_literacy",
"reward": -1.4444444444444444,
"prediction": "low_health_literacy",
"prediction_tokens": 514,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 48-year-old Bangladeshi man was rushed to the emergency room with difficulty breathing and confusion. He had been experiencing fever, cough, and sputum productio..."
},
{
"instance_id": 272,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 656,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 48-year-old Bangladeshi man with diabetes mellitus presented to the emergency room with symptoms of fever, cough, shortness of breath, and altered mental status. H..."
},
{
"instance_id": 273,
"target_level": "low_health_literacy",
"reward": -0.625,
"prediction": "low_health_literacy",
"prediction_tokens": 470,
"solution_preview": "{\n \"low_health_literacy\": \"A 68-year-old man had a serious blockage in the main artery on one side of his neck. He had a similar problem on the other side 5 months ago. Doctors put a stent in the blo..."
},
{
"instance_id": 274,
"target_level": "intermediate_health_literacy",
"reward": -0.5555555555555556,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 537,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 68-year-old man had a serious blockage in one of the main arteries in his brain. He had a history of a stroke and was taking medication to prevent another one. D..."
},
{
"instance_id": 275,
"target_level": "proficient_health_literacy",
"reward": -0.26666666666666666,
"prediction": "proficient_health_literacy",
"prediction_tokens": 837,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 68-year-old male with severe right internal carotid artery stenosis and left internal carotid artery occlusion underwent right stenosis stent implantation. Post-pr..."
},
{
"instance_id": 276,
"target_level": "low_health_literacy",
"reward": 0.75,
"prediction": "low_health_literacy",
"prediction_tokens": 455,
"solution_preview": "{\n \"low_health_literacy\": \"A 31-year-old woman from Sudan came to Canada with her 5 kids in 2017. She's a refugee and was diagnosed with HIV and bad teeth. She's very stressed because she's afraid of..."
},
{
"instance_id": 277,
"target_level": "intermediate_health_literacy",
"reward": -0.125,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 501,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 31-year-old woman from Sudan arrived in Canada as a refugee with her five children in 2017. She was diagnosed with HIV and severe tooth decay during her initial ..."
},
{
"instance_id": 278,
"target_level": "proficient_health_literacy",
"reward": -1.1428571428571428,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 557,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 31-year-old Sudanese woman, who fled to Canada with her five children in 2017, was diagnosed with HIV and severe dental caries during her initial medical evaluatio..."
},
{
"instance_id": 279,
"target_level": "low_health_literacy",
"reward": -0.2857142857142857,
"prediction": "low_health_literacy",
"prediction_tokens": 444,
"solution_preview": "{\n \"low_health_literacy\": \"A 72-year-old man had severe pain in his penis. He had been on dialysis for 4 years because of kidney damage from diabetes. Doctors found black and yellow dead tissue on hi..."
},
{
"instance_id": 280,
"target_level": "intermediate_health_literacy",
"reward": -0.2857142857142857,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 481,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 72-year-old man was referred to the hospital for severe pain in his penis. He had been undergoing dialysis for four years due to diabetes-related kidney damage. ..."
},
{
"instance_id": 281,
"target_level": "proficient_health_literacy",
"reward": -0.1111111111111111,
"prediction": "proficient_health_literacy",
"prediction_tokens": 606,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 72-year-old male patient with a 4-year history of dialysis therapy for diabetic nephropathy presented with penile pain. He had a complex medical history, including..."
},
{
"instance_id": 282,
"target_level": "low_health_literacy",
"reward": -1.0,
"prediction": "",
"prediction_tokens": 0,
"solution_preview": "### Low Health Literacy Version\n\n{\n \"low_health_literacy\": \"A 76-year-old man went to the emergency room because he was feeling weak and confused. He had been getting weaker over a few months and was..."
},
{
"instance_id": 283,
"target_level": "intermediate_health_literacy",
"reward": -1.5714285714285714,
"prediction": "low_health_literacy",
"prediction_tokens": 510,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 76-year-old man with diabetes and high blood pressure came to the emergency room feeling weak and confused. He had been getting weaker over a few months and had ..."
},
{
"instance_id": 284,
"target_level": "proficient_health_literacy",
"reward": -0.3333333333333333,
"prediction": "proficient_health_literacy",
"prediction_tokens": 521,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 76-year-old male with a history of hypertension, diabetes, and a previous ischemic stroke presented to the emergency department with progressive weakness and encep..."
},
{
"instance_id": 285,
"target_level": "low_health_literacy",
"reward": -0.6666666666666666,
"prediction": "low_health_literacy",
"prediction_tokens": 405,
"solution_preview": "{\n \"low_health_literacy\": \"A 71-year-old man had a sudden stroke. He had trouble speaking, was weak on one side of his body, and had trouble controlling his bladder. Doctors found a small tumor in hi..."
},
{
"instance_id": 286,
"target_level": "intermediate_health_literacy",
"reward": -0.14285714285714285,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 484,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 71-year-old man suddenly experienced symptoms of a stroke, including loss of bladder control, weakness in his right leg, and trouble speaking. He also had facial..."
},
{
"instance_id": 287,
"target_level": "proficient_health_literacy",
"reward": 0.0,
"prediction": "proficient_health_literacy",
"prediction_tokens": 624,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 71-year-old man presented with sudden symptoms of stroke, including urinary incontinence, weakness in his right lower limb, and trouble speaking. Physical examinat..."
},
{
"instance_id": 288,
"target_level": "low_health_literacy",
"reward": 0.25,
"prediction": "low_health_literacy",
"prediction_tokens": 437,
"solution_preview": "{\n \"low_health_literacy\": \"A 60-year-old man with a long-term bowel problem called Crohn's disease had parts of his intestine removed. This left him with a short bowel, making it hard for his body to..."
},
{
"instance_id": 289,
"target_level": "intermediate_health_literacy",
"reward": -1.5,
"prediction": "low_health_literacy",
"prediction_tokens": 415,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 60-year-old man with Crohn's disease had a serious complication called short bowel syndrome after multiple surgeries to remove parts of his intestine. He was dri..."
},
{
"instance_id": 290,
"target_level": "proficient_health_literacy",
"reward": -0.14285714285714285,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 596,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 60-year-old male patient with Crohn's disease, who had undergone multiple intestinal resections, presented to the emergency department with symptoms of headache, n..."
},
{
"instance_id": 291,
"target_level": "low_health_literacy",
"reward": -1.8571428571428572,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 463,
"solution_preview": "{\n \"low_health_literacy\": \"A 53-year-old woman with stage IVB endometrial cancer had a tumor in her colon and rectum. After four rounds of chemotherapy, her cancer spread to other parts of her body. ..."
},
{
"instance_id": 292,
"target_level": "intermediate_health_literacy",
"reward": -0.5,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 538,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 53-year-old woman with stage IVB endometrial cancer had a tumor in her colon and rectum. After four cycles of chemotherapy, her cancer had spread to other parts ..."
},
{
"instance_id": 293,
"target_level": "proficient_health_literacy",
"reward": -0.2727272727272727,
"prediction": "proficient_health_literacy",
"prediction_tokens": 674,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 53-year-old woman with stage IVB endometrial cancer and rectal metastases underwent four cycles of paclitaxel-carboplatin therapy. Following treatment, she experie..."
},
{
"instance_id": 294,
"target_level": "low_health_literacy",
"reward": -0.2222222222222222,
"prediction": "low_health_literacy",
"prediction_tokens": 484,
"solution_preview": "{\n \"low_health_literacy\": \"A 57-year-old woman had trouble speaking, walking, and moving her body. She had weakness, stiffness, and cramping in her legs. She also had trouble with balance and falling..."
},
{
"instance_id": 295,
"target_level": "intermediate_health_literacy",
"reward": -0.1111111111111111,
"prediction": "intermediate_health_literacy",
"prediction_tokens": 510,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 57-year-old woman experienced weakness, difficulty walking, and speech problems over a year. She initially had trouble with her left side, but the symptoms sprea..."
},
{
"instance_id": 296,
"target_level": "proficient_health_literacy",
"reward": -0.1111111111111111,
"prediction": "proficient_health_literacy",
"prediction_tokens": 794,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 57-year-old right-handed female presented to a neurology clinic with weakness, hypophonia, and difficulty walking. Her symptoms began approximately one year prior,..."
},
{
"instance_id": 297,
"target_level": "low_health_literacy",
"reward": -0.8,
"prediction": "low_health_literacy",
"prediction_tokens": 414,
"solution_preview": "{\n \"low_health_literacy\": \"A 58-year-old woman with a history of Sj\u00f6gren's syndrome took an herbal supplement before bed. The next day, she felt her heart racing, was sweating a lot, and had a bad fe..."
},
{
"instance_id": 298,
"target_level": "intermediate_health_literacy",
"reward": -1.3333333333333333,
"prediction": "low_health_literacy",
"prediction_tokens": 456,
"solution_preview": "{\n \"intermediate_health_literacy\": \"A 58-year-old woman with a history of Sj\u00f6gren's syndrome was experiencing symptoms like excessive sweating, feeling unwell, nausea, and a rapid heartbeat. She had ..."
},
{
"instance_id": 299,
"target_level": "proficient_health_literacy",
"reward": -0.16666666666666666,
"prediction": "proficient_health_literacy",
"prediction_tokens": 534,
"solution_preview": "{\n \"proficient_health_literacy\": \"A 58-year-old Caucasian female with a history of Sj\u00f6gren's syndrome and subacute cutaneous lupus erythematosus presented to our primary care office with symptoms of ..."
}
]
} |