File size: 349,978 Bytes
d114c23 | 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 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 | [
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1261.jpg",
"problem": "What type of imaging technique would be employed to obtain this image? A)Optical Coherence Tomography (OCT), B)Electroencephalography (EEG), C)Endoscopy, D)Fluoroscopy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1139.jpg",
"problem": "Which imaging technique is employed to obtain this image? A)Electroencephalography (EEG), B)Magnetic Resonance Imaging (MRI), C)Optical Coherence Tomography (OCT), D)X-ray",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1100.jpg",
"problem": "What specific imaging technique was utilized to obtain this image? A)Mammography, B)Computed Tomography (CT), C)Positron Emission Tomography (PET), D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1088.jpg",
"problem": "What type of imaging technology is employed to obtain this image? A)Optical Coherence Tomography (OCT), B)Computed Tomography (CT), C)Electroencephalography (EEG), D)Fluoroscopy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1338.jpg",
"problem": "What imaging technique is utilized to acquire this image? A)Endoscopy, B)Computed Tomography (CT), C)Optical Coherence Tomography (OCT), D)Ultrasound",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1010.jpg",
"problem": "What specific imaging technique was employed to obtain this image? A)Electroencephalography (EEG), B)Ultrasound, C)Optical Coherence Tomography (OCT), D)Positron Emission Tomography (PET)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1332.jpg",
"problem": "What type of imaging method is employed to capture this image? A)X-ray, B)Optical Coherence Tomography (OCT), C)Ultrasound, D)Electroencephalography (EEG)",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1074.jpg",
"problem": "What type of imaging modality is employed for capturing this image? A)Positron Emission Tomography (PET), B)Optical Coherence Tomography (OCT), C)Electroencephalography (EEG), D)Endoscopy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1179.jpg",
"problem": "What type of imaging technology is utilized to capture this image? A)Thermography, B)Optical Coherence Tomography (OCT), C)Magnetic Resonance Imaging (MRI), D)X-ray",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1283.jpg",
"problem": "What imaging technique is utilized for capturing this image? A)Optical Coherence Tomography (OCT), B)Magnetic Resonance Imaging (MRI), C)Positron Emission Tomography (PET), D)Electroencephalography (EEG)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1006.jpg",
"problem": "What type of imaging technology is utilized to acquire this image? A)Magnetic Resonance Imaging (MRI), B)Optical Coherence Tomography (OCT), C)Computed Tomography (CT), D)Ultrasound",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1037.jpg",
"problem": "What imaging technique is utilized for acquiring this image? A)Endoscopy, B)Thermography, C)Optical Coherence Tomography (OCT), D)Positron Emission Tomography (PET)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1219.jpg",
"problem": "What is the imaging technique that can be employed to obtain this image? A)Optical Coherence Tomography (OCT), B)X-ray, C)Magnetic Resonance Imaging (MRI), D)Computed Tomography (CT)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1256.jpg",
"problem": "Which type of medical imaging is utilized to obtain this image? A)Magnetic Resonance Imaging (MRI), B)Optical Coherence Tomography (OCT), C)Mammography, D)Thermography",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1028.jpg",
"problem": "What technique is employed to obtain this image? A)Fluoroscopy, B)Ultrasound, C)Positron Emission Tomography (PET), D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1113.jpg",
"problem": "What is the method used to obtain this image? A)Fluoroscopy, B)Magnetic Resonance Imaging (MRI), C)Optical Coherence Tomography (OCT), D)Ultrasound",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1245.jpg",
"problem": "What technique is employed to obtain this picture? A)Magnetic Resonance Imaging (MRI), B)Optical Coherence Tomography (OCT), C)Thermography, D)Positron Emission Tomography (PET)",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1278.jpg",
"problem": "What type of imaging device is used to obtain this image? A)Endoscopy, B)Positron Emission Tomography (PET), C)Optical Coherence Tomography (OCT), D)Magnetic Resonance Imaging (MRI)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1189.jpg",
"problem": "What type of imaging modality is utilized to acquire this image? A)Optical Coherence Tomography (OCT), B)Ultrasound, C)Thermography, D)Fluoroscopy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1216.jpg",
"problem": "What is the imaging technique utilized to obtain this image? A)Endoscopy, B)Magnetic Resonance Imaging (MRI), C)Thermography, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1091.jpg",
"problem": "What type of imaging method is employed to obtain this image? A)Fluoroscopy, B)Endoscopy, C)Optical Coherence Tomography (OCT), D)Electroencephalography (EEG)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1301.jpg",
"problem": "What imaging modality is used to capture this image? A)Mammography, B)Ultrasound, C)Optical Coherence Tomography (OCT), D)Endoscopy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1120.jpg",
"problem": "What is the name of the imaging technique employed to capture this image? A)Endoscopy, B)Positron Emission Tomography (PET), C)Optical Coherence Tomography (OCT), D)Computed Tomography (CT)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1290.jpg",
"problem": "Which imaging technique is employed to acquire this visual representation? A)Positron Emission Tomography (PET), B)Ultrasound, C)Optical Coherence Tomography (OCT), D)Thermography",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1282.jpg",
"problem": "What type of imaging is utilized to obtain this image? A)Positron Emission Tomography (PET), B)Optical Coherence Tomography (OCT), C)Ultrasound, D)Fluoroscopy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1258.jpg",
"problem": "What type of imaging technique was used to capture this image? A)Optical Coherence Tomography (OCT), B)X-ray, C)Thermography, D)Computed Tomography (CT)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1346.jpg",
"problem": "What is the imaging modality used to acquire this image? A)Optical Coherence Tomography (OCT), B)Thermography, C)Ultrasound, D)Positron Emission Tomography (PET)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1135.jpg",
"problem": "What type of imaging technology is employed to obtain this image? A)Magnetic Resonance Imaging (MRI), B)Positron Emission Tomography (PET), C)Optical Coherence Tomography (OCT), D)X-ray",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1259.jpg",
"problem": "Which imaging technique is employed to acquire this image? A)Optical Coherence Tomography (OCT), B)Magnetic Resonance Imaging (MRI), C)Electroencephalography (EEG), D)X-ray",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1284.jpg",
"problem": "What type of imaging technology is employed to obtain this image? A)Fluoroscopy, B)Optical Coherence Tomography (OCT), C)Mammography, D)Computed Tomography (CT)",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1209.jpg",
"problem": "What imaging technique was employed to produce this picture? A)X-ray, B)Electroencephalography (EEG), C)Magnetic Resonance Imaging (MRI), D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1180.jpg",
"problem": "What modality of imaging is utilized for capturing this image? A)Optical Coherence Tomography (OCT), B)Fluoroscopy, C)Thermography, D)Ultrasound",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1243.jpg",
"problem": "What type of imaging is employed for capturing this image? A)Optical Coherence Tomography (OCT), B)Electroencephalography (EEG), C)Mammography, D)Positron Emission Tomography (PET)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1040.jpg",
"problem": "What is the name of the imaging technique that is used to obtain this image? A)Thermography, B)Mammography, C)Ultrasound, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1009.jpg",
"problem": "What is the imaging technique employed to produce this image? A)Positron Emission Tomography (PET), B)Computed Tomography (CT), C)Mammography, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1020.jpg",
"problem": "What is the imaging modality used to acquire this image? A)Ultrasound, B)Optical Coherence Tomography (OCT), C)X-ray, D)Endoscopy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1266.jpg",
"problem": "What specific imaging technique was utilized to capture this image? A)Electroencephalography (EEG), B)Thermography, C)Fluoroscopy, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1257.jpg",
"problem": "What imaging modality is used to capture this image? A)Optical Coherence Tomography (OCT), B)Fluoroscopy, C)Mammography, D)Computed Tomography (CT)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1228.jpg",
"problem": "What is the imaging modality that was utilized to capture this image? A)Thermography, B)Ultrasound, C)Optical Coherence Tomography (OCT), D)Computed Tomography (CT)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1221.jpg",
"problem": "What is the imaging modality used to capture this image? A)Optical Coherence Tomography (OCT), B)Endoscopy, C)Thermography, D)Computed Tomography (CT)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1091.jpg",
"problem": "What method of imaging is employed to obtain this visual representation? A)Optical Coherence Tomography (OCT), B)Ultrasound, C)Positron Emission Tomography (PET), D)Magnetic Resonance Imaging (MRI)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1318.jpg",
"problem": "Which type of imaging modality is employed to capture this image? A)Optical Coherence Tomography (OCT), B)Mammography, C)Endoscopy, D)Fluoroscopy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1225.jpg",
"problem": "What modality is utilized to obtain this image? A)Magnetic Resonance Imaging (MRI), B)Optical Coherence Tomography (OCT), C)Fluoroscopy, D)Mammography",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1197.jpg",
"problem": "What specific imaging technique is utilized for the acquisition of this image? A)Ultrasound, B)Optical Coherence Tomography (OCT), C)X-ray, D)Magnetic Resonance Imaging (MRI)",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1010.jpg",
"problem": "What imaging technique is used for capturing this image? A)Fluoroscopy, B)Positron Emission Tomography (PET), C)Electroencephalography (EEG), D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1248.jpg",
"problem": "What type of imaging technology is utilized to obtain this image? A)Mammography, B)Endoscopy, C)Fluoroscopy, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1239.jpg",
"problem": "In what modality is this image captured? A)Ultrasound, B)Positron Emission Tomography (PET), C)Magnetic Resonance Imaging (MRI), D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1120.jpg",
"problem": "What specific imaging technique is utilized for capturing this image? A)Optical Coherence Tomography (OCT), B)Mammography, C)Magnetic Resonance Imaging (MRI), D)X-ray",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1093.jpg",
"problem": "What type of imaging technique is utilized to generate this image? A)Positron Emission Tomography (PET), B)Electroencephalography (EEG), C)Optical Coherence Tomography (OCT), D)Magnetic Resonance Imaging (MRI)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1073.jpg",
"problem": "What type of imaging technique would be employed to obtain this image? A)Endoscopy, B)X-ray, C)Thermography, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1107.jpg",
"problem": "What type of imaging technology is used to capture this image? A)Electroencephalography (EEG), B)Magnetic Resonance Imaging (MRI), C)Computed Tomography (CT), D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1180.jpg",
"problem": "What imaging modality is utilized for obtaining this image? A)Optical Coherence Tomography (OCT), B)Ultrasound, C)Positron Emission Tomography (PET), D)Electroencephalography (EEG)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1060.jpg",
"problem": "What specific imaging technique is employed to acquire this visual representation? A)Positron Emission Tomography (PET), B)Optical Coherence Tomography (OCT), C)Mammography, D)Endoscopy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1009.jpg",
"problem": "Which imaging modality is employed to acquire this image? A)Magnetic Resonance Imaging (MRI), B)Thermography, C)Optical Coherence Tomography (OCT), D)Ultrasound",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1050.jpg",
"problem": "What specific type of imaging is employed to obtain this visual representation? A)Thermography, B)Optical Coherence Tomography (OCT), C)Endoscopy, D)Positron Emission Tomography (PET)",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1252.jpg",
"problem": "What type of imaging technique is utilized for capturing this image? A)Mammography, B)Electroencephalography (EEG), C)Optical Coherence Tomography (OCT), D)Computed Tomography (CT)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1199.jpg",
"problem": "What type of medical imaging is employed for capturing this image? A)Optical Coherence Tomography (OCT), B)Ultrasound, C)Magnetic Resonance Imaging (MRI), D)Mammography",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1146.jpg",
"problem": "What type of imaging modality is utilized for capturing this image? A)Mammography, B)Optical Coherence Tomography (OCT), C)Thermography, D)Ultrasound",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1172.jpg",
"problem": "What imaging modality is utilized to obtain this image? A)Mammography, B)Magnetic Resonance Imaging (MRI), C)Endoscopy, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1206.jpg",
"problem": "What is the imaging technique employed to capture this image? A)Optical Coherence Tomography (OCT), B)Fluoroscopy, C)Positron Emission Tomography (PET), D)Thermography",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1016.jpg",
"problem": "What type of imaging technique is utilized for obtaining this image? A)Endoscopy, B)Mammography, C)Optical Coherence Tomography (OCT), D)Electroencephalography (EEG)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1109.jpg",
"problem": "What type of imaging modality is utilized for capturing this image? A)Computed Tomography (CT), B)Electroencephalography (EEG), C)Optical Coherence Tomography (OCT), D)Thermography",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1126.jpg",
"problem": "Which imaging technique is employed to acquire this image? A)Mammography, B)Electroencephalography (EEG), C)Positron Emission Tomography (PET), D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1267.jpg",
"problem": "What type of imaging technique is utilized to capture this image? A)Electroencephalography (EEG), B)X-ray, C)Optical Coherence Tomography (OCT), D)Magnetic Resonance Imaging (MRI)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1025.jpg",
"problem": "What type of imaging modality is utilized to capture this image? A)Mammography, B)Ultrasound, C)Optical Coherence Tomography (OCT), D)Endoscopy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1336.jpg",
"problem": "What type of imaging technology is employed for the acquisition of this image? A)X-ray, B)Optical Coherence Tomography (OCT), C)Positron Emission Tomography (PET), D)Endoscopy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1306.jpg",
"problem": "What imaging modality is used to capture this image? A)Fluoroscopy, B)Endoscopy, C)Mammography, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1251.jpg",
"problem": "What imaging technique is employed to capture this image? A)Magnetic Resonance Imaging (MRI), B)Optical Coherence Tomography (OCT), C)Electroencephalography (EEG), D)X-ray",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1308.jpg",
"problem": "What visual abnormality is depicted in this image? A)Conjunctivitis, B)No abnormality detected (normal), C)Glaucoma, D)Cataracts",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1214.jpg",
"problem": "What is the particular anomaly visualized in this picture? A)No abnormality detected (normal), B)Corneal ulcer, C)Retinitis pigmentosa, D)Glaucoma",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1033.jpg",
"problem": "What is the term for the specific anomaly depicted in this visual representation? A)Cataracts, B)Retinitis pigmentosa, C)No abnormality detected (normal), D)Optic nerve atrophy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1269.jpg",
"problem": "What is the identified irregularity captured in this image? A)Conjunctivitis, B)Cataracts, C)No abnormality detected (normal), D)Optic nerve atrophy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1299.jpg",
"problem": "What particular irregularity is depicted in this image? A)No abnormality detected (normal), B)Corneal ulcer, C)Cataracts, D)Conjunctivitis",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1205.jpg",
"problem": "What is the precise aberration exhibited in this image? A)Optic nerve atrophy, B)No abnormality detected (normal), C)Uveitis, D)Retinitis pigmentosa",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1256.jpg",
"problem": "What specific pathological condition is depicted in the given image? A)Glaucoma, B)Conjunctivitis, C)Retinal detachment, D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1114.jpg",
"problem": "What is the finding depicted in this image? A)Retinitis pigmentosa, B)No abnormality detected (normal), C)Retinal detachment, D)Optic nerve atrophy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1096.jpg",
"problem": "What is the specific abnormality shown in this image? A)Glaucoma, B)Uveitis, C)Corneal ulcer, D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1239.jpg",
"problem": "What is the evident anomaly demonstrated in this image? A)Glaucoma, B)No abnormality detected (normal), C)Diabetic retinopathy, D)Corneal ulcer",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1115.jpg",
"problem": "What is the term for the specific abnormality depicted in the image? A)Conjunctivitis, B)No abnormality detected (normal), C)Macular degeneration, D)Corneal ulcer",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1049.jpg",
"problem": "What is the name of the condition present in this image? A)No abnormality detected (normal), B)Macular degeneration, C)Conjunctivitis, D)Retinitis pigmentosa",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1328.jpg",
"problem": "What is the term used to describe the specific abnormality depicted in this image? A)Diabetic retinopathy, B)No abnormality detected (normal), C)Cataracts, D)Retinal detachment",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1074.jpg",
"problem": "What does this image demonstrate as an abnormality? A)Retinal detachment, B)Macular degeneration, C)No abnormality detected (normal), D)Optic nerve atrophy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1172.jpg",
"problem": "What is the specific abnormality shown in this image? A)Cataracts, B)No abnormality detected (normal), C)Corneal ulcer, D)Diabetic retinopathy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1200.jpg",
"problem": "What is the term for the distinct irregularity depicted in this image? A)Diabetic retinopathy, B)Optic nerve atrophy, C)Retinal detachment, D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1057.jpg",
"problem": "What is the diagnosis for the condition depicted in the provided picture? A)No abnormality detected (normal), B)Conjunctivitis, C)Optic nerve atrophy, D)Corneal ulcer",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1087.jpg",
"problem": "What specific condition is being depicted in the image? A)Retinitis pigmentosa, B)Conjunctivitis, C)Macular degeneration, D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1001.jpg",
"problem": "What is the specific abnormality shown in this image? A)Glaucoma, B)Macular degeneration, C)Retinitis pigmentosa, D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1337.jpg",
"problem": "What is the specific abnormality shown in this image? A)Retinitis pigmentosa, B)Cataracts, C)Retinal detachment, D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1286.jpg",
"problem": "What is the condition indicated by the anomaly depicted in this image? A)Uveitis, B)Retinal detachment, C)No abnormality detected (normal), D)Retinitis pigmentosa",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1153.jpg",
"problem": "What specific medical condition is depicted in this image? A)Glaucoma, B)Retinal detachment, C)Uveitis, D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1057.jpg",
"problem": "What is the specific abnormality shown in this image? A)Choroidal Neovascularization (CNV), B)Diabetic retinopathy, C)Cataracts, D)Optic nerve atrophy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1158.jpg",
"problem": "What is the specific abnormality shown in this image? A)Macular degeneration, B)Choroidal Neovascularization (CNV), C)Retinitis pigmentosa, D)Corneal ulcer",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1007.jpg",
"problem": "What is the name of the specific abnormality visible in the provided image? A)Corneal ulcer, B)Macular degeneration, C)Choroidal Neovascularization (CNV), D)Retinitis pigmentosa",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1228.jpg",
"problem": "What is the specific abnormality shown in this image? A)Optic nerve atrophy, B)Choroidal Neovascularization (CNV), C)Conjunctivitis, D)Diabetic retinopathy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1264.jpg",
"problem": "What is the observed anomaly depicted in this image? A)Retinal detachment, B)Choroidal Neovascularization (CNV), C)Macular degeneration, D)Conjunctivitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1231.jpg",
"problem": "What is the specific condition indicated by the depicted anomaly in this image? A)Retinitis pigmentosa, B)Macular degeneration, C)Choroidal Neovascularization (CNV), D)Conjunctivitis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1288.jpg",
"problem": "What is the specific diagnosis depicted by this image? A)Corneal ulcer, B)Choroidal Neovascularization (CNV), C)Cataracts, D)Conjunctivitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1054.jpg",
"problem": "What is the name of the specific abnormality depicted in this image? A)Optic nerve atrophy, B)Macular degeneration, C)Cataracts, D)Choroidal Neovascularization (CNV)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1005.jpg",
"problem": "What is the name of the specific anomaly captured in this image? A)Choroidal Neovascularization (CNV), B)Glaucoma, C)Retinal detachment, D)Corneal ulcer",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1258.jpg",
"problem": "What is the name of the particular anomaly depicted in this image? A)Glaucoma, B)Choroidal Neovascularization (CNV), C)Uveitis, D)Retinitis pigmentosa",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1244.jpg",
"problem": "What is the particular deviation depicted in this picture? A)Choroidal Neovascularization (CNV), B)Retinal detachment, C)Glaucoma, D)Corneal ulcer",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1184.jpg",
"problem": "What specific irregularity is visible in this image? A)Corneal ulcer, B)Retinal detachment, C)Choroidal Neovascularization (CNV), D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1222.jpg",
"problem": "What can be identified from the image as a specific abnormality? A)Retinitis pigmentosa, B)Choroidal Neovascularization (CNV), C)Retinal detachment, D)Conjunctivitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1170.jpg",
"problem": "What is the specific abnormality shown in this image? A)Diabetic retinopathy, B)Conjunctivitis, C)Choroidal Neovascularization (CNV), D)Cataracts",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1197.jpg",
"problem": "What is the name of the specific abnormality observed in this image? A)Choroidal Neovascularization (CNV), B)Conjunctivitis, C)Uveitis, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1187.jpg",
"problem": "What specific condition does this picture depict? A)Corneal ulcer, B)Choroidal Neovascularization (CNV), C)Glaucoma, D)Retinal detachment",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1210.jpg",
"problem": "What can be observed as the specific abnormality in this image? A)Choroidal Neovascularization (CNV), B)Macular degeneration, C)Uveitis, D)Diabetic retinopathy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1344.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)This is a normal oct image., B)The image displays an example of normal retinal pigmentation., C)The abnormality in the image is a result of retinal detachment., D)The image shows a normal blood vessel pattern within the retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1161.jpg",
"problem": "What can be observed about the characteristics of the abnormality seen in this image? A)The image shows a normal blood vessel pattern within the retina., B)This is a normal oct image., C)The abnormality in the image is a result of retinal detachment., D)The abnormality in the image is due to optic nerve atrophy.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1009.jpg",
"problem": "What can you observe about the characteristics of the abnormality depicted in this image? A)The image shows a normal blood vessel pattern within the retina., B)The abnormality in the image is a result of retinal detachment., C)The abnormality in the image is due to optic nerve atrophy., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1094.jpg",
"problem": "What are the distinguishable characteristics of the abnormality observed in this image? A)The image shows a normal blood vessel pattern within the retina., B)The image displays an example of normal retinal pigmentation., C)The abnormality in the image is a result of retinal detachment., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1106.jpg",
"problem": "What are the distinguishing characteristics of the anomaly seen in this image? A)The image shows a normal blood vessel pattern within the retina., B)The choroidal neovascularization in the image is actually a normal aging process., C)This is a normal oct image., D)The abnormality in the image is due to optic nerve atrophy.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1181.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image displays an example of normal retinal pigmentation., B)The abnormality in the image is a result of retinal detachment., C)The image shows a normal blood vessel pattern within the retina., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1096.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image displays an example of normal retinal pigmentation., B)The image shows a normal blood vessel pattern within the retina., C)The abnormality in the image is due to optic nerve atrophy., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1198.jpg",
"problem": "What can you say about the characteristics of the anomaly shown in this image? A)This is a normal oct image., B)The abnormality in the image is a result of retinal detachment., C)The abnormality in the image is due to optic nerve atrophy., D)The image displays an example of normal retinal pigmentation.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1278.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image displays an example of normal retinal pigmentation., B)The abnormality in the image is due to optic nerve atrophy., C)The choroidal neovascularization in the image is actually a normal aging process., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1339.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)This is a normal oct image., B)The abnormality in the image is a result of retinal detachment., C)The abnormality in the image is due to optic nerve atrophy., D)The choroidal neovascularization in the image is actually a normal aging process.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1215.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The abnormality in the image is due to optic nerve atrophy., B)This is a normal oct image., C)The image shows a normal blood vessel pattern within the retina., D)The abnormality in the image is a result of retinal detachment.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1041.jpg",
"problem": "What can be observed regarding the characteristics of the irregularity depicted in this image? A)The image shows a normal blood vessel pattern within the retina., B)This is a normal oct image., C)The abnormality in the image is due to optic nerve atrophy., D)The image displays an example of normal retinal pigmentation.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1288.jpg",
"problem": "What can be observed about the characteristic features of the abnormality visible in this image? A)This is a normal oct image., B)The choroidal neovascularization in the image is actually a normal aging process., C)The image displays an example of normal retinal pigmentation., D)The image shows a normal blood vessel pattern within the retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1089.jpg",
"problem": "What are some distinguishing characteristics of the abnormality depicted in this image? A)This is a normal oct image., B)The abnormality in the image is due to optic nerve atrophy., C)The abnormality in the image is a result of retinal detachment., D)The image shows a normal blood vessel pattern within the retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1049.jpg",
"problem": "What are the characteristics of the abnormality depicted in this image? A)The abnormality in the image is a result of retinal detachment., B)The abnormality in the image is due to optic nerve atrophy., C)The image shows a normal blood vessel pattern within the retina., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1194.jpg",
"problem": "What can be observed about the abnormality depicted in this image? A)The abnormality in the image is a result of retinal detachment., B)The choroidal neovascularization in the image is actually a normal aging process., C)The image shows a normal blood vessel pattern within the retina., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1134.jpg",
"problem": "What are the visible characteristics of the anomaly seen in this image? A)This is a normal oct image., B)The abnormality in the image is a result of retinal detachment., C)The choroidal neovascularization in the image is actually a normal aging process., D)The image displays an example of normal retinal pigmentation.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1207.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The abnormality in the image is due to optic nerve atrophy., B)The image shows a normal blood vessel pattern within the retina., C)This is a normal oct image., D)The abnormality in the image is a result of retinal detachment.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1059.jpg",
"problem": "What can be observed regarding the characteristics of the abnormality seen in this image? A)The choroidal neovascularization in the image is actually a normal aging process., B)This is a normal oct image., C)The image shows a normal blood vessel pattern within the retina., D)The abnormality in the image is a result of retinal detachment.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1074.jpg",
"problem": "What can be observed about the abnormality depicted in this image? A)The choroidal neovascularization in the image is actually a normal aging process., B)The abnormality in the image is a result of retinal detachment., C)This is a normal oct image., D)The image displays an example of normal retinal pigmentation.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1209.jpg",
"problem": "What are some distinguishing features of the anomaly observed in this image? A)The image displays an example of normal retinal pigmentation., B)The abnormality in the image is due to optic nerve atrophy., C)The choroidal neovascularization in the image is actually a normal aging process., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1347.jpg",
"problem": "What are the distinctive characteristics of the anomaly visible in this image? A)The image displays an example of normal retinal pigmentation., B)This is a normal oct image., C)The choroidal neovascularization in the image is actually a normal aging process., D)The abnormality in the image is a result of retinal detachment.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1126.jpg",
"problem": "What can you observe regarding the characteristics of the abnormality in the image? A)The abnormality in the image is a result of retinal detachment., B)This is a normal oct image., C)The choroidal neovascularization in the image is actually a normal aging process., D)The image displays an example of normal retinal pigmentation.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1046.jpg",
"problem": "What can you tell me about the abnormality depicted in this image? A)The abnormality in the image is due to optic nerve atrophy., B)The abnormality in the image is a result of retinal detachment., C)This is a normal oct image., D)The choroidal neovascularization in the image is actually a normal aging process.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1100.jpg",
"problem": "What are the observable characteristics of the abnormality shown in this image? A)The abnormality in the image is due to optic nerve atrophy., B)The abnormality in the image is a result of retinal detachment., C)This is a normal oct image., D)The image displays an example of normal retinal pigmentation.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1122.jpg",
"problem": "What can be observed about the abnormality depicted in this image? A)This is a normal oct image., B)The abnormality in the image is due to optic nerve atrophy., C)The choroidal neovascularization in the image is actually a normal aging process., D)The image displays an example of normal retinal pigmentation.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1111.jpg",
"problem": "What can be observed about the characteristics of the abnormality in this image? A)The image shows a normal blood vessel pattern within the retina., B)The image displays an example of normal retinal pigmentation., C)The abnormality in the image is a result of retinal detachment., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1201.jpg",
"problem": "What are the identifiable characteristics of the anomaly present in this image? A)The abnormality in the image is a result of retinal detachment., B)The image shows a normal blood vessel pattern within the retina., C)The abnormality in the image is due to optic nerve atrophy., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1109.jpg",
"problem": "What are some distinctive characteristics of the abnormality observed in this image? A)The image shows a normal blood vessel pattern within the retina., B)The choroidal neovascularization in the image is actually a normal aging process., C)The image displays an example of normal retinal pigmentation., D)This is a normal oct image.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1236.jpg",
"problem": "What are the characteristics of the abnormality captured in this image? A)The abnormality in the image is due to optic nerve atrophy., B)The choroidal neovascularization in the image is actually a normal aging process., C)This is a normal oct image., D)The abnormality in the image is a result of retinal detachment.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1337.jpg",
"problem": "What are some distinct characteristics of the anomaly captured in this image? A)The image displays an example of normal retinal pigmentation., B)The abnormality in the image is a result of retinal detachment., C)This is a normal oct image., D)The abnormality in the image is due to optic nerve atrophy.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1102.jpg",
"problem": "What are the noticeable characteristics of the abnormality observed in this image? A)The image displays an example of normal retinal pigmentation., B)This is a normal oct image., C)The image shows a normal blood vessel pattern within the retina., D)The choroidal neovascularization in the image is actually a normal aging process.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1286.jpg",
"problem": "What can be observed about the characteristic features of the abnormality depicted in this image? A)The image shows a normal blood vessel pattern within the retina., B)The choroidal neovascularization in the image is actually a normal aging process., C)This is a normal oct image., D)The abnormality in the image is due to optic nerve atrophy.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1294.jpg",
"problem": "What can be observed about the abnormality shown in the image? A)This is a normal oct image., B)The image shows a normal blood vessel pattern within the retina., C)The choroidal neovascularization in the image is actually a normal aging process., D)The abnormality in the image is due to optic nerve atrophy.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1245.jpg",
"problem": "What can be observed regarding the characteristics of the abnormality depicted in this image? A)This is a normal oct image., B)The choroidal neovascularization in the image is actually a normal aging process., C)The abnormality in the image is due to optic nerve atrophy., D)The abnormality in the image is a result of retinal detachment.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1136.jpg",
"problem": "What can you tell me about the characteristic features of the abnormality observed in this image? A)This is a normal oct image., B)The choroidal neovascularization in the image is actually a normal aging process., C)The abnormality in the image is due to optic nerve atrophy., D)The image shows a normal blood vessel pattern within the retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/NORMAL/normal_test_1093.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image shows a normal blood vessel pattern within the retina., B)The image displays an example of normal retinal pigmentation., C)This is a normal oct image., D)The abnormality in the image is due to optic nerve atrophy.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1194.jpg",
"problem": "What are the noticeable characteristics of the abnormality depicted in this image? A)The choroidal neovascularization in the image is actually a normal aging process., B)The image displays an example of normal retinal pigmentation., C)The abnormality in the image is a result of retinal detachment., D)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1105.jpg",
"problem": "What can be observed about the abnormality depicted in this image? A)The choroidal neovascularization in the image is actually a normal aging process., B)The image displays an example of normal retinal pigmentation., C)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., D)The abnormality in the image is due to optic nerve atrophy.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1032.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image displays an example of normal retinal pigmentation., B)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., C)The choroidal neovascularization in the image is actually a normal aging process., D)The image shows a normal blood vessel pattern within the retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1017.jpg",
"problem": "What can be observed about the characteristics of the abnormality depicted in this image? A)The choroidal neovascularization in the image is actually a normal aging process., B)The image displays an example of normal retinal pigmentation., C)The abnormality in the image is due to optic nerve atrophy., D)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1206.jpg",
"problem": "What can be observed about the abnormality in the image in terms of its characteristics? A)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., B)The image shows a normal blood vessel pattern within the retina., C)The abnormality in the image is due to optic nerve atrophy., D)The abnormality in the image is a result of retinal detachment.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1267.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image displays an example of normal retinal pigmentation., B)The abnormality in the image is due to optic nerve atrophy., C)The image shows a normal blood vessel pattern within the retina., D)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1186.jpg",
"problem": "What can you say about the characteristics of the abnormality depicted in this image? A)The choroidal neovascularization in the image is actually a normal aging process., B)The image displays an example of normal retinal pigmentation., C)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., D)The abnormality in the image is a result of retinal detachment.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1263.jpg",
"problem": "What are the distinguishing characteristics of the anomaly in this image? A)The image displays an example of normal retinal pigmentation., B)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., C)The choroidal neovascularization in the image is actually a normal aging process., D)The abnormality in the image is due to optic nerve atrophy.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1137.jpg",
"problem": "What are the distinguishing characteristics of the anomaly seen in this image? A)The abnormality in the image is a result of retinal detachment., B)The abnormality in the image is due to optic nerve atrophy., C)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., D)The choroidal neovascularization in the image is actually a normal aging process.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1081.jpg",
"problem": "What can be observed about the characteristics of the abnormality visible in this image? A)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., B)The abnormality in the image is a result of retinal detachment., C)The choroidal neovascularization in the image is actually a normal aging process., D)The image displays an example of normal retinal pigmentation.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1212.jpg",
"problem": "What are the visible characteristics of the abnormality shown in this image? A)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., B)The image displays an example of normal retinal pigmentation., C)The image shows a normal blood vessel pattern within the retina., D)The abnormality in the image is due to optic nerve atrophy.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1009.jpg",
"problem": "What are the observable characteristics of the anomaly in this image? A)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., B)The abnormality in the image is due to optic nerve atrophy., C)The abnormality in the image is a result of retinal detachment., D)The image displays an example of normal retinal pigmentation.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1036.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The choroidal neovascularization in the image is actually a normal aging process., B)The abnormality in the image is a result of retinal detachment., C)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., D)The image shows a normal blood vessel pattern within the retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1011.jpg",
"problem": "What are the observable characteristics of the anomaly in this image? A)The abnormality in the image is due to optic nerve atrophy., B)The abnormality in the image is a result of retinal detachment., C)The image shows a normal blood vessel pattern within the retina., D)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1333.jpg",
"problem": "What are the distinguishing characteristics of the abnormality seen in the image? A)The image shows a normal blood vessel pattern within the retina., B)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., C)The abnormality in the image is due to optic nerve atrophy., D)The image displays an example of normal retinal pigmentation.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1219.jpg",
"problem": "What are the distinct characteristics of the anomaly visible in this image? A)The image shows a normal blood vessel pattern within the retina., B)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., C)The image displays an example of normal retinal pigmentation., D)The choroidal neovascularization in the image is actually a normal aging process.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1118.jpg",
"problem": "What are the distinct characteristics of the abnormality observed in this image? A)The abnormality in the image is a result of retinal detachment., B)The choroidal neovascularization in the image is actually a normal aging process., C)The image shows a normal blood vessel pattern within the retina., D)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1274.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., B)The abnormality in the image is a result of retinal detachment., C)The image displays an example of normal retinal pigmentation., D)The abnormality in the image is due to optic nerve atrophy.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1056.jpg",
"problem": "What are the characteristics of the abnormality seen in this image? A)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., B)The abnormality in the image is due to optic nerve atrophy., C)The image shows a normal blood vessel pattern within the retina., D)The abnormality in the image is a result of retinal detachment.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1179.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The choroidal neovascularization in the image is actually a normal aging process., B)The image shows a normal blood vessel pattern within the retina., C)The image displays an example of normal retinal pigmentation., D)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1335.jpg",
"problem": "What are the distinguishing features of the anomaly captured in this image? A)The abnormality in the image is due to optic nerve atrophy., B)The image shows a normal blood vessel pattern within the retina., C)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., D)The choroidal neovascularization in the image is actually a normal aging process.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1012.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image shows a normal blood vessel pattern within the retina., B)The choroidal neovascularization in the image is actually a normal aging process., C)The image displays an example of normal retinal pigmentation., D)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1220.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The abnormality in the image is a result of retinal detachment., B)The image shows a normal blood vessel pattern within the retina., C)The choroidal neovascularization in the image is actually a normal aging process., D)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CNV/cnv_val_1052.jpg",
"problem": "What characteristics are observed in the abnormality seen in this image? A)The abnormality in the image is a result of retinal detachment., B)The choroidal neovascularization in the image is actually a normal aging process., C)The choroidal neovascularization appears as abnormal blood vessels growing beneath the retina., D)The image shows a normal blood vessel pattern within the retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1021.jpg",
"problem": "What is the specific abnormality shown in this image? A)Strabismus, B)Optic neuritis, C)Macular Hole (MH), D)Age-related macular degeneration (AMD)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1125.jpg",
"problem": "What is the specific abnormality shown in this image? A)Age-related macular degeneration (AMD), B)Macular Hole (MH), C)Cataracts, D)Retinal detachment",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1256.jpg",
"problem": "What is the specific abnormality shown in this image? A)Age-related macular degeneration (AMD), B)Cataracts, C)Conjunctivitis (pink eye), D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1164.jpg",
"problem": "What is the name for the abnormality depicted in this image? A)Macular Hole (MH), B)Strabismus, C)Optic neuritis, D)Conjunctivitis (pink eye)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1286.jpg",
"problem": "What is the medical condition indicated by the abnormality depicted in this image? A)Macular Hole (MH), B)Age-related macular degeneration (AMD), C)Color blindness, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1305.jpg",
"problem": "What is the name of the medical condition shown in this image? A)Macular Hole (MH), B)Color blindness, C)Conjunctivitis (pink eye), D)Astigmatism",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1226.jpg",
"problem": "What is the medical condition displayed in this image? A)Color blindness, B)Age-related macular degeneration (AMD), C)Macular Hole (MH), D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1337.jpg",
"problem": "What is the specific abnormality shown in this image? A)Astigmatism, B)Macular Hole (MH), C)Glaucoma, D)Age-related macular degeneration (AMD)",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1028.jpg",
"problem": "What is the specific abnormality shown in this image? A)Macular Hole (MH), B)Astigmatism, C)Age-related macular degeneration (AMD), D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1244.jpg",
"problem": "What is the specific abnormality shown in this image? A)Astigmatism, B)Macular Hole (MH), C)Retinal detachment, D)Cataracts",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1101.jpg",
"problem": "What is the name of the condition displayed in this image? A)Retinal detachment, B)Macular Hole (MH), C)Conjunctivitis (pink eye), D)Optic neuritis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1094.jpg",
"problem": "What is the specific abnormality shown in this image? A)Macular Hole (MH), B)Age-related macular degeneration (AMD), C)Strabismus, D)Astigmatism",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1298.jpg",
"problem": "What is the identified pathology depicted in this image? A)Strabismus, B)Macular Hole (MH), C)Cataracts, D)Glaucoma",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1041.jpg",
"problem": "What is the term used to describe the specific abnormality depicted in this image? A)Macular Hole (MH), B)Age-related macular degeneration (AMD), C)Cataracts, D)Astigmatism",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1334.jpg",
"problem": "What is the name of the medical condition depicted in this picture? A)Glaucoma, B)Strabismus, C)Age-related macular degeneration (AMD), D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1200.jpg",
"problem": "What is the specific abnormality shown in this image? A)Macular Hole (MH), B)Cataracts, C)Retinal detachment, D)Optic neuritis",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1287.jpg",
"problem": "What is the name of the medical condition shown in this image? A)Glaucoma, B)Cataracts, C)Macular Hole (MH), D)Optic neuritis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1328.jpg",
"problem": "What is the particular abnormality indicated by the image? A)Macular Hole (MH), B)Strabismus, C)Optic neuritis, D)Astigmatism",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1347.jpg",
"problem": "What is the name given to the particular abnormality depicted in this image? A)Retinal detachment, B)Astigmatism, C)Color blindness, D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1281.jpg",
"problem": "What is the name of the specific abnormality depicted in this image? A)Glaucoma, B)Corneal ulcer, C)Macular Hole (MH), D)Optic neuritis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1276.jpg",
"problem": "What is the specific abnormality shown in this image? A)Macular Hole (MH), B)Conjunctivitis (pink eye), C)Optic neuritis, D)Astigmatism",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1107.jpg",
"problem": "What is the condition specifically depicted in this image? A)Optic neuritis, B)Age-related macular degeneration (AMD), C)Macular Hole (MH), D)Retinal detachment",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1178.jpg",
"problem": "Which medical condition is depicted in this image? A)Retinal detachment, B)Age-related macular degeneration (AMD), C)Conjunctivitis (pink eye), D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1147.jpg",
"problem": "What is the specific abnormality shown in this image? A)Astigmatism, B)Retinal detachment, C)Macular Hole (MH), D)Strabismus",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1201.jpg",
"problem": "What is the specific abnormality shown in this image? A)Optic neuritis, B)Retinal detachment, C)Macular Hole (MH), D)Color blindness",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1002.jpg",
"problem": "What is the name of the specific condition depicted in this picture? A)Glaucoma, B)Optic neuritis, C)Macular Hole (MH), D)Retinal detachment",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1052.jpg",
"problem": "What is the name of the specific abnormality depicted in the provided image? A)Age-related macular degeneration (AMD), B)Strabismus, C)Retinal detachment, D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1315.jpg",
"problem": "What is the specific abnormality shown in this image? A)Astigmatism, B)Optic neuritis, C)Retinal detachment, D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1257.jpg",
"problem": "What is the specific abnormality shown in this image? A)Macular Hole (MH), B)Corneal ulcer, C)Color blindness, D)Optic neuritis",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1086.jpg",
"problem": "What is the specific abnormality shown in this image? A)Conjunctivitis (pink eye), B)Optic neuritis, C)Diabetic Retinopathy (DR), D)Astigmatism",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1342.jpg",
"problem": "What is the term for the specific abnormality depicted in this image? A)Diabetic Retinopathy (DR), B)Corneal ulcer, C)Age-related macular degeneration (AMD), D)Conjunctivitis (pink eye)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1195.jpg",
"problem": "What is the term used to describe the specific abnormality depicted in this image? A)Glaucoma, B)Age-related macular degeneration (AMD), C)Diabetic Retinopathy (DR), D)Retinal detachment",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1008.jpg",
"problem": "What is the term used to describe the specific abnormality depicted in this image? A)Glaucoma, B)Diabetic Retinopathy (DR), C)Age-related macular degeneration (AMD), D)Color blindness",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1192.jpg",
"problem": "What is the name of the specific condition illustrated in this image? A)Optic neuritis, B)Diabetic Retinopathy (DR), C)Cataracts, D)Age-related macular degeneration (AMD)",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1302.jpg",
"problem": "What is the medical term for the abnormality depicted in this image? A)Color blindness, B)Age-related macular degeneration (AMD), C)Conjunctivitis (pink eye), D)Diabetic Retinopathy (DR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1209.jpg",
"problem": "What is the name for the medical condition exhibited in this image? A)Diabetic Retinopathy (DR), B)Strabismus, C)Astigmatism, D)Color blindness",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1231.jpg",
"problem": "What is the specific abnormality shown in this image? A)Corneal ulcer, B)Astigmatism, C)Color blindness, D)Diabetic Retinopathy (DR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1004.jpg",
"problem": "What is the name given to the particular abnormality depicted in this image? A)Conjunctivitis (pink eye), B)Diabetic Retinopathy (DR), C)Strabismus, D)Glaucoma",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1210.jpg",
"problem": "What is the specific condition depicted in this visual representation? A)Color blindness, B)Diabetic Retinopathy (DR), C)Corneal ulcer, D)Age-related macular degeneration (AMD)",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1208.jpg",
"problem": "What is the name of the specific abnormality visible in the image? A)Diabetic Retinopathy (DR), B)Optic neuritis, C)Retinal detachment, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1092.jpg",
"problem": "What is the condition that is depicted in this image? A)Optic neuritis, B)Conjunctivitis (pink eye), C)Age-related macular degeneration (AMD), D)Diabetic Retinopathy (DR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1028.jpg",
"problem": "What is the specific abnormality shown in this image? A)Retinal detachment, B)Glaucoma, C)Diabetic Retinopathy (DR), D)Corneal ulcer",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1347.jpg",
"problem": "What is the specific abnormality shown in this image? A)Cataracts, B)Optic neuritis, C)Diabetic Retinopathy (DR), D)Color blindness",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1038.jpg",
"problem": "What diagnosis does this image depict? A)Astigmatism, B)Cataracts, C)Diabetic Retinopathy (DR), D)Conjunctivitis (pink eye)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1171.jpg",
"problem": "What is the medical condition indicated by the anomaly depicted in this picture? A)Diabetic Retinopathy (DR), B)Conjunctivitis (pink eye), C)Corneal ulcer, D)Age-related macular degeneration (AMD)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1020.jpg",
"problem": "What is the name of the specific irregularity depicted in this picture? A)Color blindness, B)Optic neuritis, C)Corneal ulcer, D)Diabetic Retinopathy (DR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1309.jpg",
"problem": "What is the term for the specific condition presented in this image? A)Astigmatism, B)Glaucoma, C)Diabetic Retinopathy (DR), D)Color blindness",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1013.jpg",
"problem": "What is the medical term for the specific abnormality depicted in this image? A)Diabetic Retinopathy (DR), B)Retinal detachment, C)Optic neuritis, D)Conjunctivitis (pink eye)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1256.jpg",
"problem": "What are some distinguishing characteristics of the abnormality captured in this image? A)The image reveals a fracture in the femur bone., B)The image indicates a blockage in the urinary tract caused by kidney stones., C)Macular Hole (MH), D)The abnormality seen is a result of a genetic disorder affecting the liver.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1167.jpg",
"problem": "What are some characteristics indicative of the abnormality depicted in this image? A)Macular Hole (MH), B)The abnormality in the image is a manifestation of arthritis in the joints., C)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack., D)The abnormality in the image is indicative of a tumor in the brain.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1288.jpg",
"problem": "What are the distinctive characteristics of the anomaly visible in this image? A)The abnormality seen is a result of a genetic disorder affecting the liver., B)The abnormality seen is a result of nerve damage in the spinal cord., C)Macular Hole (MH), D)The image shows an abscess in the tonsils due to a bacterial infection.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1176.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The abnormality seen is a result of a genetic disorder affecting the liver., B)Macular Hole (MH), C)The abnormality in the image is a manifestation of arthritis in the joints., D)The abnormality in the image is indicative of a tumor in the brain.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1163.jpg",
"problem": "What are some identifiable characteristics of the abnormality displayed in this image? A)The image indicates a blockage in the urinary tract caused by kidney stones., B)The abnormality in the image is indicative of a tumor in the brain., C)Macular Hole (MH), D)The abnormality in the image is a manifestation of arthritis in the joints.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1003.jpg",
"problem": "What can be observed about the abnormality seen in this image? A)The abnormality seen is a result of nerve damage in the spinal cord., B)Macular Hole (MH), C)The image reveals a fracture in the femur bone., D)The image displays inflammation in the lungs caused by a respiratory infection.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1145.jpg",
"problem": "What are some notable features of the abnormality depicted in this image? A)The image reveals a fracture in the femur bone., B)The abnormality seen is a result of nerve damage in the spinal cord., C)The abnormality in the image is indicative of a tumor in the brain., D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1318.jpg",
"problem": "What distinctive features can be observed in the abnormality depicted in this photograph related to the eye? A)The abnormality in the image is a manifestation of arthritis in the joints., B)Macular Hole (MH), C)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack., D)The abnormality in the image is indicative of a tumor in the brain.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1341.jpg",
"problem": "What are some distinguishing characteristics of the anomaly seen in this image? A)The image displays inflammation in the lungs caused by a respiratory infection., B)The image shows an abscess in the tonsils due to a bacterial infection., C)Macular Hole (MH), D)The abnormality in the image is a manifestation of arthritis in the joints.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1206.jpg",
"problem": "What characteristics can you identify in the aberration shown in the picture? A)Macular Hole (MH), B)The abnormality seen is a result of a genetic disorder affecting the liver., C)The image displays a skin rash caused by an allergic reaction., D)The image indicates a blockage in the urinary tract caused by kidney stones.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1082.jpg",
"problem": "What characteristics stand out in the abnormality shown in the picture? A)Macular Hole (MH), B)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack., C)The image displays a skin rash caused by an allergic reaction., D)The abnormality seen is a result of nerve damage in the spinal cord.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1169.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image displays inflammation in the lungs caused by a respiratory infection., B)The image displays a skin rash caused by an allergic reaction., C)The image shows an abscess in the tonsils due to a bacterial infection., D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1247.jpg",
"problem": "What are the visible indications of the abnormality depicted in this image? A)Macular Hole (MH), B)The image indicates a blockage in the urinary tract caused by kidney stones., C)The image shows an abscess in the tonsils due to a bacterial infection., D)The abnormality seen is a result of nerve damage in the spinal cord.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1076.jpg",
"problem": "What characteristics are evident from the observed abnormality in the provided image? A)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack., B)The abnormality in the image is indicative of a tumor in the brain., C)The image displays a skin rash caused by an allergic reaction., D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/MH/mh_test_1081.jpg",
"problem": "What distinctive features can you observe in the abnormality shown in the picture? A)The image displays inflammation in the lungs caused by a respiratory infection., B)The image indicates a blockage in the urinary tract caused by kidney stones., C)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack., D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1101.jpg",
"problem": "What distinctive features can be identified in the abnormality shown in this picture? A)The image shows signs of damage to the blood vessels in the retina caused by diabetes., B)The image reveals a fracture in the femur bone., C)The abnormality in the image is indicative of a tumor in the brain., D)The image indicates a blockage in the urinary tract caused by kidney stones.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1173.jpg",
"problem": "What are the noticeable characteristics of the abnormality depicted in this image? A)The image indicates a blockage in the urinary tract caused by kidney stones., B)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack., C)The abnormality seen is a result of a genetic disorder affecting the liver., D)The image shows signs of damage to the blood vessels in the retina caused by diabetes.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1178.jpg",
"problem": "What are some discernible characteristics of the abnormality depicted in this image? A)The image displays a skin rash caused by an allergic reaction., B)The abnormality in the image is a manifestation of arthritis in the joints., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The image shows an abscess in the tonsils due to a bacterial infection.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1094.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image shows signs of damage to the blood vessels in the retina caused by diabetes., B)The abnormality in the image is a manifestation of arthritis in the joints., C)The abnormality seen is a result of a genetic disorder affecting the liver., D)The image indicates a blockage in the urinary tract caused by kidney stones.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1192.jpg",
"problem": "What are some remarkable characteristics of the abnormality observed in this image? A)The abnormality seen is a result of a genetic disorder affecting the liver., B)The image displays inflammation in the lungs caused by a respiratory infection., C)The image reveals a fracture in the femur bone., D)The image shows signs of damage to the blood vessels in the retina caused by diabetes.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1141.jpg",
"problem": "What can be observed about the abnormality displayed in this image? A)The image shows signs of damage to the blood vessels in the retina caused by diabetes., B)The abnormality in the image is indicative of a tumor in the brain., C)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack., D)The abnormality in the image is a manifestation of arthritis in the joints.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1027.jpg",
"problem": "What distinctive features can you identify in the abnormality shown in this picture? A)The image displays inflammation in the lungs caused by a respiratory infection., B)The abnormality seen is a result of a genetic disorder affecting the liver., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1307.jpg",
"problem": "What can you identify about the abnormality displayed in this image? A)The image shows an abscess in the tonsils due to a bacterial infection., B)The image shows signs of damage to the blood vessels in the retina caused by diabetes., C)The image displays inflammation in the lungs caused by a respiratory infection., D)The abnormality seen is a result of a genetic disorder affecting the liver.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1077.jpg",
"problem": "What are the discernible characteristics of the abnormality depicted in this image? A)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack., B)The image indicates a blockage in the urinary tract caused by kidney stones., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The image displays inflammation in the lungs caused by a respiratory infection.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1327.jpg",
"problem": "What are some noticeable characteristics of the abnormality displayed in this image? A)The image shows signs of damage to the blood vessels in the retina caused by diabetes., B)The image reveals a fracture in the femur bone., C)The image shows an abscess in the tonsils due to a bacterial infection., D)The abnormality seen is a result of nerve damage in the spinal cord.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1026.jpg",
"problem": "What are some identifiable characteristics of the abnormality depicted in this image? A)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack., B)The image shows signs of damage to the blood vessels in the retina caused by diabetes., C)The abnormality in the image is a manifestation of arthritis in the joints., D)The abnormality seen is a result of a genetic disorder affecting the liver.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1149.jpg",
"problem": "What distinctive features can be observed in the abnormality depicted in this photograph? A)The image reveals a fracture in the femur bone., B)The image shows an abscess in the tonsils due to a bacterial infection., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1304.jpg",
"problem": "What characteristics of the abnormality in this image can you outline? A)The abnormality seen is a result of a genetic disorder affecting the liver., B)The image displays a skin rash caused by an allergic reaction., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The abnormality in the image is indicative of a tumor in the brain.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1208.jpg",
"problem": "What characteristics can you identify from the irregularity shown in the picture? A)The abnormality seen is a result of nerve damage in the spinal cord., B)The image shows signs of damage to the blood vessels in the retina caused by diabetes., C)The abnormality in the image is a manifestation of arthritis in the joints., D)The image displays inflammation in the lungs caused by a respiratory infection.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1100.jpg",
"problem": "What can you identify as characteristic features of the anomaly depicted in this image? A)The image indicates a blockage in the urinary tract caused by kidney stones., B)The image reveals a fracture in the femur bone., C)The abnormality seen is a result of nerve damage in the spinal cord., D)The image shows signs of damage to the blood vessels in the retina caused by diabetes.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1291.jpg",
"problem": "What significant features can you identify in the abnormality depicted in this picture? A)The image shows signs of damage to the blood vessels in the retina caused by diabetes., B)The image reveals a fracture in the femur bone., C)The image displays inflammation in the lungs caused by a respiratory infection., D)The image indicates a blockage in the urinary tract caused by kidney stones.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1087.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack., B)The image shows signs of damage to the blood vessels in the retina caused by diabetes., C)The image displays a skin rash caused by an allergic reaction., D)The abnormality in the image is indicative of a tumor in the brain.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1187.jpg",
"problem": "What are some discernible characteristics of the abnormality depicted in this image? A)The image displays a skin rash caused by an allergic reaction., B)The image shows signs of damage to the blood vessels in the retina caused by diabetes., C)The abnormality seen is a result of a genetic disorder affecting the liver., D)The abnormality in the image is a manifestation of arthritis in the joints.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DR/dr_val_1013.jpg",
"problem": "What distinguishing features can be observed in the abnormality depicted in this photograph? A)The image indicates a blockage in the urinary tract caused by kidney stones., B)The image shows signs of damage to the blood vessels in the retina caused by diabetes., C)The image displays a skin rash caused by an allergic reaction., D)The abnormality in the image is indicative of a blockage in the coronary arteries resulting in a heart attack.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1345.jpg",
"problem": "What specific abnormality can be observed in this image? A)Diabetic Retinopathy, B)Cataract, C)Retinal Detachment (RD), D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1081.jpg",
"problem": "What does this image reveal in terms of a specific abnormality? A)Age-related Macular Degeneration (AMD), B)Diabetic Retinopathy, C)Retinal Detachment (RD), D)Glaucoma",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1135.jpg",
"problem": "What specific pathological condition is depicted in the presented image? A)Retinal Detachment (RD), B)Diabetic Retinopathy, C)Age-related Macular Degeneration (AMD), D)Cataract",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1040.jpg",
"problem": "What is the name of the specific abnormality displayed in this image? A)Age-related Macular Degeneration (AMD), B)Retinal Detachment (RD), C)Optic Nerve Atrophy, D)Diabetic Retinopathy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1036.jpg",
"problem": "What is the name of the specific abnormality exhibited in this image? A)Diabetic Retinopathy, B)Glaucoma, C)Optic Nerve Atrophy, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1088.jpg",
"problem": "What is the particular anomaly indicated in this picture? A)Retinal Detachment (RD), B)Glaucoma, C)Age-related Macular Degeneration (AMD), D)Cataract",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1302.jpg",
"problem": "What is the specific abnormality shown in this image? A)Optic Nerve Atrophy, B)Age-related Macular Degeneration (AMD), C)Retinal Detachment (RD), D)Glaucoma",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1013.jpg",
"problem": "What is the name of the abnormality depicted in this image? A)Age-related Macular Degeneration (AMD), B)Diabetic Retinopathy, C)Cataract, D)Retinal Detachment (RD)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1010.jpg",
"problem": "What is the particular anomaly observed in this picture? A)Retinal Detachment (RD), B)Diabetic Retinopathy, C)Cataract, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1165.jpg",
"problem": "What is the diagnosis for the condition depicted in the provided picture? A)Age-related Macular Degeneration (AMD), B)Retinal Detachment (RD), C)Diabetic Retinopathy, D)Optic Nerve Atrophy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1217.jpg",
"problem": "What is the name of the specific anomaly observed in this image? A)Glaucoma, B)Optic Nerve Atrophy, C)Cataract, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1017.jpg",
"problem": "What can be identified as the particular abnormality depicted in this image? A)Retinal Detachment (RD), B)Age-related Macular Degeneration (AMD), C)Optic Nerve Atrophy, D)Cataract",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1208.jpg",
"problem": "What is the particular anomaly depicted in this image? A)Retinal Detachment (RD), B)Age-related Macular Degeneration (AMD), C)Optic Nerve Atrophy, D)Diabetic Retinopathy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1106.jpg",
"problem": "What is the specific condition indicated by the anomaly seen in this picture? A)Cataract, B)Age-related Macular Degeneration (AMD), C)Diabetic Retinopathy, D)Retinal Detachment (RD)",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1229.jpg",
"problem": "What is the particular irregularity depicted in this image? A)Diabetic Retinopathy, B)Optic Nerve Atrophy, C)Age-related Macular Degeneration (AMD), D)Retinal Detachment (RD)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1350.jpg",
"problem": "What is the name for the specific abnormality depicted in this image? A)Cataract, B)Diabetic Retinopathy, C)Optic Nerve Atrophy, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1235.jpg",
"problem": "What is the demonstrated abnormality in this image? A)Age-related Macular Degeneration (AMD), B)Cataract, C)Retinal Detachment (RD), D)Glaucoma",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1219.jpg",
"problem": "What type of pathological condition is depicted in the provided picture? A)Optic Nerve Atrophy, B)Diabetic Retinopathy, C)Age-related Macular Degeneration (AMD), D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1171.jpg",
"problem": "What is the name of the specific abnormality depicted in this image? A)Retinal Detachment (RD), B)Age-related Macular Degeneration (AMD), C)Cataract, D)Optic Nerve Atrophy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1102.jpg",
"problem": "What is the specific abnormality shown in this image? A)Age-related Macular Degeneration (AMD), B)Glaucoma, C)Optic Nerve Atrophy, D)Cataract",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1144.jpg",
"problem": "What is the identified anomaly displayed in the image? A)Retinal Detachment (RD), B)Age-related Macular Degeneration (AMD), C)Glaucoma, D)Optic Nerve Atrophy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1259.jpg",
"problem": "What is the specific abnormality shown in this image? A)Optic Nerve Atrophy, B)Age-related Macular Degeneration (AMD), C)Retinal Detachment (RD), D)Diabetic Retinopathy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1248.jpg",
"problem": "What particular abnormality is apparent in this image? A)Macular Hole (MH), B)Glaucoma, C)Optic Nerve Atrophy, D)Cataract",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1316.jpg",
"problem": "What is the identifiable abnormality displayed in this image? A)Macular Hole (MH), B)Cataract, C)Diabetic Retinopathy, D)Retinal Detachment (RD)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1060.jpg",
"problem": "What is the demonstrated anomaly in this image? A)Glaucoma, B)Macular Hole (MH), C)Diabetic Retinopathy, D)Optic Nerve Atrophy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1019.jpg",
"problem": "What is the identified condition depicted in this picture? A)Macular Hole (MH), B)Cataract, C)Glaucoma, D)Optic Nerve Atrophy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1008.jpg",
"problem": "What specific pathological condition is depicted in the provided picture? A)Cataract, B)Retinal Detachment (RD), C)Diabetic Retinopathy, D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1102.jpg",
"problem": "What is the name of the abnormality visible in this image? A)Cataract, B)Retinal Detachment (RD), C)Macular Hole (MH), D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1241.jpg",
"problem": "What is the specific abnormality observed in this picture? A)Macular Hole (MH), B)Diabetic Retinopathy, C)Retinal Detachment (RD), D)Cataract",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1110.jpg",
"problem": "What is the specific abnormality shown in this image? A)Optic Nerve Atrophy, B)Macular Hole (MH), C)Retinal Detachment (RD), D)Cataract",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1282.jpg",
"problem": "What is the name of the visual anomaly depicted in this image? A)Macular Hole (MH), B)Retinal Detachment (RD), C)Optic Nerve Atrophy, D)Cataract",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1069.jpg",
"problem": "What can be observed as a specific abnormality in this image? A)Retinal Detachment (RD), B)Diabetic Retinopathy, C)Macular Hole (MH), D)Optic Nerve Atrophy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1137.jpg",
"problem": "What can be identified as the particular irregularity displayed in this image? A)Macular Hole (MH), B)Cataract, C)Optic Nerve Atrophy, D)Retinal Detachment (RD)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1192.jpg",
"problem": "What is the observed anomaly in this image? A)Retinal Detachment (RD), B)Glaucoma, C)Cataract, D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1274.jpg",
"problem": "What type of pathological condition is depicted in the provided picture? A)Macular Hole (MH), B)Diabetic Retinopathy, C)Cataract, D)Optic Nerve Atrophy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1030.jpg",
"problem": "What is the identified abnormality visualized in this image? A)Diabetic Retinopathy, B)Retinal Detachment (RD), C)Cataract, D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1101.jpg",
"problem": "What is the term for the specific abnormality depicted in this image? A)Cataract, B)Diabetic Retinopathy, C)Retinal Detachment (RD), D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1177.jpg",
"problem": "What is the observed abnormality in this picture? A)Cataract, B)Diabetic Retinopathy, C)Macular Hole (MH), D)Optic Nerve Atrophy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1240.jpg",
"problem": "What is the name of the abnormality visible in this image? A)Diabetic Retinopathy, B)Macular Hole (MH), C)Cataract, D)Glaucoma",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1344.jpg",
"problem": "What specific abnormality is displayed in the image? A)Cataract, B)Macular Hole (MH), C)Glaucoma, D)Optic Nerve Atrophy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1290.jpg",
"problem": "What specific pathological condition is depicted in this photograph? A)Diabetic Retinopathy, B)Cataract, C)Retinal Detachment (RD), D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1037.jpg",
"problem": "What is the abnormality identified in this image? A)Optic Nerve Atrophy, B)Glaucoma, C)Diabetic Retinopathy, D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1341.jpg",
"problem": "What is the term used to describe the specific abnormality seen in this image? A)Cataract, B)Macular Hole (MH), C)Retinal Detachment (RD), D)Optic Nerve Atrophy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1040.jpg",
"problem": "What specific pathological condition does this image depict? A)Macular Hole (MH), B)Diabetic Retinopathy, C)Glaucoma, D)Optic Nerve Atrophy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1234.jpg",
"problem": "What is the name of the specific anomaly depicted in this visual representation? A)Cataract, B)Diabetic Retinopathy, C)Macular Hole (MH), D)Optic Nerve Atrophy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1265.jpg",
"problem": "What is the name of the specific abnormality depicted in this image? A)Cataract, B)Macular Hole (MH), C)Retinal Detachment (RD), D)Optic Nerve Atrophy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1188.jpg",
"problem": "What is the specific condition indicated by the abnormality seen in this image? A)Macular Hole (MH), B)Optic Nerve Atrophy, C)Glaucoma, D)Cataract",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1220.jpg",
"problem": "What is the particular anomaly depicted in this visual representation? A)Glaucoma, B)Optic Nerve Atrophy, C)Retinal Detachment (RD), D)Macular Hole (MH)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1186.jpg",
"problem": "What can you tell me about the distinguishing features of the abnormality seen in this image? A)The abnormality is characterized by a jagged edge around the macula., B)The image shows a complete absence of the macula., C)The abnormality is a result of a detached retina., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1216.jpg",
"problem": "What characteristics can you identify regarding the abnormality seen in the image? A)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., B)There is a dark spot in the periphery of the retina., C)The image shows a complete absence of the macula., D)The abnormality is a result of a detached retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1010.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The abnormality is a result of a detached retina., B)The abnormality is characterized by a jagged edge around the macula., C)There is a dark spot in the periphery of the retina., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1103.jpg",
"problem": "What can be observed about the anomaly depicted in this image? A)The image shows a complete absence of the macula., B)The abnormality is a result of a detached retina., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)The macula appears enlarged and swollen.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1233.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., B)The image shows a complete absence of the macula., C)The abnormality is characterized by a jagged edge around the macula., D)The macula appears enlarged and swollen.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1100.jpg",
"problem": "What can you tell me about the characteristics of the abnormality in this image? A)There is a dark spot in the periphery of the retina., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)The abnormality is characterized by a jagged edge around the macula., D)The abnormality is a result of a detached retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1293.jpg",
"problem": "What are the distinctive characteristics of the abnormality observed in this image? A)There is a dark spot in the periphery of the retina., B)The abnormality is characterized by a jagged edge around the macula., C)The macula appears enlarged and swollen., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1092.jpg",
"problem": "What specific characteristic can you identify in the abnormality shown in the image? A)The abnormality is characterized by a jagged edge around the macula., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)There is a dark spot in the periphery of the retina., D)The abnormality is a result of a detached retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1339.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image shows a complete absence of the macula., B)The abnormality is characterized by a jagged edge around the macula., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)The abnormality is a result of a detached retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1166.jpg",
"problem": "What can you tell me about the distinguishing characteristics of the anomaly shown in this image? A)The abnormality is characterized by a jagged edge around the macula., B)There is a dark spot in the periphery of the retina., C)The abnormality is a result of a detached retina., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1158.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The abnormality is a result of a detached retina., B)The abnormality is characterized by a jagged edge around the macula., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)The macula appears enlarged and swollen.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1229.jpg",
"problem": "What distinctive features can you identify in the abnormality depicted in the picture? A)The abnormality is a result of a detached retina., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)The image shows a complete absence of the macula., D)There is a dark spot in the periphery of the retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1312.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)There is a dark spot in the periphery of the retina., B)The macula appears enlarged and swollen., C)The abnormality is a result of a detached retina., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1021.jpg",
"problem": "What are some distinctive characteristics of the abnormality present in this image? A)The image shows a complete absence of the macula., B)The abnormality is characterized by a jagged edge around the macula., C)The abnormality is a result of a detached retina., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1261.jpg",
"problem": "What are some identifiable characteristics of the abnormality depicted in this image? A)The abnormality is a result of a detached retina., B)The macula appears enlarged and swollen., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)The abnormality is characterized by a jagged edge around the macula.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1030.jpg",
"problem": "What specific characteristic can be observed in the anomaly present in this image? A)The macula appears enlarged and swollen., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)There is a dark spot in the periphery of the retina., D)The abnormality is a result of a detached retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1142.jpg",
"problem": "What can you say about the characteristics of the anomaly present in the image? A)There is a dark spot in the periphery of the retina., B)The abnormality is a result of a detached retina., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)The image shows a complete absence of the macula.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1102.jpg",
"problem": "What distinctive features can you identify in the abnormality depicted in this photograph? A)The macula appears enlarged and swollen., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)The abnormality is characterized by a jagged edge around the macula., D)There is a dark spot in the periphery of the retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1173.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The macula appears enlarged and swollen., B)There is a dark spot in the periphery of the retina., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)The image shows a complete absence of the macula.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1009.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image shows a complete absence of the macula., B)The abnormality is a result of a detached retina., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)There is a dark spot in the periphery of the retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1232.jpg",
"problem": "What can you say about the characteristics of the anomaly in the image? A)There is a dark spot in the periphery of the retina., B)The macula appears enlarged and swollen., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)The abnormality is a result of a detached retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/AMD/amd_test_1025.jpg",
"problem": "What can you mention about the specific characteristic of the anomaly observed in this image? A)The abnormality is characterized by a jagged edge around the macula., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)The macula appears enlarged and swollen., D)There is a dark spot in the periphery of the retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1254.jpg",
"problem": "What can you tell me about the anomaly present in this image? A)There is a small hole in the macula, which is the central part of the retina., B)The image shows a complete absence of the macula., C)There is a dark spot in the periphery of the retina., D)The macula appears enlarged and swollen.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1099.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)There is a small hole in the macula, which is the central part of the retina., B)The macula appears enlarged and swollen., C)The abnormality is a result of a detached retina., D)There is a dark spot in the periphery of the retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1154.jpg",
"problem": "What specific characteristic can be observed in the abnormality seen in this image? A)There is a small hole in the macula, which is the central part of the retina., B)The abnormality is a result of a detached retina., C)The abnormality is characterized by a jagged edge around the macula., D)The macula appears enlarged and swollen.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1231.jpg",
"problem": "What can you observe about the abnormality present in this image? A)There is a small hole in the macula, which is the central part of the retina., B)The abnormality is a result of a detached retina., C)There is a dark spot in the periphery of the retina., D)The image shows a complete absence of the macula.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1052.jpg",
"problem": "What characteristics can be observed in the abnormality displayed in this image? A)There is a small hole in the macula, which is the central part of the retina., B)There is a dark spot in the periphery of the retina., C)The abnormality is a result of a detached retina., D)The image shows a complete absence of the macula.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1050.jpg",
"problem": "What can you tell me about the distinguishing features of the abnormality seen in this image? A)The abnormality is characterized by a jagged edge around the macula., B)The image shows a complete absence of the macula., C)There is a dark spot in the periphery of the retina., D)There is a small hole in the macula, which is the central part of the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1148.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)There is a small hole in the macula, which is the central part of the retina., B)The abnormality is characterized by a jagged edge around the macula., C)The abnormality is a result of a detached retina., D)The image shows a complete absence of the macula.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1207.jpg",
"problem": "What characteristics can you identify about the irregularity shown in this photograph? A)The abnormality is characterized by a jagged edge around the macula., B)The macula appears enlarged and swollen., C)The image shows a complete absence of the macula., D)There is a small hole in the macula, which is the central part of the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1028.jpg",
"problem": "What can you tell me about the abnormality in this image? A)The macula appears enlarged and swollen., B)There is a dark spot in the periphery of the retina., C)The abnormality is a result of a detached retina., D)There is a small hole in the macula, which is the central part of the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1268.jpg",
"problem": "What can be observed about the abnormality in this image? A)The abnormality is characterized by a jagged edge around the macula., B)There is a small hole in the macula, which is the central part of the retina., C)The macula appears enlarged and swollen., D)The abnormality is a result of a detached retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1042.jpg",
"problem": "What can you tell me about the characteristics of the anomaly depicted in this image? A)The macula appears enlarged and swollen., B)There is a dark spot in the periphery of the retina., C)The abnormality is a result of a detached retina., D)There is a small hole in the macula, which is the central part of the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1191.jpg",
"problem": "What can you tell me about the abnormality seen in this image? A)There is a small hole in the macula, which is the central part of the retina., B)The macula appears enlarged and swollen., C)The abnormality is a result of a detached retina., D)The abnormality is characterized by a jagged edge around the macula.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1171.jpg",
"problem": "What are the specific characteristics of the abnormal feature observed in this picture? A)There is a small hole in the macula, which is the central part of the retina., B)The abnormality is a result of a detached retina., C)There is a dark spot in the periphery of the retina., D)The image shows a complete absence of the macula.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1090.jpg",
"problem": "What can you tell me about the abnormality observed in this image? A)The macula appears enlarged and swollen., B)The abnormality is a result of a detached retina., C)There is a small hole in the macula, which is the central part of the retina., D)The abnormality is characterized by a jagged edge around the macula.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1305.jpg",
"problem": "What can be observed about the abnormality in this image? A)There is a small hole in the macula, which is the central part of the retina., B)The abnormality is characterized by a jagged edge around the macula., C)The image shows a complete absence of the macula., D)The macula appears enlarged and swollen.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1325.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)There is a dark spot in the periphery of the retina., B)The macula appears enlarged and swollen., C)The image shows a complete absence of the macula., D)There is a small hole in the macula, which is the central part of the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1338.jpg",
"problem": "What is the specific characteristic observed in the abnormality shown in this image? A)There is a dark spot in the periphery of the retina., B)The abnormality is a result of a detached retina., C)The image shows a complete absence of the macula., D)There is a small hole in the macula, which is the central part of the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1199.jpg",
"problem": "What is the noticeable characteristic of the abnormality depicted in this image? A)The abnormality is characterized by a jagged edge around the macula., B)There is a dark spot in the periphery of the retina., C)The abnormality is a result of a detached retina., D)There is a small hole in the macula, which is the central part of the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1307.jpg",
"problem": "What are the distinguishing characteristics of the abnormality observed in the image? A)The macula appears enlarged and swollen., B)There is a dark spot in the periphery of the retina., C)There is a small hole in the macula, which is the central part of the retina., D)The image shows a complete absence of the macula.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1343.jpg",
"problem": "What is the description of the abnormality in the image? A)There is a small hole in the macula, which is the central part of the retina., B)The macula appears enlarged and swollen., C)The abnormality is characterized by a jagged edge around the macula., D)The image shows a complete absence of the macula.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1224.jpg",
"problem": "What are the distinguishing characteristics of the anomaly depicted in this image? A)The abnormality is a result of a detached retina., B)The abnormality is characterized by a jagged edge around the macula., C)The image shows a complete absence of the macula., D)There is a small hole in the macula, which is the central part of the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1279.jpg",
"problem": "What can you mention about the specific characteristic of the anomaly observed in this image? A)There is a small hole in the macula, which is the central part of the retina., B)The macula appears enlarged and swollen., C)The abnormality is a result of a detached retina., D)The abnormality is characterized by a jagged edge around the macula.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1340.jpg",
"problem": "What can be said about the characteristics of the anomaly depicted in this image? A)There is a small hole in the macula, which is the central part of the retina., B)The abnormality is a result of a detached retina., C)The abnormality is characterized by a jagged edge around the macula., D)The image shows a complete absence of the macula.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1040.jpg",
"problem": "What characteristics can be observed in the presented anomaly within this picture? A)The abnormality is a result of a detached retina., B)There is a small hole in the macula, which is the central part of the retina., C)There is a dark spot in the periphery of the retina., D)The image shows a complete absence of the macula.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1295.jpg",
"problem": "What can be said about the characteristics of the abnormality observed in this image? A)The image shows a complete absence of the macula., B)There is a dark spot in the periphery of the retina., C)There is a small hole in the macula, which is the central part of the retina., D)The abnormality is a result of a detached retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/MH/mh_val_1033.jpg",
"problem": "What can be observed as an abnormality in this image? A)There is a small hole in the macula, which is the central part of the retina., B)The abnormality is a result of a detached retina., C)There is a dark spot in the periphery of the retina., D)The macula appears enlarged and swollen.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1013.jpg",
"problem": "Does this image display any abnormalities? A)Choroidal Neovascularization (CNV), B)The image suggests a potential abnormality., C)The image reveals a minor abnormality., D)The image shows multiple abnormalities.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1175.jpg",
"problem": "Is there evidence of any abnormality in this image? A)The image suggests a potential abnormality., B)Choroidal Neovascularization (CNV), C)There is a significant abnormality present in this image., D)The image indicates a potential abnormality that requires further investigation.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1283.jpg",
"problem": "Is there any presence of anomalies in this image? A)The image shows a possible abnormality, but further testing is required for confirmation., B)There is a significant abnormality present in this image., C)Abnormalities are seen in multiple areas of the image., D)Choroidal Neovascularization (CNV)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1178.jpg",
"problem": "Is there any abnormality identified in this image? A)The image shows a possible abnormality, but further testing is required for confirmation., B)Choroidal Neovascularization (CNV), C)The image suggests a potential abnormality., D)The abnormality in this image is insignificant.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1248.jpg",
"problem": "Is there any anomaly apparent in this image? A)There is a significant abnormality present in this image., B)The image reveals a minor abnormality., C)The image suggests a potential abnormality., D)Choroidal Neovascularization (CNV)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1076.jpg",
"problem": "Is there any anomaly observable in this image? A)Choroidal Neovascularization (CNV), B)The abnormality in this image is insignificant., C)The image indicates a potential abnormality that requires further investigation., D)The image reveals a minor abnormality.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1167.jpg",
"problem": "Is this image free of any abnormalities? A)Choroidal Neovascularization (CNV), B)The image reveals a minor abnormality., C)The image shows multiple abnormalities., D)The image shows a possible abnormality, but further testing is required for confirmation.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1145.jpg",
"problem": "Does this image show any signs of irregularity? A)Choroidal Neovascularization (CNV), B)There is a significant abnormality present in this image., C)The image does not provide enough information to determine if there is an abnormality., D)The findings in this image are inconclusive.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1177.jpg",
"problem": "Does the image show any abnormality? A)Choroidal Neovascularization (CNV), B)There is a significant abnormality present in this image., C)The abnormality in this image is insignificant., D)The image shows multiple abnormalities.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1164.jpg",
"problem": "Is there any deviation observed in this image? A)The image shows a possible abnormality, but further testing is required for confirmation., B)The abnormality in this image is insignificant., C)The image indicates a potential abnormality that requires further investigation., D)Choroidal Neovascularization (CNV)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1295.jpg",
"problem": "Is there any indication of abnormality found in this image? A)The image shows multiple abnormalities., B)The image suggests a potential abnormality., C)Choroidal Neovascularization (CNV), D)There is a significant abnormality present in this image.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1258.jpg",
"problem": "Is there any deviation from the norm in this image? A)Choroidal Neovascularization (CNV), B)Abnormalities are seen in multiple areas of the image., C)The image suggests a potential abnormality., D)The image shows a possible abnormality, but further testing is required for confirmation.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1330.jpg",
"problem": "Is there any sign of abnormality observed in this image? A)Choroidal Neovascularization (CNV), B)Abnormalities are seen in multiple areas of the image., C)The findings in this image are inconclusive., D)The image shows multiple abnormalities.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1008.jpg",
"problem": "Is there any deviation observed in this image? A)Choroidal Neovascularization (CNV), B)The image indicates a potential abnormality that requires further investigation., C)The image suggests a potential abnormality., D)The image shows multiple abnormalities.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1026.jpg",
"problem": "Is this image showing any abnormalities? A)The image suggests a potential abnormality., B)Abnormalities are seen in multiple areas of the image., C)Choroidal Neovascularization (CNV), D)The image shows multiple abnormalities.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1303.jpg",
"problem": "Is there any abnormality identified in this image? A)The image suggests a potential abnormality., B)The image reveals a minor abnormality., C)Abnormalities are seen in multiple areas of the image., D)Choroidal Neovascularization (CNV)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1054.jpg",
"problem": "Is there any anomaly in the image? A)The image does not provide enough information to determine if there is an abnormality., B)Choroidal Neovascularization (CNV), C)The image indicates a potential abnormality that requires further investigation., D)The image suggests a potential abnormality.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1246.jpg",
"problem": "Is there any visible anomaly in this image? A)Choroidal Neovascularization (CNV), B)The findings in this image are inconclusive., C)The image shows a possible abnormality, but further testing is required for confirmation., D)The abnormality in this image is insignificant.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1028.jpg",
"problem": "Is there any anomaly found in this image? A)Choroidal Neovascularization (CNV), B)The image reveals a minor abnormality., C)There is a significant abnormality present in this image., D)The image shows multiple abnormalities.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1107.jpg",
"problem": "Is there any anomaly observed in this image? A)Choroidal Neovascularization (CNV), B)The image shows multiple abnormalities., C)The image indicates a potential abnormality that requires further investigation., D)Abnormalities are seen in multiple areas of the image.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1169.jpg",
"problem": "Is the image showing any abnormalities? A)Choroidal Neovascularization (CNV), B)The image reveals a minor abnormality., C)Abnormalities are seen in multiple areas of the image., D)The image shows a possible abnormality, but further testing is required for confirmation.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1310.jpg",
"problem": "Is there any indication of an anomaly within this image? A)Choroidal Neovascularization (CNV), B)The image indicates a potential abnormality that requires further investigation., C)The findings in this image are inconclusive., D)Abnormalities are seen in multiple areas of the image.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1098.jpg",
"problem": "Is this image indicative of any abnormalities? A)The image shows multiple abnormalities., B)Choroidal Neovascularization (CNV), C)The image reveals a minor abnormality., D)There is a significant abnormality present in this image.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1299.jpg",
"problem": "Does this image show any presence of abnormalities? A)The abnormality in this image is insignificant., B)Choroidal Neovascularization (CNV), C)The image shows a possible abnormality, but further testing is required for confirmation., D)The image does not provide enough information to determine if there is an abnormality.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1199.jpg",
"problem": "Is there any anomaly or irregularity found in this image? A)Choroidal Neovascularization (CNV), B)Abnormalities are seen in multiple areas of the image., C)The image shows a possible abnormality, but further testing is required for confirmation., D)The image suggests a potential abnormality.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CNV/cnv_test_1268.jpg",
"problem": "Is there any anomaly identified in this image? A)The image shows multiple abnormalities., B)The image suggests a potential abnormality., C)Choroidal Neovascularization (CNV), D)The findings in this image are inconclusive.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1228.jpg",
"problem": "Is there any anomaly apparent in this picture? A)The image shows a possible abnormality, but further testing is required for confirmation., B)The image suggests a potential abnormality., C)No abnormality detected (normal), D)The image reveals a minor abnormality.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1235.jpg",
"problem": "Is there any apparent abnormality observed in this image? A)There is a significant abnormality present in this image., B)No abnormality detected (normal), C)The abnormality in this image is insignificant., D)Abnormalities are seen in multiple areas of the image.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1183.jpg",
"problem": "Is there any presence of abnormality found in this image? A)The image does not provide enough information to determine if there is an abnormality., B)The image suggests a potential abnormality., C)No abnormality detected (normal), D)Abnormalities are seen in multiple areas of the image.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1179.jpg",
"problem": "Is there any indication of an anomaly in this image? A)No abnormality detected (normal), B)The findings in this image are inconclusive., C)The image indicates a potential abnormality that requires further investigation., D)The image does not provide enough information to determine if there is an abnormality.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1308.jpg",
"problem": "Is there any deviation from normalcy observed in this image? A)The image suggests a potential abnormality., B)Abnormalities are seen in multiple areas of the image., C)The findings in this image are inconclusive., D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1080.jpg",
"problem": "Is there any abnormality detected in this image? A)The image shows multiple abnormalities., B)No abnormality detected (normal), C)The image suggests a potential abnormality., D)Abnormalities are seen in multiple areas of the image.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1324.jpg",
"problem": "Is there any abnormality identified in this image? A)The findings in this image are inconclusive., B)The image suggests a potential abnormality., C)The abnormality in this image is insignificant., D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1232.jpg",
"problem": "Is there any anomaly or irregularity seen in this image? A)No abnormality detected (normal), B)The image shows a possible abnormality, but further testing is required for confirmation., C)There is a significant abnormality present in this image., D)The image reveals a minor abnormality.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1020.jpg",
"problem": "Does this image show any sign of abnormality? A)The image does not provide enough information to determine if there is an abnormality., B)The image shows a possible abnormality, but further testing is required for confirmation., C)No abnormality detected (normal), D)The image indicates a potential abnormality that requires further investigation.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1263.jpg",
"problem": "Is there any pathology evident in this image? A)The image shows a possible abnormality, but further testing is required for confirmation., B)The image shows multiple abnormalities., C)No abnormality detected (normal), D)The findings in this image are inconclusive.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1038.jpg",
"problem": "Does the image show any signs of abnormality? A)The image reveals a minor abnormality., B)The image shows a possible abnormality, but further testing is required for confirmation., C)No abnormality detected (normal), D)Abnormalities are seen in multiple areas of the image.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1167.jpg",
"problem": "Does this image show any presence of abnormalities? A)The image suggests a potential abnormality., B)The image reveals a minor abnormality., C)No abnormality detected (normal), D)Abnormalities are seen in multiple areas of the image.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1015.jpg",
"problem": "Are there any findings indicating abnormality in this image? A)Abnormalities are seen in multiple areas of the image., B)No abnormality detected (normal), C)The image indicates a potential abnormality that requires further investigation., D)The image shows a possible abnormality, but further testing is required for confirmation.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1159.jpg",
"problem": "Does this image show any abnormality? A)The findings in this image are inconclusive., B)The image reveals a minor abnormality., C)No abnormality detected (normal), D)The image indicates a potential abnormality that requires further investigation.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1061.jpg",
"problem": "Is there any indication of a deviation from normal in this image? A)No abnormality detected (normal), B)The image reveals a minor abnormality., C)The image suggests a potential abnormality., D)The image does not provide enough information to determine if there is an abnormality.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1066.jpg",
"problem": "Is this image indicative of any abnormalities? A)No abnormality detected (normal), B)Abnormalities are seen in multiple areas of the image., C)The image shows multiple abnormalities., D)The findings in this image are inconclusive.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1114.jpg",
"problem": "Is there any anomaly or irregularity visible in this image? A)No abnormality detected (normal), B)The image shows a possible abnormality, but further testing is required for confirmation., C)The image suggests a potential abnormality., D)The image does not provide enough information to determine if there is an abnormality.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1342.jpg",
"problem": "Is there any abnormality detected in this image? A)The image indicates a potential abnormality that requires further investigation., B)There is a significant abnormality present in this image., C)The image reveals a minor abnormality., D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1141.jpg",
"problem": "Has any abnormality been identified in this image? A)The image shows multiple abnormalities., B)The image reveals a minor abnormality., C)No abnormality detected (normal), D)The abnormality in this image is insignificant.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1058.jpg",
"problem": "Is there any visual indication of abnormality in this image? A)The image does not provide enough information to determine if there is an abnormality., B)The image indicates a potential abnormality that requires further investigation., C)No abnormality detected (normal), D)The findings in this image are inconclusive.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1126.jpg",
"problem": "Is there any anomaly observed in this image? A)The image reveals a minor abnormality., B)There is a significant abnormality present in this image., C)The image indicates a potential abnormality that requires further investigation., D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1124.jpg",
"problem": "Is there any abnormality identified in this image? A)The image suggests a potential abnormality., B)The image shows multiple abnormalities., C)The image reveals a minor abnormality., D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1268.jpg",
"problem": "Is anything unusual seen in this image? A)The image indicates a potential abnormality that requires further investigation., B)There is a significant abnormality present in this image., C)Abnormalities are seen in multiple areas of the image., D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1262.jpg",
"problem": "Is there any pathology evident in this image? A)The image does not provide enough information to determine if there is an abnormality., B)The image shows multiple abnormalities., C)The image indicates a potential abnormality that requires further investigation., D)No abnormality detected (normal)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/NORMAL/normal_val_1265.jpg",
"problem": "Does this image indicate any abnormality? A)No abnormality detected (normal), B)The image indicates a potential abnormality that requires further investigation., C)The image reveals a minor abnormality., D)Abnormalities are seen in multiple areas of the image.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1336.jpg",
"problem": "What is the name of the abnormality depicted in the image? A)Diabetic Retinopathy (DR), B)Conjunctivitis, C)Corneal ulcer, D)Color blindness",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1103.jpg",
"problem": "What is the name of the condition indicated in this picture? A)Conjunctivitis, B)Optic nerve atrophy, C)Diabetic Retinopathy (DR), D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1225.jpg",
"problem": "What is the specific abnormality shown in this image? A)Retinitis pigmentosa, B)Optic nerve atrophy, C)Conjunctivitis, D)Diabetic Retinopathy (DR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1349.jpg",
"problem": "What is the medical term for the abnormality seen in this image? A)Optic nerve atrophy, B)Corneal ulcer, C)Diabetic Retinopathy (DR), D)Conjunctivitis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1005.jpg",
"problem": "Identify the pathological condition depicted in the photograph. A)Macular degeneration, B)Diabetic Retinopathy (DR), C)Cataracts, D)Color blindness",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1291.jpg",
"problem": "What is the name of the anomaly depicted in this image? A)Retinal detachment, B)Diabetic Retinopathy (DR), C)Glaucoma, D)Conjunctivitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1111.jpg",
"problem": "What can be identified as the specific abnormality in this image? A)Diabetic Retinopathy (DR), B)Optic nerve atrophy, C)Corneal ulcer, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1034.jpg",
"problem": "What is the particular abnormality identified in this image? A)Diabetic Retinopathy (DR), B)Corneal ulcer, C)Optic nerve atrophy, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1180.jpg",
"problem": "What is the name of the specific aberration depicted in this picture? A)Retinal detachment, B)Diabetic Retinopathy (DR), C)Glaucoma, D)Color blindness",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1224.jpg",
"problem": "What is the diagnosis of the anomaly depicted in this image? A)Cataracts, B)Diabetic Retinopathy (DR), C)Glaucoma, D)Macular degeneration",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1047.jpg",
"problem": "Which specific abnormality is visible in this image? A)Macular degeneration, B)Diabetic retinopathy, C)Retinitis pigmentosa, D)Diabetic Retinopathy (DR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1086.jpg",
"problem": "What is the diagnosed condition depicted in this image? A)Retinal detachment, B)Optic nerve atrophy, C)Diabetic retinopathy, D)Diabetic Retinopathy (DR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1290.jpg",
"problem": "What is the name of the condition exhibited in this image? A)Diabetic Retinopathy (DR), B)Color blindness, C)Macular degeneration, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1032.jpg",
"problem": "What is the name of the condition displayed in this image? A)Macular degeneration, B)Diabetic Retinopathy (DR), C)Retinal detachment, D)Corneal ulcer",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1305.jpg",
"problem": "What medical condition is depicted in this picture? A)Diabetic retinopathy, B)Cataracts, C)Optic nerve atrophy, D)Diabetic Retinopathy (DR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1199.jpg",
"problem": "What is the name of the condition seen in this picture? A)Diabetic Retinopathy (DR), B)Retinal detachment, C)Diabetic retinopathy, D)Macular degeneration",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1237.jpg",
"problem": "What can be identified as the specific abnormality in this image? A)Optic nerve atrophy, B)Diabetic retinopathy, C)Diabetic Retinopathy (DR), D)Cataracts",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1339.jpg",
"problem": "What is the condition depicted in this image? A)Optic nerve atrophy, B)Corneal ulcer, C)Conjunctivitis, D)Diabetic Retinopathy (DR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1070.jpg",
"problem": "What medical condition is indicated by the abnormality visible in this image? A)Conjunctivitis, B)Color blindness, C)Central Serous Retinopathy (CSR), D)Macular degeneration",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1151.jpg",
"problem": "What is the diagnosis of the abnormality depicted in this image? A)Corneal ulcer, B)Cataracts, C)Central Serous Retinopathy (CSR), D)Optic nerve atrophy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1012.jpg",
"problem": "Identify the pathology indicated in the provided image. A)Cataracts, B)Central Serous Retinopathy (CSR), C)Macular degeneration, D)Corneal ulcer",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1230.jpg",
"problem": "What is the name of the abnormality visually depicted in this image? A)Central Serous Retinopathy (CSR), B)Conjunctivitis, C)Retinal detachment, D)Color blindness",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1275.jpg",
"problem": "What is the featured anomaly depicted in this image? A)Glaucoma, B)Diabetic retinopathy, C)Optic nerve atrophy, D)Central Serous Retinopathy (CSR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1082.jpg",
"problem": "What is the specific abnormality shown in this image? A)Optic nerve atrophy, B)Color blindness, C)Macular degeneration, D)Central Serous Retinopathy (CSR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1042.jpg",
"problem": "What is the specific abnormality shown in this image? A)Cataracts, B)Central Serous Retinopathy (CSR), C)Retinal detachment, D)Color blindness",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1346.jpg",
"problem": "What is the specific abnormality shown in this image? A)Conjunctivitis, B)Diabetic retinopathy, C)Central Serous Retinopathy (CSR), D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1320.jpg",
"problem": "What is the specific abnormality shown in this image? A)Conjunctivitis, B)Central Serous Retinopathy (CSR), C)Macular degeneration, D)Cataracts",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1086.jpg",
"problem": "Which specific abnormality is depicted in this image? A)Cataracts, B)Optic nerve atrophy, C)Retinitis pigmentosa, D)Central Serous Retinopathy (CSR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1331.jpg",
"problem": "What is the particular anomaly observed in this picture? A)Conjunctivitis, B)Glaucoma, C)Central Serous Retinopathy (CSR), D)Macular degeneration",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1342.jpg",
"problem": "What is the specific abnormality shown in this image? A)Corneal ulcer, B)Glaucoma, C)Central Serous Retinopathy (CSR), D)Color blindness",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1196.jpg",
"problem": "What is the name of the specific abnormality observed in the image? A)Optic nerve atrophy, B)Macular degeneration, C)Central Serous Retinopathy (CSR), D)Retinitis pigmentosa",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1114.jpg",
"problem": "What is the name of the specific abnormality revealed in this image? A)Diabetic retinopathy, B)Central Serous Retinopathy (CSR), C)Retinitis pigmentosa, D)Macular degeneration",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1158.jpg",
"problem": "What can be identified from this image in terms of abnormality? A)Retinitis pigmentosa, B)Diabetic retinopathy, C)Central Serous Retinopathy (CSR), D)Corneal ulcer",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1148.jpg",
"problem": "What is the name of the condition represented in this image? A)Color blindness, B)Central Serous Retinopathy (CSR), C)Retinitis pigmentosa, D)Retinal detachment",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1278.jpg",
"problem": "What is the specific abnormality shown in this image? A)Macular degeneration, B)Central Serous Retinopathy (CSR), C)Retinal detachment, D)Color blindness",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1222.jpg",
"problem": "What is the name of the condition depicted in this image? A)Diabetic retinopathy, B)Retinitis pigmentosa, C)Central Serous Retinopathy (CSR), D)Optic nerve atrophy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1026.jpg",
"problem": "What are some prominent characteristics of the anomaly seen in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The condition depicted in this image is a result of inflammation in the macula., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The condition shown in this image is a result of a genetic mutation in the peripheral retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1232.jpg",
"problem": "What are the defining characteristics of the abnormality depicted in this image? A)The condition depicted in this image is a result of inflammation in the macula., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The abnormality in this image is due to a deficiency of nutrients in the outer retina., D)The image shows signs of damage to the blood vessels in the retina caused by diabetes.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1277.jpg",
"problem": "What are some distinguishing features of the anomaly observed in this image? A)The condition shown in this image is a result of a genetic mutation in the peripheral retina., B)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., C)The condition depicted in this image is a result of inflammation in the macula., D)The image shows signs of damage to the blood vessels in the retina caused by diabetes.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1061.jpg",
"problem": "What are the characteristic features of the anomaly observed in this image? A)The condition shown in this image is a result of a genetic mutation in the peripheral retina., B)The image shows signs of damage to the blood vessels in the retina caused by diabetes., C)The abnormality in this image is due to a deficiency of nutrients in the outer retina., D)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1131.jpg",
"problem": "What are the distinguishing features of the anomaly seen in this image? A)The abnormality in this image is caused by excessive blood flow to the central retina., B)The condition depicted in this image is a result of inflammation in the macula., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1322.jpg",
"problem": "What are the characteristics of the abnormality depicted in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The image shows signs of damage to the blood vessels in the retina caused by diabetes., C)The abnormality in this image is caused by excessive blood flow to the central retina., D)The abnormality in this image is due to a deficiency of nutrients in the outer retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1070.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The abnormality in this image is due to a deficiency of nutrients in the outer retina., B)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The abnormality in this image is caused by excessive blood flow to the central retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1273.jpg",
"problem": "What are some distinguishing features observed in the abnormality depicted in this image? A)The image shows signs of damage to the blood vessels in the retina caused by diabetes., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The abnormality in this image is due to a deficiency of nutrients in the outer retina., D)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1221.jpg",
"problem": "What are some distinctive features of the abnormality seen in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The abnormality in this image is caused by excessive blood flow to the central retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1333.jpg",
"problem": "What are some distinctive features of the anomaly exhibited in this image? A)The abnormality in this image is due to a deficiency of nutrients in the outer retina., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., D)The image shows signs of damage to the blood vessels in the retina caused by diabetes.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1089.jpg",
"problem": "What are the distinguishing features of the anomaly in this image? A)The abnormality in this image is due to a deficiency of nutrients in the outer retina., B)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., C)The condition depicted in this image is a result of inflammation in the macula., D)The image shows signs of damage to the blood vessels in the retina caused by diabetes.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1111.jpg",
"problem": "What is one distinguishing feature of the abnormality observed in this image? A)The condition shown in this image is a result of a genetic mutation in the peripheral retina., B)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The abnormality in this image is caused by excessive blood flow to the central retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1307.jpg",
"problem": "What specific features are observed in the abnormality depicted in this image? A)The image shows signs of damage to the blood vessels in the retina caused by diabetes., B)The abnormality in this image is due to a deficiency of nutrients in the outer retina., C)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., D)The condition shown in this image is a result of a genetic mutation in the peripheral retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1321.jpg",
"problem": "What are the identifiable characteristics of the anomaly depicted in this image? A)The image shows signs of damage to the blood vessels in the retina caused by diabetes., B)The abnormality in this image is due to a deficiency of nutrients in the outer retina., C)The condition depicted in this image is a result of inflammation in the macula., D)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1119.jpg",
"problem": "What are some observable characteristics of the abnormality in this image? A)The condition depicted in this image is a result of inflammation in the macula., B)The abnormality in this image is due to a deficiency of nutrients in the outer retina., C)The image shows signs of damage to the blood vessels in the retina caused by diabetes., D)The condition shown in this image is a result of a genetic mutation in the peripheral retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1317.jpg",
"problem": "What are some notable features of the abnormality displayed in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The condition depicted in this image is a result of inflammation in the macula., C)The condition shown in this image is a result of a genetic mutation in the peripheral retina., D)The image shows signs of damage to the blood vessels in the retina caused by diabetes.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DR/dr_test_1167.jpg",
"problem": "What are some identifiable features of the abnormality seen in this image? A)The abnormality in this image is caused by excessive blood flow to the central retina., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The abnormality in this image is due to a deficiency of nutrients in the outer retina., D)The image shows signs of damage to the blood vessels in the retina caused by diabetes.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1182.jpg",
"problem": "What is the main characteristic of the anomaly in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The abnormality in this image is caused by excessive blood flow to the central retina., C)The condition shown in this image is a result of a genetic mutation in the peripheral retina., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1272.jpg",
"problem": "What are some discernible characteristics of the anomaly seen in this image? A)The condition depicted in this image is a result of inflammation in the macula., B)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., C)The condition is characterized by the accumulation of fluid in the central retina., D)The abnormality in this image is caused by excessive blood flow to the central retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1179.jpg",
"problem": "What are some distinguishing features of the abnormality present in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The condition is characterized by the accumulation of fluid in the central retina., C)The abnormality in this image is caused by excessive blood flow to the central retina., D)The condition shown in this image is a result of a genetic mutation in the peripheral retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1025.jpg",
"problem": "What are the main characteristics of the anomaly observed in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The condition depicted in this image is a result of inflammation in the macula., C)The abnormality in this image is due to a deficiency of nutrients in the outer retina., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1156.jpg",
"problem": "What are the distinguishing features of the anomaly seen in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The condition depicted in this image is a result of inflammation in the macula., D)The abnormality in this image is due to a deficiency of nutrients in the outer retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1168.jpg",
"problem": "What are some distinguishing features of the abnormality seen in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., C)The condition depicted in this image is a result of inflammation in the macula., D)The condition shown in this image is a result of a genetic mutation in the peripheral retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1030.jpg",
"problem": "What are the distinguishing features of the anomaly observed in the image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The condition depicted in this image is a result of inflammation in the macula., C)The condition shown in this image is a result of a genetic mutation in the peripheral retina., D)The abnormality in this image is due to a deficiency of nutrients in the outer retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1309.jpg",
"problem": "What are the distinguishing features of the irregularity depicted in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The condition depicted in this image is a result of inflammation in the macula., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1300.jpg",
"problem": "What are some distinct characteristics of the anomaly seen in this image? A)The abnormality in this image is due to a deficiency of nutrients in the outer retina., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The condition is characterized by the accumulation of fluid in the central retina., D)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1155.jpg",
"problem": "What are the key features of the abnormality observed in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The condition depicted in this image is a result of inflammation in the macula., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1289.jpg",
"problem": "What are the distinguishing features of the abnormality depicted in this image? A)The abnormality in this image is due to a deficiency of nutrients in the outer retina., B)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., C)The abnormality in this image is caused by excessive blood flow to the central retina., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1145.jpg",
"problem": "What is a distinguishing feature of the abnormality seen in this image? A)The abnormality in this image is due to a deficiency of nutrients in the outer retina., B)The condition is characterized by the accumulation of fluid in the central retina., C)The condition depicted in this image is a result of inflammation in the macula., D)The condition shown in this image is a result of a genetic mutation in the peripheral retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1198.jpg",
"problem": "What are the distinguishable features of the anomaly in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., C)The condition depicted in this image is a result of inflammation in the macula., D)The condition shown in this image is a result of a genetic mutation in the peripheral retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1260.jpg",
"problem": "What are some distinguishing features observed in the abnormality depicted in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The condition is characterized by the accumulation of fluid in the central retina., C)The condition shown in this image is a result of a genetic mutation in the peripheral retina., D)The abnormality in this image is due to a deficiency of nutrients in the outer retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1295.jpg",
"problem": "What are some distinguishing features of the abnormality observed in the image? A)The abnormality in this image is caused by excessive blood flow to the central retina., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The abnormality in this image is due to a deficiency of nutrients in the outer retina., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1007.jpg",
"problem": "What are some distinguishing features of the anomaly depicted in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The condition is characterized by the accumulation of fluid in the central retina., D)The condition depicted in this image is a result of inflammation in the macula.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1185.jpg",
"problem": "What are some distinguishing features or characteristics of the abnormality depicted in this image? A)The abnormality in this image is caused by excessive blood flow to the central retina., B)The condition is characterized by the accumulation of fluid in the central retina., C)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., D)The condition shown in this image is a result of a genetic mutation in the peripheral retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1001.jpg",
"problem": "What are the discernible features of the anomaly seen in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The abnormality in this image is caused by excessive blood flow to the central retina., C)The condition shown in this image is a result of a genetic mutation in the peripheral retina., D)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1136.jpg",
"problem": "What are some distinguishable characteristics of the anomaly visible in this image? A)The condition shown in this image is a result of a genetic mutation in the peripheral retina., B)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., C)The abnormality in this image is caused by excessive blood flow to the central retina., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1328.jpg",
"problem": "What specific characteristics can be observed in the abnormality depicted in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The condition depicted in this image is a result of inflammation in the macula., C)The abnormality in this image is due to a deficiency of nutrients in the outer retina., D)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1344.jpg",
"problem": "What are the distinguishing features of the anomaly depicted in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The condition depicted in this image is a result of inflammation in the macula., D)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1065.jpg",
"problem": "What are the distinguishing features of the abnormality shown in this image? A)The abnormality in this image is caused by excessive blood flow to the central retina., B)The condition is characterized by the accumulation of fluid in the central retina., C)The condition shown in this image is a result of a genetic mutation in the peripheral retina., D)The condition depicted in this image is a result of inflammation in the macula.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1131.jpg",
"problem": "What are the distinguishing features of the anomaly present in this image? A)The abnormality in this image is caused by excessive blood flow to the central retina., B)The abnormality in this image is due to a deficiency of nutrients in the outer retina., C)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1047.jpg",
"problem": "What are the defining features of the anomaly visible in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The abnormality in this image is due to a deficiency of nutrients in the outer retina., C)The condition is characterized by the accumulation of fluid in the central retina., D)The abnormality in this image is caused by excessive blood flow to the central retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1087.jpg",
"problem": "What is the characteristic of the abnormality seen in the image? A)The abnormality in this image is due to a deficiency of nutrients in the outer retina., B)The condition shown in this image is a result of a genetic mutation in the peripheral retina., C)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/CSR/csr_val_1188.jpg",
"problem": "What are the distinguishing features of the anomaly present in this image? A)The abnormality in this image is caused by a blockage of blood vessels in the optic nerve., B)The condition is characterized by the accumulation of fluid in the central retina., C)The abnormality in this image is caused by excessive blood flow to the central retina., D)The condition depicted in this image is a result of inflammation in the macula.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1099.jpg",
"problem": "Identify the pathological condition depicted in the photograph. A)Optic nerve atrophy, B)Vitreous hemorrhage, C)Diabetic Macular Edema (DME), D)Diabetic retinopathy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1159.jpg",
"problem": "What is the particular anomaly that can be observed in this image? A)Optic nerve atrophy, B)Macular degeneration, C)Corneal dystrophy, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1339.jpg",
"problem": "What is the particular abnormality identified in this image? A)Retinal detachment, B)Diabetic retinopathy, C)Vitreous hemorrhage, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1113.jpg",
"problem": "What is the specific abnormality shown in this image? A)Retinal detachment, B)Optic nerve atrophy, C)Cataracts, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1233.jpg",
"problem": "What is the name of the specific abnormality identified in this image? A)Corneal dystrophy, B)Papilledema, C)Diabetic Macular Edema (DME), D)Retinal detachment",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1054.jpg",
"problem": "What specific abnormality is visible in this image? A)Papilledema, B)Retinal detachment, C)Macular degeneration, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1058.jpg",
"problem": "What is the term used to describe the particular anomaly observed in this image? A)Vitreous hemorrhage, B)Cataracts, C)Diabetic Macular Edema (DME), D)Retinal detachment",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1318.jpg",
"problem": "What is the name for the particular abnormality depicted in this image? A)Papilledema, B)Uveitis, C)Diabetic Macular Edema (DME), D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1048.jpg",
"problem": "What specific condition does this picture depict? A)Diabetic Macular Edema (DME), B)Macular degeneration, C)Uveitis, D)Diabetic retinopathy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1259.jpg",
"problem": "What is the specific abnormality shown in this image? A)Cataracts, B)Macular degeneration, C)Diabetic Macular Edema (DME), D)Papilledema",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1258.jpg",
"problem": "What is the indicated anomaly visible in this image? A)Glaucoma, B)Diabetic retinopathy, C)Cataracts, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1109.jpg",
"problem": "What is the term used to describe the specific abnormality seen in this image? A)Glaucoma, B)Vitreous hemorrhage, C)Diabetic Macular Edema (DME), D)Cataracts",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1066.jpg",
"problem": "What is the term used to describe the specific anomaly depicted in this picture? A)Diabetic Macular Edema (DME), B)Macular degeneration, C)Glaucoma, D)Uveitis",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1342.jpg",
"problem": "What is the name for the specific abnormality visible in this image? A)Cataracts, B)Diabetic retinopathy, C)Glaucoma, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1284.jpg",
"problem": "What is the name of the abnormality depicted in this image? A)Papilledema, B)Optic nerve atrophy, C)Diabetic Macular Edema (DME), D)Cataracts",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1150.jpg",
"problem": "What is the specific anomaly depicted in this picture? A)Cataracts, B)Retinal detachment, C)Diabetic Macular Edema (DME), D)Vitreous hemorrhage",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1167.jpg",
"problem": "What is the specific abnormality shown in this image? A)Diabetic Macular Edema (DME), B)Papilledema, C)Cataracts, D)Optic nerve atrophy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1225.jpg",
"problem": "What is the particular anomaly depicted in this visual? A)Cataracts, B)Papilledema, C)Diabetic Macular Edema (DME), D)Uveitis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1127.jpg",
"problem": "What is the observed abnormality depicted in this image? A)Vitreous hemorrhage, B)Retinal detachment, C)Diabetic Macular Edema (DME), D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1274.jpg",
"problem": "What is the particular anomaly visualized in this picture? A)Cataracts, B)Uveitis, C)Diabetic Macular Edema (DME), D)Diabetic retinopathy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1316.jpg",
"problem": "What is the name of the specific abnormality seen in this image? A)Drusen, B)Cataracts, C)Retinal detachment, D)Vitreous hemorrhage",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1160.jpg",
"problem": "What is the anomaly observed in this image? A)Drusen, B)Retinal detachment, C)Glaucoma, D)Corneal dystrophy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1088.jpg",
"problem": "What is the identified anomaly displayed in this picture? A)Uveitis, B)Drusen, C)Corneal dystrophy, D)Cataracts",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1145.jpg",
"problem": "What is the specific abnormality shown in this image? A)Vitreous hemorrhage, B)Drusen, C)Cataracts, D)Corneal dystrophy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1114.jpg",
"problem": "What is the name given to the specific abnormality visible in this image? A)Corneal dystrophy, B)Drusen, C)Papilledema, D)Optic nerve atrophy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1028.jpg",
"problem": "What specific pathological condition is depicted in the provided picture? A)Drusen, B)Diabetic retinopathy, C)Vitreous hemorrhage, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1331.jpg",
"problem": "What is the diagnosis for the pathology depicted in this picture? A)Corneal dystrophy, B)Drusen, C)Macular degeneration, D)Uveitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1045.jpg",
"problem": "What is the particular anomaly demonstrated in this picture? A)Papilledema, B)Diabetic retinopathy, C)Drusen, D)Uveitis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1131.jpg",
"problem": "What is the observed anomaly in this image? A)Drusen, B)Glaucoma, C)Diabetic retinopathy, D)Papilledema",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1281.jpg",
"problem": "What is the specific abnormality shown in this image? A)Corneal dystrophy, B)Drusen, C)Retinal detachment, D)Diabetic retinopathy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1343.jpg",
"problem": "What specific condition is being depicted in this image? A)Drusen, B)Macular degeneration, C)Papilledema, D)Optic nerve atrophy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1130.jpg",
"problem": "What is the term used to describe the specific abnormality visible in the image? A)Drusen, B)Retinal detachment, C)Glaucoma, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1015.jpg",
"problem": "What is the specific abnormality shown in this image? A)Vitreous hemorrhage, B)Corneal dystrophy, C)Drusen, D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1077.jpg",
"problem": "What is the observed abnormality in the image? A)Vitreous hemorrhage, B)Drusen, C)Diabetic retinopathy, D)Retinal detachment",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1338.jpg",
"problem": "What is the particular abnormality depicted in this image? A)Drusen, B)Glaucoma, C)Diabetic retinopathy, D)Corneal dystrophy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1084.jpg",
"problem": "What specific condition is depicted in this image? A)Drusen, B)Glaucoma, C)Diabetic retinopathy, D)Uveitis",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1170.jpg",
"problem": "What is the specific abnormality shown in this image? A)Papilledema, B)Drusen, C)Glaucoma, D)Macular degeneration",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1293.jpg",
"problem": "What is the specific term for the abnormality depicted in this image? A)Drusen, B)Vitreous hemorrhage, C)Diabetic retinopathy, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1044.jpg",
"problem": "What is the specific abnormality shown in this image? A)Retinal detachment, B)Corneal dystrophy, C)Macular degeneration, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1103.jpg",
"problem": "What is the observed anomaly depicted in this picture? A)Vitreous hemorrhage, B)Cataracts, C)Optic nerve atrophy, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1248.jpg",
"problem": "What is the term for the specific anomaly visible in this image? A)Corneal dystrophy, B)Drusen, C)Papilledema, D)Diabetic retinopathy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1149.jpg",
"problem": "What type of pathological condition does the depicted image indicate? A)Retinal detachment, B)Macular degeneration, C)Drusen, D)Vitreous hemorrhage",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1038.jpg",
"problem": "What is the name of the specific abnormality shown in this image? A)Vitreous hemorrhage, B)Macular degeneration, C)Diabetic retinopathy, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1256.jpg",
"problem": "What are the distinctive characteristics of the abnormality present in this image? A)Cysts are large white masses that form on top of the retina., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)Exudates are small blue dots that gather around the optic nerve., D)Macular holes are small purple rings that encircle the cornea.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1077.jpg",
"problem": "What are the characteristics of the abnormality captured in this image? A)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., B)Exudates are small blue dots that gather around the optic nerve., C)Macular holes are small purple rings that encircle the cornea., D)Nevi are red growths that appear on the sclera of the eye.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1347.jpg",
"problem": "What are the characteristics of the abnormality observed in this image? A)Macular holes are small purple rings that encircle the cornea., B)Hemorrhages are black spots that develop on the lens of the eye., C)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., D)Nevi are red growths that appear on the sclera of the eye.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1262.jpg",
"problem": "What are the noticeable characteristics of the anomaly visible in this image? A)Macular holes are small purple rings that encircle the cornea., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)Nevi are red growths that appear on the sclera of the eye., D)Exudates are small blue dots that gather around the optic nerve.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1010.jpg",
"problem": "What are some characteristic features of the anomaly visible in this picture? A)Macular holes are small purple rings that encircle the cornea., B)Cysts are large white masses that form on top of the retina., C)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., D)Hemorrhages are black spots that develop on the lens of the eye.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1285.jpg",
"problem": "What are the distinguishing characteristics of the abnormality seen in this image? A)Macular holes are small purple rings that encircle the cornea., B)Cysts are large white masses that form on top of the retina., C)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., D)Hemorrhages are black spots that develop on the lens of the eye.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1348.jpg",
"problem": "What are the characteristics of the abnormality visible in this image? A)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., B)Macular holes are small purple rings that encircle the cornea., C)Hemorrhages are black spots that develop on the lens of the eye., D)Nevi are red growths that appear on the sclera of the eye.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1178.jpg",
"problem": "What are the characteristics or features of the abnormality observed in this image? A)Hemorrhages are black spots that develop on the lens of the eye., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)Cysts are large white masses that form on top of the retina., D)Macular holes are small purple rings that encircle the cornea.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1096.jpg",
"problem": "What are some observable characteristics of the abnormality captured in this image? A)Nevi are red growths that appear on the sclera of the eye., B)Macular holes are small purple rings that encircle the cornea., C)Exudates are small blue dots that gather around the optic nerve., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1271.jpg",
"problem": "What characteristics can you provide about the abnormality depicted in this image? A)Macular holes are small purple rings that encircle the cornea., B)Hemorrhages are black spots that develop on the lens of the eye., C)Exudates are small blue dots that gather around the optic nerve., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1022.jpg",
"problem": "What are the characteristics of the abnormality depicted in this image? A)Cysts are large white masses that form on top of the retina., B)Nevi are red growths that appear on the sclera of the eye., C)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., D)Hemorrhages are black spots that develop on the lens of the eye.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1180.jpg",
"problem": "What are some distinctive characteristics of the anomaly observed in this image? A)Hemorrhages are black spots that develop on the lens of the eye., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)Macular holes are small purple rings that encircle the cornea., D)Nevi are red growths that appear on the sclera of the eye.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1071.jpg",
"problem": "What are the distinctive characteristics of the abnormality observed in the image? A)Hemorrhages are black spots that develop on the lens of the eye., B)Macular holes are small purple rings that encircle the cornea., C)Exudates are small blue dots that gather around the optic nerve., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1311.jpg",
"problem": "What are the characteristics of the abnormality presented in this image? A)Cysts are large white masses that form on top of the retina., B)Macular holes are small purple rings that encircle the cornea., C)Hemorrhages are black spots that develop on the lens of the eye., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1065.jpg",
"problem": "What are the specific characteristics of the abnormality in this image? A)Hemorrhages are black spots that develop on the lens of the eye., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)Exudates are small blue dots that gather around the optic nerve., D)Cysts are large white masses that form on top of the retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1326.jpg",
"problem": "What are the characteristics of the abnormality present in the image? A)Cysts are large white masses that form on top of the retina., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)Nevi are red growths that appear on the sclera of the eye., D)Hemorrhages are black spots that develop on the lens of the eye.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1290.jpg",
"problem": "What are the characteristic features of the anomaly present in this image? A)Exudates are small blue dots that gather around the optic nerve., B)Nevi are red growths that appear on the sclera of the eye., C)Hemorrhages are black spots that develop on the lens of the eye., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1155.jpg",
"problem": "What are the distinguishing characteristics of the anomaly visible in this image? A)Exudates are small blue dots that gather around the optic nerve., B)Hemorrhages are black spots that develop on the lens of the eye., C)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., D)Macular holes are small purple rings that encircle the cornea.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1007.jpg",
"problem": "What are some distinguishable characteristics of the anomaly captured in this image? A)Macular holes are small purple rings that encircle the cornea., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)Exudates are small blue dots that gather around the optic nerve., D)Cysts are large white masses that form on top of the retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1182.jpg",
"problem": "What are some noticeable characteristics of the abnormality displayed in this image? A)Cysts are large white masses that form on top of the retina., B)Macular holes are small purple rings that encircle the cornea., C)Hemorrhages are black spots that develop on the lens of the eye., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1078.jpg",
"problem": "What are the distinct characteristics of the anomaly seen in this image? A)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., B)Nevi are red growths that appear on the sclera of the eye., C)Hemorrhages are black spots that develop on the lens of the eye., D)Exudates are small blue dots that gather around the optic nerve.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1086.jpg",
"problem": "What are the characteristic features of the anomaly in this image? A)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., B)Nevi are red growths that appear on the sclera of the eye., C)Exudates are small blue dots that gather around the optic nerve., D)Cysts are large white masses that form on top of the retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1267.jpg",
"problem": "What characteristics can you provide about the abnormality depicted in this image? A)Hemorrhages are black spots that develop on the lens of the eye., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)Nevi are red growths that appear on the sclera of the eye., D)Cysts are large white masses that form on top of the retina.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1126.jpg",
"problem": "What are the distinctive characteristics of the abnormality visible in this image? A)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., B)Nevi are red growths that appear on the sclera of the eye., C)Cysts are large white masses that form on top of the retina., D)Exudates are small blue dots that gather around the optic nerve.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DME/dme_test_1289.jpg",
"problem": "What are the distinctive characteristics of the anomaly depicted in this image? A)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., B)Hemorrhages are black spots that develop on the lens of the eye., C)Cysts are large white masses that form on top of the retina., D)Nevi are red growths that appear on the sclera of the eye.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1259.jpg",
"problem": "What are the distinguishing characteristics of the anomaly depicted in this image? A)Exudates are small blue dots that gather around the optic nerve., B)Macular holes are small purple rings that encircle the cornea., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Cysts are large white masses that form on top of the retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1166.jpg",
"problem": "What are the distinct characteristics of the abnormality captured in this image? A)Macular holes are small purple rings that encircle the cornea., B)Hemorrhages are black spots that develop on the lens of the eye., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Cysts are large white masses that form on top of the retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1113.jpg",
"problem": "What are some distinguishing characteristics of the anomaly observed in this image? A)Nevi are red growths that appear on the sclera of the eye., B)Exudates are small blue dots that gather around the optic nerve., C)Macular holes are small purple rings that encircle the cornea., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1288.jpg",
"problem": "What are the characteristic features of the anomaly present in this picture? A)Nevi are red growths that appear on the sclera of the eye., B)Cysts are large white masses that form on top of the retina., C)Hemorrhages are black spots that develop on the lens of the eye., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1085.jpg",
"problem": "What are some distinguishable features of the anomaly depicted in this image? A)Cysts are large white masses that form on top of the retina., B)Macular holes are small purple rings that encircle the cornea., C)Hemorrhages are black spots that develop on the lens of the eye., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1331.jpg",
"problem": "What are some distinctive characteristics of the abnormality seen in this image? A)Exudates are small blue dots that gather around the optic nerve., B)Macular holes are small purple rings that encircle the cornea., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Hemorrhages are black spots that develop on the lens of the eye.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1233.jpg",
"problem": "What are the distinguishable characteristics of the abnormality observed in this image? A)Hemorrhages are black spots that develop on the lens of the eye., B)Cysts are large white masses that form on top of the retina., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Macular holes are small purple rings that encircle the cornea.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1024.jpg",
"problem": "What are the characteristics of the abnormality observed in this image? A)Exudates are small blue dots that gather around the optic nerve., B)Hemorrhages are black spots that develop on the lens of the eye., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Macular holes are small purple rings that encircle the cornea.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1224.jpg",
"problem": "What are the distinct characteristics of the anomaly present in this image? A)Cysts are large white masses that form on top of the retina., B)Exudates are small blue dots that gather around the optic nerve., C)Nevi are red growths that appear on the sclera of the eye., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1229.jpg",
"problem": "What are some distinctive characteristics of the abnormality present in this image? A)Exudates are small blue dots that gather around the optic nerve., B)Cysts are large white masses that form on top of the retina., C)Macular holes are small purple rings that encircle the cornea., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1345.jpg",
"problem": "What are some distinctive characteristics of the abnormality present in this image? A)Cysts are large white masses that form on top of the retina., B)Nevi are red growths that appear on the sclera of the eye., C)Hemorrhages are black spots that develop on the lens of the eye., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1073.jpg",
"problem": "What are some distinguishable features of the anomaly depicted in this image? A)Drusen are small yellow deposits that accumulate beneath the retina., B)Hemorrhages are black spots that develop on the lens of the eye., C)Exudates are small blue dots that gather around the optic nerve., D)Cysts are large white masses that form on top of the retina.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1275.jpg",
"problem": "What characteristics can you provide about the abnormality depicted in this image? A)Nevi are red growths that appear on the sclera of the eye., B)Macular holes are small purple rings that encircle the cornea., C)Cysts are large white masses that form on top of the retina., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1013.jpg",
"problem": "What are the distinguishing features of the abnormality found in this image? A)Exudates are small blue dots that gather around the optic nerve., B)Cysts are large white masses that form on top of the retina., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Nevi are red growths that appear on the sclera of the eye.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1230.jpg",
"problem": "What are the distinctive characteristics of the abnormality observed in the image? A)Drusen are small yellow deposits that accumulate beneath the retina., B)Exudates are small blue dots that gather around the optic nerve., C)Hemorrhages are black spots that develop on the lens of the eye., D)Macular holes are small purple rings that encircle the cornea.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1005.jpg",
"problem": "What are the distinguishing characteristics of the anomaly present in this image? A)Cysts are large white masses that form on top of the retina., B)Drusen are small yellow deposits that accumulate beneath the retina., C)Exudates are small blue dots that gather around the optic nerve., D)Hemorrhages are black spots that develop on the lens of the eye.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1256.jpg",
"problem": "What are the distinguishing characteristics of the abnormality seen in this image? A)Exudates are small blue dots that gather around the optic nerve., B)Nevi are red growths that appear on the sclera of the eye., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Cysts are large white masses that form on top of the retina.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1003.jpg",
"problem": "What are the distinct features of the abnormality present in this image? A)Exudates are small blue dots that gather around the optic nerve., B)Cysts are large white masses that form on top of the retina., C)Nevi are red growths that appear on the sclera of the eye., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1247.jpg",
"problem": "What are the distinct characteristics of the anomaly visible in this image? A)Cysts are large white masses that form on top of the retina., B)Macular holes are small purple rings that encircle the cornea., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Exudates are small blue dots that gather around the optic nerve.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1060.jpg",
"problem": "What are the distinct characteristics of the abnormality captured in this image? A)Drusen are small yellow deposits that accumulate beneath the retina., B)Exudates are small blue dots that gather around the optic nerve., C)Cysts are large white masses that form on top of the retina., D)Nevi are red growths that appear on the sclera of the eye.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1346.jpg",
"problem": "What are the characteristics of the anomaly visible in this image? A)Cysts are large white masses that form on top of the retina., B)Exudates are small blue dots that gather around the optic nerve., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Nevi are red growths that appear on the sclera of the eye.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DRUSEN/drusen_val_1294.jpg",
"problem": "What can you tell me about the characteristics of the anomaly seen in this image? A)Exudates are small blue dots that gather around the optic nerve., B)Drusen are small yellow deposits that accumulate beneath the retina., C)Cysts are large white masses that form on top of the retina., D)Nevi are red growths that appear on the sclera of the eye.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1073.jpg",
"problem": "What is the specific abnormality shown in this image? A)Color blindness, B)Drusen, C)Glaucoma, D)Corneal ulcer",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1295.jpg",
"problem": "Identify the pathology indicated in the provided picture. A)Diabetic retinopathy, B)Drusen, C)Cataracts, D)Retinal detachment",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1332.jpg",
"problem": "What is the specific abnormality shown in this image? A)Optic neuritis, B)Drusen, C)Astigmatism, D)Conjunctivitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1083.jpg",
"problem": "What is the name of the condition depicted in this image? A)Astigmatism, B)Conjunctivitis, C)Color blindness, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1162.jpg",
"problem": "What is the name of the specific condition featured in this picture? A)Retinal detachment, B)Drusen, C)Cataracts, D)Corneal ulcer",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1348.jpg",
"problem": "What is the name of the condition shown in this image? A)Drusen, B)Conjunctivitis, C)Macular edema, D)Corneal ulcer",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1137.jpg",
"problem": "What is the observed pathology in this image? A)Glaucoma, B)Astigmatism, C)Drusen, D)Cataracts",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1299.jpg",
"problem": "What is the name of the specific condition indicated by the anomaly in this image? A)Macular edema, B)Drusen, C)Color blindness, D)Astigmatism",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1263.jpg",
"problem": "Identify the pathological condition depicted in the photograph. A)Glaucoma, B)Drusen, C)Diabetic retinopathy, D)Color blindness",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1245.jpg",
"problem": "What specific condition is indicated by the abnormality depicted in this image? A)Drusen, B)Optic neuritis, C)Astigmatism, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1120.jpg",
"problem": "What is the specific abnormality shown in this image? A)Corneal ulcer, B)Retinal detachment, C)Glaucoma, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1051.jpg",
"problem": "What is the name of the specific abnormality depicted in this picture? A)Cataracts, B)Corneal ulcer, C)Drusen, D)Optic neuritis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1318.jpg",
"problem": "What is the name for the specific abnormality depicted in this image? A)Diabetic retinopathy, B)Drusen, C)Color blindness, D)Retinal detachment",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1250.jpg",
"problem": "What specific pathological condition does this picture depict? A)Macular edema, B)Drusen, C)Color blindness, D)Glaucoma",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1035.jpg",
"problem": "What is the term for the specific abnormality depicted in this image? A)Retinal detachment, B)Macular edema, C)Diabetic retinopathy, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1315.jpg",
"problem": "What is the specific abnormality shown in this image? A)Glaucoma, B)Drusen, C)Macular edema, D)Conjunctivitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1031.jpg",
"problem": "Identify the pathological condition depicted in the photograph? A)Glaucoma, B)Color blindness, C)Drusen, D)Macular edema",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1037.jpg",
"problem": "What does this image illustrate in terms of a specific abnormality? A)Corneal ulcer, B)Astigmatism, C)Drusen, D)Macular edema",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1038.jpg",
"problem": "What is the specific abnormality shown in this image? A)Color blindness, B)Drusen, C)Macular edema, D)Astigmatism",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1152.jpg",
"problem": "What is the name of the specific condition indicated by this visual representation? A)Glaucoma, B)Drusen, C)Cataracts, D)Optic neuritis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1079.jpg",
"problem": "What is the specific abnormality shown in this image? A)Drusen, B)Conjunctivitis, C)Cataracts, D)Diabetic retinopathy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1234.jpg",
"problem": "What is the name of the condition indicated by the specific abnormality in this image? A)Cataracts, B)Drusen, C)Conjunctivitis, D)Astigmatism",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1321.jpg",
"problem": "What is the name for the specific condition depicted in this image? A)Color blindness, B)Drusen, C)Glaucoma, D)Conjunctivitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1167.jpg",
"problem": "What is the specific abnormality shown in this image? A)Optic neuritis, B)Conjunctivitis, C)Drusen, D)Macular edema",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1289.jpg",
"problem": "What is the name of the specific abnormality observed in this image? A)Optic neuritis, B)Diabetic retinopathy, C)Astigmatism, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1015.jpg",
"problem": "What is the medical term for the condition displayed in this image? A)Glaucoma, B)Conjunctivitis, C)Astigmatism, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1100.jpg",
"problem": "What is the name of the specific abnormality depicted in this picture? A)Drusen, B)Color blindness, C)Cataracts, D)Macular edema",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1068.jpg",
"problem": "What is the specific abnormality shown in this image? A)Diabetic retinopathy, B)Color blindness, C)Drusen, D)Corneal ulcer",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1296.jpg",
"problem": "What is the specific abnormality shown in this image? A)Color blindness, B)Cataracts, C)Diabetic retinopathy, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1198.jpg",
"problem": "What specific condition is indicated by the abnormalities in the provided picture? A)Age-related Macular Degeneration (AMD), B)Cataracts, C)Corneal ulcer, D)Color blindness",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1021.jpg",
"problem": "What is the specific abnormality shown in this image? A)Diabetic retinopathy, B)Corneal ulcer, C)Age-related Macular Degeneration (AMD), D)Astigmatism",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1187.jpg",
"problem": "What is the term used to describe the specific abnormality depicted in this image? A)Cataracts, B)Optic neuritis, C)Age-related Macular Degeneration (AMD), D)Corneal ulcer",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1241.jpg",
"problem": "What is the name of the specific abnormality depicted in this picture? A)Age-related Macular Degeneration (AMD), B)Astigmatism, C)Macular edema, D)Color blindness",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1291.jpg",
"problem": "What is the name of the condition depicted in this image? A)Optic neuritis, B)Age-related Macular Degeneration (AMD), C)Color blindness, D)Macular edema",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1117.jpg",
"problem": "What is the name of the medical condition depicted in this image? A)Color blindness, B)Astigmatism, C)Age-related Macular Degeneration (AMD), D)Macular edema",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1077.jpg",
"problem": "What is the condition indicated by the abnormality visualized in this image? A)Optic neuritis, B)Age-related Macular Degeneration (AMD), C)Conjunctivitis, D)Macular edema",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1293.jpg",
"problem": "What is the specific abnormality shown in this image? A)Diabetic retinopathy, B)Macular edema, C)Retinal detachment, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1300.jpg",
"problem": "What does this image display in terms of abnormality? A)Conjunctivitis, B)Age-related Macular Degeneration (AMD), C)Glaucoma, D)Optic neuritis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1340.jpg",
"problem": "What is the specific abnormality shown in this image? A)Age-related Macular Degeneration (AMD), B)Color blindness, C)Cataracts, D)Diabetic retinopathy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1175.jpg",
"problem": "What is the demonstrated anomaly in this image? A)Diabetic retinopathy, B)Cataracts, C)Age-related Macular Degeneration (AMD), D)Astigmatism",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1113.jpg",
"problem": "What is the specific abnormality shown in this image? A)Conjunctivitis, B)Glaucoma, C)Diabetic retinopathy, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1189.jpg",
"problem": "What is the diagnosed condition depicted in this image? A)Optic neuritis, B)Retinal detachment, C)Glaucoma, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1100.jpg",
"problem": "What is the specific abnormality shown in this image? A)Glaucoma, B)Age-related Macular Degeneration (AMD), C)Corneal ulcer, D)Conjunctivitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1127.jpg",
"problem": "What is the name of the condition depicted in this image? A)Optic neuritis, B)Glaucoma, C)Color blindness, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1267.jpg",
"problem": "What is the depicted anomaly in this image? A)Age-related Macular Degeneration (AMD), B)Conjunctivitis, C)Cataracts, D)Astigmatism",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1149.jpg",
"problem": "Which condition is depicted in this image that indicates a specific abnormality? A)Age-related Macular Degeneration (AMD), B)Astigmatism, C)Retinal detachment, D)Optic neuritis",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1243.jpg",
"problem": "What is the observed abnormality in this image? A)Diabetic retinopathy, B)Glaucoma, C)Astigmatism, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1254.jpg",
"problem": "What is the medical condition displayed in this image? A)Diabetic retinopathy, B)Color blindness, C)Astigmatism, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1294.jpg",
"problem": "What is the name of the particular medical condition depicted in this image? A)Age-related Macular Degeneration (AMD), B)Diabetic retinopathy, C)Optic neuritis, D)Macular edema",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1060.jpg",
"problem": "What is the medical term for the abnormality depicted in this image? A)Retinal detachment, B)Color blindness, C)Age-related Macular Degeneration (AMD), D)Diabetic retinopathy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1115.jpg",
"problem": "What is the specific abnormality shown in this image? A)Macular edema, B)Corneal ulcer, C)Age-related Macular Degeneration (AMD), D)Diabetic retinopathy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1253.jpg",
"problem": "What is the name of the specific condition depicted in this image? A)Cataracts, B)Conjunctivitis, C)Glaucoma, D)Age-related Macular Degeneration (AMD)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1338.jpg",
"problem": "What is the name of the medical condition exhibited in this image? A)Age-related Macular Degeneration (AMD), B)Conjunctivitis, C)Diabetic retinopathy, D)Glaucoma",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1218.jpg",
"problem": "What is the specific abnormality shown in this image? A)Optic neuritis, B)Age-related Macular Degeneration (AMD), C)Corneal ulcer, D)Glaucoma",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1137.jpg",
"problem": "What specific pathological condition does this image depict? A)Corneal ulcer, B)Cataracts, C)Age-related Macular Degeneration (AMD), D)Color blindness",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1020.jpg",
"problem": "What are some distinguishing features of the abnormality evident in this image? A)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., B)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., C)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1096.jpg",
"problem": "What are the key characteristics of the anomaly depicted in this image? A)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., B)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1033.jpg",
"problem": "What can you tell me about the characteristics of the anomaly depicted in this image? A)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., B)Drusen are small yellow deposits that accumulate beneath the retina., C)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., D)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1028.jpg",
"problem": "What are some distinct characteristics of the anomaly seen in this image? A)Drusen are small yellow deposits that accumulate beneath the retina., B)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., C)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., D)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1284.jpg",
"problem": "What are some notable characteristics of the abnormality visible in this image? A)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., B)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1306.jpg",
"problem": "What are some distinct characteristics of the anomaly present in this image? A)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., B)Drusen are small yellow deposits that accumulate beneath the retina., C)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., D)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1250.jpg",
"problem": "What are the key characteristics of the anomaly observed in this image? A)Drusen are small yellow deposits that accumulate beneath the retina., B)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., C)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., D)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1326.jpg",
"problem": "What are the characteristics of the abnormality present in this image? A)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., B)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., C)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1027.jpg",
"problem": "What are the distinctive features of the irregularity observed in this photograph? A)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., B)Drusen are small yellow deposits that accumulate beneath the retina., C)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., D)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1261.jpg",
"problem": "What specific characteristics can you identify in the abnormality depicted in this image? A)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., B)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., C)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., D)Drusen are small yellow deposits that accumulate beneath the retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1259.jpg",
"problem": "What are the characteristics of the abnormality present in the image? A)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., B)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1037.jpg",
"problem": "What are the characteristic features of the abnormality captured in this image? A)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., B)Drusen are small yellow deposits that accumulate beneath the retina., C)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., D)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1152.jpg",
"problem": "What are some distinguishing characteristics of the abnormality depicted in this image? A)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., B)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1321.jpg",
"problem": "What distinctive features can be observed in the abnormality presented in the photograph regarding the area under the retina? A)Drusen are small yellow deposits that accumulate beneath the retina., B)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., C)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., D)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1308.jpg",
"problem": "What characteristics can you identify regarding the abnormality depicted in this image? A)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., B)Drusen are small yellow deposits that accumulate beneath the retina., C)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., D)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1077.jpg",
"problem": "What characteristics can be observed in the anomaly depicted in this picture? A)Drusen are small yellow deposits that accumulate beneath the retina., B)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., C)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., D)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1011.jpg",
"problem": "What are some distinguishing features of the abnormality depicted in this image? A)Drusen are small yellow deposits that accumulate beneath the retina., B)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., C)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., D)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/DRUSEN/drusen_test_1068.jpg",
"problem": "What are the characteristics of the abnormality shown in this image? A)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., B)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., C)Drusen are small yellow deposits that accumulate beneath the retina., D)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1064.jpg",
"problem": "What are the characteristics of the anomaly seen in this image? A)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., B)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., C)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1271.jpg",
"problem": "What are some distinguishing characteristics of the abnormality displayed in this image? A)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., D)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1004.jpg",
"problem": "What are some distinguishing characteristics of the abnormality seen in the image? A)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., B)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1333.jpg",
"problem": "What are some distinguishing characteristics of the abnormality shown in this image? A)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., B)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., C)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1024.jpg",
"problem": "What characteristics stand out in the depicted abnormality within this visual representation? A)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., D)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1070.jpg",
"problem": "What are some characteristics of the abnormality observed in this image? A)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., B)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., C)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1148.jpg",
"problem": "What are some discernible characteristics of the abnormality visible in this image? A)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., D)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1311.jpg",
"problem": "What are the recognizable characteristics of the anomaly depicted in this image? A)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., B)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., C)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1275.jpg",
"problem": "What are the distinguishing features of the anomaly depicted in this image? A)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., B)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1200.jpg",
"problem": "What are some distinguishing features of the abnormality captured in this image? A)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., B)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., C)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., D)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1194.jpg",
"problem": "What are some distinguishing characteristics of the irregularity visible in this image? A)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., D)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1106.jpg",
"problem": "What are some distinguishing features of the abnormality captured in this image? A)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., B)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., C)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1052.jpg",
"problem": "What characteristics can you identify from the anomaly shown in this picture? A)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., B)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1145.jpg",
"problem": "What are some distinguishing features of the abnormality observed in this image? A)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., B)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., C)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., D)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1050.jpg",
"problem": "What are some distinguishing characteristics of the anomaly seen in this image? A)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., B)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., C)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., D)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1016.jpg",
"problem": "What characteristics stand out in the depicted anomaly observed in the photograph? A)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., B)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1343.jpg",
"problem": "What are some distinguishing characteristics of the irregularity depicted in this image? A)Diabetic retinopathy: Diabetic retinopathy is a complication of diabetes that affects the blood vessels in the retina. It can cause vision loss, but it is not specific to the macula and is different from age-related macular degeneration., B)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1101.jpg",
"problem": "What are some distinguishing characteristics of the abnormality depicted in this image? A)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., B)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., C)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., D)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1342.jpg",
"problem": "What characteristics are observed in the abnormality depicted in this photo? A)Amblyopia: Amblyopia, also known as lazy eye, occurs when the brain and the eye do not work together correctly, leading to reduced vision in one eye. It is not directly related to the macula and is unrelated to age-related macular degeneration., B)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., C)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field., D)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/AMD/amd_val_1058.jpg",
"problem": "What are the characteristics of the abnormality depicted in this image? A)Cataracts: Cataracts occur when the lens of the eye becomes cloudy, leading to blurry vision. While it can cause vision loss, it is not specific to the macula and is unrelated to age-related macular degeneration., B)Glaucoma: Glaucoma is a condition that damages the optic nerve, which can cause peripheral vision loss. It is not directly related to the macula and is distinct from age-related macular degeneration., C)Retinal detachment: Retinal detachment occurs when the retina peels away from its underlying layer of support tissues. It can cause vision loss, but it is not related to age-related macular degeneration., D)Age-related Macular Degeneration (AMD) causes progressive damage to the macula, leading to vision loss in the center of the visual field.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1120.jpg",
"problem": "What is the name of the specific abnormality depicted in this image? A)Cataracts, B)Macular hole, C)Central Serous Retinopathy (CSR), D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1302.jpg",
"problem": "What condition is demonstrated by the anomaly depicted in this image? A)Macular hole, B)Cataracts, C)Corneal abrasion, D)Central Serous Retinopathy (CSR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1215.jpg",
"problem": "What is the demonstrated abnormality in this image? A)Color blindness, B)Central Serous Retinopathy (CSR), C)Uveitis, D)Retinal detachment",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1282.jpg",
"problem": "What is the specific abnormality shown in this image? A)Macular hole, B)Color blindness, C)Central Serous Retinopathy (CSR), D)Diabetic Retinopathy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1144.jpg",
"problem": "What is the specific abnormality shown in this image? A)Uveitis, B)Central Serous Retinopathy (CSR), C)Cataracts, D)Diabetic Retinopathy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1331.jpg",
"problem": "What is the name for the particular abnormality exhibited in this image? A)Cataracts, B)Central Serous Retinopathy (CSR), C)Macular hole, D)Optic neuritis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1239.jpg",
"problem": "What is the specific abnormality shown in this image? A)Macular hole, B)Retinal detachment, C)Color blindness, D)Central Serous Retinopathy (CSR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1066.jpg",
"problem": "What is the abnormality depicted in the image? A)Corneal abrasion, B)Central Serous Retinopathy (CSR), C)Color blindness, D)Retinal detachment",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1301.jpg",
"problem": "What is the name of the specific irregularity observed in this picture? A)Central Serous Retinopathy (CSR), B)Cataracts, C)Diabetic Retinopathy, D)Retinal detachment",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1217.jpg",
"problem": "What is the specific abnormality shown in this image? A)Cataracts, B)Age-related Macular Degeneration, C)Color blindness, D)Central Serous Retinopathy (CSR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1049.jpg",
"problem": "What specific pathology does this image depict? A)Central Serous Retinopathy (CSR), B)Diabetic Retinopathy, C)Age-related Macular Degeneration, D)Retinal detachment",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1024.jpg",
"problem": "What is the specific abnormality shown in this image? A)Age-related Macular Degeneration, B)Diabetic Retinopathy, C)Central Serous Retinopathy (CSR), D)Color blindness",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1086.jpg",
"problem": "What specific pathology is identified in the displayed picture? A)Cataracts, B)Optic neuritis, C)Color blindness, D)Central Serous Retinopathy (CSR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1046.jpg",
"problem": "Which specific condition is demonstrated in this image? A)Diabetic Retinopathy, B)Uveitis, C)Central Serous Retinopathy (CSR), D)Optic neuritis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1115.jpg",
"problem": "What is the specific abnormality shown in this image? A)Color blindness, B)Central Serous Retinopathy (CSR), C)Diabetic Retinopathy, D)Uveitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1210.jpg",
"problem": "What is the diagnosis indicated by the visual abnormality in this image? A)Central Serous Retinopathy (CSR), B)Color blindness, C)Optic neuritis, D)Age-related Macular Degeneration",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1340.jpg",
"problem": "What is the specific abnormality shown in this image? A)Glaucoma, B)Retinal detachment, C)Central Serous Retinopathy (CSR), D)Color blindness",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1129.jpg",
"problem": "What is the specific abnormality shown in this image? A)Diabetic Retinopathy, B)Retinal detachment, C)Cataracts, D)Central Serous Retinopathy (CSR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1313.jpg",
"problem": "What can be observed as the particular abnormality in this image? A)Optic neuritis, B)Uveitis, C)Central Serous Retinopathy (CSR), D)Retinal detachment",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1297.jpg",
"problem": "What is the specific abnormality shown in this image? A)Corneal abrasion, B)Central Serous Retinopathy (CSR), C)Cataracts, D)Optic neuritis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1154.jpg",
"problem": "What is the name of the particular abnormality visible in this image? A)Macular hole, B)Glaucoma, C)Corneal abrasion, D)Central Serous Retinopathy (CSR)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1164.jpg",
"problem": "What is the diagnosis for the anomaly displayed in this image? A)Retinal detachment, B)Central Serous Retinopathy (CSR), C)Cataracts, D)Diabetic Retinopathy",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1239.jpg",
"problem": "What is the name for the specific anomaly depicted in this picture? A)Diabetic Macular Edema (DME), B)Optic neuritis, C)Uveitis, D)Corneal abrasion",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1067.jpg",
"problem": "What is the specific abnormality shown in this image? A)Corneal abrasion, B)Optic neuritis, C)Color blindness, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1209.jpg",
"problem": "What is the precise anomaly depicted in this visual? A)Cataracts, B)Diabetic Macular Edema (DME), C)Optic neuritis, D)Macular hole",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1132.jpg",
"problem": "What is the specific abnormality shown in this image? A)Diabetic Macular Edema (DME), B)Color blindness, C)Macular hole, D)Diabetic Retinopathy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1072.jpg",
"problem": "What is the specific abnormality shown in this image? A)Corneal abrasion, B)Diabetic Macular Edema (DME), C)Glaucoma, D)Age-related Macular Degeneration",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1158.jpg",
"problem": "What condition is indicated by the specific abnormality seen in this image? A)Optic neuritis, B)Retinal detachment, C)Diabetic Retinopathy, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1306.jpg",
"problem": "What is the specific abnormality shown in this image? A)Diabetic Macular Edema (DME), B)Diabetic Retinopathy, C)Macular hole, D)Glaucoma",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1315.jpg",
"problem": "What is the specific abnormality shown in this image? A)Diabetic Macular Edema (DME), B)Corneal abrasion, C)Retinal detachment, D)Color blindness",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1264.jpg",
"problem": "What is the name of the pathology visible in this image? A)Glaucoma, B)Cataracts, C)Diabetic Macular Edema (DME), D)Macular hole",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1217.jpg",
"problem": "What does this image depict in terms of pathological conditions? A)Retinal detachment, B)Age-related Macular Degeneration, C)Diabetic Macular Edema (DME), D)Macular hole",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1285.jpg",
"problem": "What can be identified as the specific anomaly depicted in this image? A)Color blindness, B)Age-related Macular Degeneration, C)Diabetic Macular Edema (DME), D)Cataracts",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1005.jpg",
"problem": "What specific characteristics are evident in the abnormality depicted in this image? A)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The condition is characterized by the accumulation of fluid in the central retina., D)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1333.jpg",
"problem": "What characteristics can you identify from the anomaly in this photograph? A)The image shows an enlarged optic nerve caused by glaucoma., B)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., C)The condition is characterized by the accumulation of fluid in the central retina., D)The image reveals a corneal ulcer, indicated by the open sore on the cornea.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1082.jpg",
"problem": "What are some distinct characteristics of the abnormality observed in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., C)The image shows an enlarged optic nerve caused by glaucoma., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1055.jpg",
"problem": "What are the discernible characteristics of the anomaly depicted in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The image shows an enlarged optic nerve caused by glaucoma., C)The image reveals a corneal ulcer, indicated by the open sore on the cornea., D)The image depicts a cataract, evidenced by the clouding of the lens.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1269.jpg",
"problem": "What are the identifiable characteristics of the anomaly depicted in this image? A)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The condition is characterized by the accumulation of fluid in the central retina., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1083.jpg",
"problem": "What are some distinctive features of the anomaly depicted in this image? A)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., B)The condition is characterized by the accumulation of fluid in the central retina., C)The image depicts a cataract, evidenced by the clouding of the lens., D)The image shows an enlarged optic nerve caused by glaucoma.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1215.jpg",
"problem": "What specific features can you identify in this image that indicate the presence of an abnormality? A)The condition is characterized by the accumulation of fluid in the central retina., B)The image reveals a corneal ulcer, indicated by the open sore on the cornea., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1174.jpg",
"problem": "What characteristics can you comment on regarding the abnormality observed in this image? A)The image depicts a cataract, evidenced by the clouding of the lens., B)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., C)The image reveals a corneal ulcer, indicated by the open sore on the cornea., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1010.jpg",
"problem": "What are the identifiable characteristics of the abnormality observed in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The image shows an enlarged optic nerve caused by glaucoma., C)The image reveals a corneal ulcer, indicated by the open sore on the cornea., D)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1218.jpg",
"problem": "What are some distinctive characteristics of the abnormality observed in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., D)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1066.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image shows an enlarged optic nerve caused by glaucoma., B)The condition is characterized by the accumulation of fluid in the central retina., C)The image depicts a cataract, evidenced by the clouding of the lens., D)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1118.jpg",
"problem": "What are the distinguishing characteristics of the abnormality depicted in this image? A)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., B)The condition is characterized by the accumulation of fluid in the central retina., C)The image reveals a corneal ulcer, indicated by the open sore on the cornea., D)The image depicts a cataract, evidenced by the clouding of the lens.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1100.jpg",
"problem": "What are some distinguishable characteristics of the abnormality observed in this image? A)The image depicts a cataract, evidenced by the clouding of the lens., B)The condition is characterized by the accumulation of fluid in the central retina., C)The image shows an enlarged optic nerve caused by glaucoma., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1135.jpg",
"problem": "What are some distinguishing characteristics of the abnormality depicted in this image? A)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., B)The condition is characterized by the accumulation of fluid in the central retina., C)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., D)The image reveals a corneal ulcer, indicated by the open sore on the cornea.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1103.jpg",
"problem": "What distinctive features can you identify from the abnormality depicted in this picture? A)The condition is characterized by the accumulation of fluid in the central retina., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The image shows an enlarged optic nerve caused by glaucoma.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1071.jpg",
"problem": "What distinctive features can you identify in the abnormality shown in this picture? A)The image reveals a corneal ulcer, indicated by the open sore on the cornea., B)The condition is characterized by the accumulation of fluid in the central retina., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1210.jpg",
"problem": "What can you say about the characteristics of the anomaly seen in this image? A)The image reveals a corneal ulcer, indicated by the open sore on the cornea., B)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., C)The image shows an enlarged optic nerve caused by glaucoma., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1283.jpg",
"problem": "What can be said about the characteristics of the anomaly shown in this picture? A)The image depicts a cataract, evidenced by the clouding of the lens., B)The image reveals a corneal ulcer, indicated by the open sore on the cornea., C)The image shows an enlarged optic nerve caused by glaucoma., D)The condition is characterized by the accumulation of fluid in the central retina.",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1341.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The image reveals a corneal ulcer, indicated by the open sore on the cornea., B)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., C)The condition is characterized by the accumulation of fluid in the central retina., D)The image depicts a cataract, evidenced by the clouding of the lens.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1091.jpg",
"problem": "What are the identifiable characteristics of the abnormality depicted in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The image reveals a corneal ulcer, indicated by the open sore on the cornea.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1233.jpg",
"problem": "What are some discernible characteristics of the abnormality observed in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The image reveals a corneal ulcer, indicated by the open sore on the cornea.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1176.jpg",
"problem": "What are the noticeable characteristics of the abnormality depicted in this image? A)The condition is characterized by the accumulation of fluid in the central retina., B)The image reveals a corneal ulcer, indicated by the open sore on the cornea., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1022.jpg",
"problem": "What are some characteristic features of the abnormality observed in this image? A)The image reveals a corneal ulcer, indicated by the open sore on the cornea., B)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., C)The condition is characterized by the accumulation of fluid in the central retina., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/test/CSR/csr_test_1289.jpg",
"problem": "What distinctive features can be observed in the anomaly depicted in the picture? A)The condition is characterized by the accumulation of fluid in the central retina., B)The image shows an enlarged optic nerve caused by glaucoma., C)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., D)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1065.jpg",
"problem": "What are the noticeable characteristics of the anomaly depicted in this image? A)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The image shows an enlarged optic nerve caused by glaucoma., D)The image depicts a cataract, evidenced by the clouding of the lens.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1186.jpg",
"problem": "What characteristics stand out in the abnormality depicted in this picture? A)The image depicts a cataract, evidenced by the clouding of the lens., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The image reveals a corneal ulcer, indicated by the open sore on the cornea., D)The image shows an enlarged optic nerve caused by glaucoma.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1047.jpg",
"problem": "What distinctive features can you identify in this image's abnormality? A)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., D)The image shows an enlarged optic nerve caused by glaucoma.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1085.jpg",
"problem": "What characteristics stand out in the depicted abnormality? A)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., B)The image reveals a corneal ulcer, indicated by the open sore on the cornea., C)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., D)The image depicts a cataract, evidenced by the clouding of the lens.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1073.jpg",
"problem": "What distinctive features can be identified in the depicted anomaly? A)The image reveals a corneal ulcer, indicated by the open sore on the cornea., B)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1090.jpg",
"problem": "What distinctive features can be observed in the abnormality presented in this picture? A)The image depicts a cataract, evidenced by the clouding of the lens., B)The image shows an enlarged optic nerve caused by glaucoma., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1039.jpg",
"problem": "What can be said about the distinct features observed in the abnormality shown in the picture? A)The image depicts a cataract, evidenced by the clouding of the lens., B)The image reveals a corneal ulcer, indicated by the open sore on the cornea., C)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., D)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1282.jpg",
"problem": "What are the observed characteristics of the anomaly depicted in this image? A)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The image shows an enlarged optic nerve caused by glaucoma., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1018.jpg",
"problem": "What characteristics are observable in the abnormality present in this image? A)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The image shows an enlarged optic nerve caused by glaucoma., D)The image reveals a corneal ulcer, indicated by the open sore on the cornea.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1014.jpg",
"problem": "What characteristics are evident in the image that indicate the presence of an abnormality? A)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., B)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., C)The image reveals a corneal ulcer, indicated by the open sore on the cornea., D)The image depicts a cataract, evidenced by the clouding of the lens.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1091.jpg",
"problem": "What are some distinguishing features of the abnormality depicted in this image? A)The image depicts a cataract, evidenced by the clouding of the lens., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The image shows an enlarged optic nerve caused by glaucoma., D)The image reveals a corneal ulcer, indicated by the open sore on the cornea.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1218.jpg",
"problem": "What are the identifiable features of the abnormality portrayed in this image? A)The image depicts a cataract, evidenced by the clouding of the lens., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The image shows an enlarged optic nerve caused by glaucoma., D)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1036.jpg",
"problem": "What distinct features can you identify in this image's abnormality? A)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The image shows an enlarged optic nerve caused by glaucoma., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1284.jpg",
"problem": "What are the observable characteristics of the abnormality shown in the image? A)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The image shows an enlarged optic nerve caused by glaucoma., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1099.jpg",
"problem": "What are the identifiable characteristics of the abnormality observed in the image? A)The image reveals a corneal ulcer, indicated by the open sore on the cornea., B)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., C)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., D)The image shows an enlarged optic nerve caused by glaucoma.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1062.jpg",
"problem": "What characteristics can be observed in the abnormality showcased in this image? A)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., B)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., C)The image depicts a cataract, evidenced by the clouding of the lens., D)The image reveals a corneal ulcer, indicated by the open sore on the cornea.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1060.jpg",
"problem": "What distinctive characteristics can you identify in the abnormality depicted in the picture? A)The image shows an enlarged optic nerve caused by glaucoma., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The image depicts a cataract, evidenced by the clouding of the lens., D)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1306.jpg",
"problem": "What characteristics are observed in the image that indicate the presence of an abnormality? A)The image reveals a corneal ulcer, indicated by the open sore on the cornea., B)The image shows an enlarged optic nerve caused by glaucoma., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1227.jpg",
"problem": "What are the notable features of the abnormality observed in this image? A)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The image shows an enlarged optic nerve caused by glaucoma.",
"solution": "<answer> A </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1123.jpg",
"problem": "What can you tell me about the characteristics of the abnormality shown in this image? A)The image reveals a corneal ulcer, indicated by the open sore on the cornea., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1169.jpg",
"problem": "What are some distinctive features of the abnormality seen in this image? A)The image depicts a cataract, evidenced by the clouding of the lens., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1161.jpg",
"problem": "What characteristics can be observed regarding the irregularity depicted in this photograph? A)The image reveals a corneal ulcer, indicated by the open sore on the cornea., B)The image depicts a cataract, evidenced by the clouding of the lens., C)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., D)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva.",
"solution": "<answer> C </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1089.jpg",
"problem": "What are some prominent characteristics of the abnormality depicted in this image? A)The image shows an enlarged optic nerve caused by glaucoma., B)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., C)The image reveals a corneal ulcer, indicated by the open sore on the cornea., D)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME).",
"solution": "<answer> D </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1325.jpg",
"problem": "What are the distinct characteristics observed in the abnormality shown in this image? A)The image shows an enlarged optic nerve caused by glaucoma., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The image reveals a corneal ulcer, indicated by the open sore on the cornea., D)The abnormality in the image is a subconjunctival hemorrhage, characterized by the presence of blood under the conjunctiva.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1050.jpg",
"problem": "Can you describe any notable attributes of the abnormality in this image? A)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The image shows an enlarged optic nerve caused by glaucoma., D)The image depicts a cataract, evidenced by the clouding of the lens.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/Retinal OCT-C8/val/DME/dme_val_1152.jpg",
"problem": "What are the notable characteristics of the anomaly shown in this image? A)The image reveals a corneal ulcer, indicated by the open sore on the cornea., B)The image displays swelling and fluid accumulation in the macula due to Diabetic Macular Edema (DME)., C)The image shows an enlarged optic nerve caused by glaucoma., D)The abnormality in the image is a retinal detachment, indicated by the separation of the retina from the underlying tissue.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-2959614-2.jpeg",
"problem": "What type of imaging modality was utilized to produce this image? A)Optical Coherence Tomography (OCT), B)Positron Emission Tomography (PET), C)Infrared imaging, D)Computed Tomography (CT)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-5861916-5.jpeg",
"problem": "Which type of imaging technique was employed to obtain this image? A)Computed Tomography (CT), B)Optical Coherence Tomography (OCT), C)Magnetic Resonance Imaging (MRI), D)Positron Emission Tomography (PET)",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-451136-1.jpeg",
"problem": "What imaging modality was used to capture this image? A)X-ray, B)Positron Emission Tomography (PET), C)Optical Coherence Tomography (OCT), D)Ultrasound",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-103044-8.jpeg",
"problem": "What specific imaging modality was employed to obtain this image? A)Nuclear medicine scan, B)Optical Coherence Tomography (OCT), C)Computed Tomography (CT), D)Infrared imaging",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-3541867-1.jpeg",
"problem": "What modality of imaging was utilized to obtain this image? A)Computed Tomography (CT), B)Infrared imaging, C)Optical Coherence Tomography (OCT), D)Magnetic Resonance Imaging (MRI)",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-904464-3.jpeg",
"problem": "What type of imaging technique was used to generate this image? A)Electroencephalography (EEG), B)Ultrasound, C)X-ray, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-2350851-1.jpeg",
"problem": "What imaging technique was utilized to capture this picture? A)Computed Tomography (CT), B)Optical Coherence Tomography (OCT), C)Magnetic Resonance Imaging (MRI), D)Infrared imaging",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-9504297-1.jpeg",
"problem": "What type of medical imaging was utilized in obtaining this image? A)Ultrasound, B)Magnetic Resonance Imaging (MRI), C)Nuclear medicine scan, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-8729675-1.jpeg",
"problem": "What specific medical imaging technique was employed for obtaining this image? A)X-ray, B)Optical Coherence Tomography (OCT), C)Fluoroscopy, D)Infrared imaging",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-8732456-1.jpeg",
"problem": "What modality was used to obtain this image in the field of medical imaging? A)Optical Coherence Tomography (OCT), B)Thermography, C)Magnetic Resonance Imaging (MRI), D)Positron Emission Tomography (PET)",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-2403178-1.jpeg",
"problem": "What imaging modality was used to capture this image? A)Optical Coherence Tomography (OCT), B)Positron Emission Tomography (PET), C)Computed Tomography (CT), D)Nuclear medicine scan",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-8811857-1.jpeg",
"problem": "What imaging technique was utilized to capture this particular image? A)Optical Coherence Tomography (OCT), B)Thermography, C)Computed Tomography (CT), D)Fluoroscopy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-5443411-1.jpeg",
"problem": "What modality of imaging was utilized for this image to be obtained? A)Electroencephalography (EEG), B)Thermography, C)Infrared imaging, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2739821-1.jpeg",
"problem": "Which technique was utilized to obtain this image? A)Thermography, B)Nuclear medicine scan, C)X-ray, D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-1988065-1.jpeg",
"problem": "What modality was employed to obtain this picture? A)Thermography, B)Nuclear medicine scan, C)Optical Coherence Tomography (OCT), D)Fluoroscopy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2602596-1.jpeg",
"problem": "What imaging modality was used to capture this image? A)Computed Tomography (CT), B)Optical Coherence Tomography (OCT), C)Fluoroscopy, D)Nuclear medicine scan",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2197972-1.jpeg",
"problem": "What specific imaging method was utilized to obtain this image? A)Thermography, B)Positron Emission Tomography (PET), C)Computed Tomography (CT), D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-48053-1.jpeg",
"problem": "What type of imaging was utilized to obtain this picture? A)X-ray, B)Infrared imaging, C)Magnetic Resonance Imaging (MRI), D)Optical Coherence Tomography (OCT)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-279206-1.jpeg",
"problem": "What specific method of imaging was employed to acquire this image? A)Electroencephalography (EEG), B)Infrared imaging, C)Optical Coherence Tomography (OCT), D)Ultrasound",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-457907-1.jpeg",
"problem": "What is the observed abnormality depicted in this visual representation? A)Corneal ulcer, B)Choroidal Neovascularization (CNV), C)Uveitis, D)Conjunctivitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-1136126-1.jpeg",
"problem": "What is the name of the particular abnormality captured in this image? A)Macular degeneration, B)Diabetic retinopathy, C)Conjunctivitis, D)Choroidal Neovascularization (CNV)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-2141150-1.jpeg",
"problem": "What does this image display in terms of specific abnormalities? A)Cataracts, B)Retinal detachment, C)Glaucoma, D)Choroidal Neovascularization (CNV)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-3200277-2.jpeg",
"problem": "What is the specific abnormality shown in this image? A)Diabetic retinopathy, B)Corneal ulcer, C)Uveitis, D)Choroidal Neovascularization (CNV)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-163081-8.jpeg",
"problem": "What is the specific abnormality shown in this image? A)Optic nerve atrophy, B)Diabetic retinopathy, C)Choroidal Neovascularization (CNV), D)Conjunctivitis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-2438783-2.jpeg",
"problem": "What is the name of the specific abnormality observed in this image? A)Macular degeneration, B)Retinal detachment, C)Choroidal Neovascularization (CNV), D)Cataracts",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-1083927-1.jpeg",
"problem": "What is the specific abnormality shown in this image? A)Optic nerve atrophy, B)Corneal ulcer, C)Choroidal Neovascularization (CNV), D)Retinitis pigmentosa",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-933576-4.jpeg",
"problem": "Identify the pathological condition depicted in the provided picture. A)Glaucoma, B)Retinitis pigmentosa, C)Retinal detachment, D)Choroidal Neovascularization (CNV)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-163081-1.jpeg",
"problem": "What is the specific abnormality shown in this image? A)Choroidal Neovascularization (CNV), B)Retinitis pigmentosa, C)Cataracts, D)Macular degeneration",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-6215140-2.jpeg",
"problem": "What is the specific condition represented by the anomaly visualized in this image? A)Retinitis pigmentosa, B)Choroidal Neovascularization (CNV), C)Diabetic retinopathy, D)Glaucoma",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-103044-9.jpeg",
"problem": "What is the name of the particular anomaly observed in this picture? A)Optic nerve atrophy, B)Cataracts, C)Choroidal Neovascularization (CNV), D)Retinitis pigmentosa",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-2350851-1.jpeg",
"problem": "What is the specific abnormality shown in this image? A)Choroidal Neovascularization (CNV), B)Retinal detachment, C)Corneal ulcer, D)Uveitis",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-2192440-1.jpeg",
"problem": "What is the name of the specific abnormality depicted in this photograph? A)Retinal detachment, B)Choroidal Neovascularization (CNV), C)Macular degeneration, D)Uveitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/CNV/CNV-1730592-2.jpeg",
"problem": "What is the specific abnormality shown in this image? A)Glaucoma, B)Choroidal Neovascularization (CNV), C)Diabetic retinopathy, D)Cataracts",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-82328-1.jpeg",
"problem": "What specific condition is visualized in this image? A)Age-related Macular Degeneration, B)Cataracts, C)Uveitis, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-5802218-1.jpeg",
"problem": "What is the name of the particular abnormality identified in this image? A)Optic neuritis, B)Retinal detachment, C)Diabetic Macular Edema (DME), D)Corneal abrasion",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-3810791-1.jpeg",
"problem": "What is the specific medical condition displayed in this image? A)Retinal detachment, B)Optic neuritis, C)Glaucoma, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-2105194-1.jpeg",
"problem": "What is the name of the medical condition identified in this image? A)Diabetic Macular Edema (DME), B)Optic neuritis, C)Cataracts, D)Corneal abrasion",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-8177380-3.jpeg",
"problem": "What specific pathological condition is depicted in this photograph? A)Macular hole, B)Glaucoma, C)Diabetic Macular Edema (DME), D)Corneal abrasion",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-98994-2.jpeg",
"problem": "What is the specific abnormality shown in this image? A)Glaucoma, B)Macular hole, C)Diabetic Macular Edema (DME), D)Optic neuritis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-8729675-1.jpeg",
"problem": "What is the abnormality depicted in this image? A)Diabetic Macular Edema (DME), B)Cataracts, C)Corneal abrasion, D)Diabetic Retinopathy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-3921035-1.jpeg",
"problem": "What is the name of the demonstrated abnormality in this image? A)Uveitis, B)Cataracts, C)Diabetic Retinopathy, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-4117019-1.jpeg",
"problem": "What specific pathological condition is identified in the displayed image? A)Diabetic Retinopathy, B)Retinal detachment, C)Diabetic Macular Edema (DME), D)Cataracts",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-8861620-1.jpeg",
"problem": "What can be identified as the particular anomaly visible in this image? A)Cataracts, B)Diabetic Macular Edema (DME), C)Corneal abrasion, D)Color blindness",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-7939555-4.jpeg",
"problem": "What is the specific abnormality shown in this image? A)Macular hole, B)Diabetic Macular Edema (DME), C)Diabetic Retinopathy, D)Retinal detachment",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-4732091-2.jpeg",
"problem": "What is the term used to identify the specific abnormality depicted in this image? A)Diabetic Macular Edema (DME), B)Uveitis, C)Macular hole, D)Diabetic Retinopathy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-8366524-1.jpeg",
"problem": "What type of pathological condition is indicated by the depicted findings? A)Glaucoma, B)Diabetic Retinopathy, C)Diabetic Macular Edema (DME), D)Optic neuritis",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-8989419-1.jpeg",
"problem": "What type of pathological condition is depicted in the provided picture? A)Glaucoma, B)Color blindness, C)Retinal detachment, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-8851193-1.jpeg",
"problem": "What is the name of the medical condition illustrated in this picture? A)Age-related Macular Degeneration, B)Optic neuritis, C)Diabetic Macular Edema (DME), D)Corneal abrasion",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DME/DME-5981434-1.jpeg",
"problem": "What is the name of the specific condition highlighted in this image? A)Cataracts, B)Color blindness, C)Retinal detachment, D)Diabetic Macular Edema (DME)",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-1112835-1.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Drusen, B)Macular degeneration, C)Retinal detachment, D)Glaucoma",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-2403178-4.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Strabismus, B)Cataracts, C)Glaucoma, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-8351260-1.jpeg",
"problem": "What is the oct image revealing in terms of abnormality? A)Drusen, B)Cataracts, C)Macular degeneration, D)Presbyopia",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-7373858-1.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Drusen, B)Presbyopia, C)Retinal detachment, D)Nystagmus",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-7393104-1.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Drusen, B)Diabetic retinopathy, C)Retinal detachment, D)Cataracts",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-7555604-2.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Nystagmus, B)Presbyopia, C)Drusen, D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-1997439-3.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Astigmatism, B)Drusen, C)Presbyopia, D)Glaucoma",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-2257047-7.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Presbyopia, B)Cataracts, C)Drusen, D)Astigmatism",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-1786810-3.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Drusen, B)Macular degeneration, C)Glaucoma, D)Astigmatism",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-525301-1.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Drusen, B)Presbyopia, C)Uveitis, D)Astigmatism",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-8261063-1.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Uveitis, B)Glaucoma, C)Drusen, D)Macular degeneration",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-5477211-2.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Drusen, B)Retinal detachment, C)Strabismus, D)Macular degeneration",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-1237848-3.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Drusen, B)Strabismus, C)Nystagmus, D)Retinal detachment",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-1173253-1.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Glaucoma, B)Retinal detachment, C)Nystagmus, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-8389446-2.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Uveitis, B)Drusen, C)Glaucoma, D)Macular degeneration",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-2403178-3.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Drusen, B)Retinal detachment, C)Strabismus, D)Diabetic retinopathy",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-8261063-7.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Astigmatism, B)Glaucoma, C)Nystagmus, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-609387-2.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Presbyopia, B)Cataracts, C)Drusen, D)Diabetic retinopathy",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-8261063-3.jpeg",
"problem": "What is the identified anomaly observed in this oct image? A)Glaucoma, B)Drusen, C)Presbyopia, D)Uveitis",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-2128644-3.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Macular degeneration, B)Astigmatism, C)Uveitis, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-827677-1.jpeg",
"problem": "What is the identified anomaly in this oct image? A)Cataracts, B)Diabetic retinopathy, C)Macular degeneration, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-8345703-1.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Strabismus, B)Cataracts, C)Macular degeneration, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/DRUSEN/DRUSEN-7345121-1.jpeg",
"problem": "What is the name of the specific anomaly observed in this oct image? A)Presbyopia, B)Cataracts, C)Drusen, D)Glaucoma",
"solution": "<answer> C </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/val/DRUSEN/DRUSEN-9894035-1.jpeg",
"problem": "What is the specific abnormality shown in this oct image? A)Strabismus, B)Diabetic retinopathy, C)Cataracts, D)Drusen",
"solution": "<answer> D </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2075832-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-1759350-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-66515-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2709055-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-3320960-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2627129-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-1908313-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2305502-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-223814-1.jpeg",
"problem": "Does this oct image display any abnormalities? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-3465750-1.jpeg",
"problem": "Is there any abnormal finding in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2182640-1.jpeg",
"problem": "Is there any indication of abnormalities in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-697826-1.jpeg",
"problem": "Is there any sign of abnormality observed in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-758272-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-655447-1.jpeg",
"problem": "Does this oct image display any abnormalities? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-12494-2.jpeg",
"problem": "Does this oct image show any abnormality? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-12494-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-402066-2.jpeg",
"problem": "Is there any sign of abnormality in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-693575-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2598368-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-549356-2.jpeg",
"problem": "Is there any abnormality present in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-772481-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-450923-1.jpeg",
"problem": "Does this oct image show any abnormality? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2459401-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2434258-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-438684-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2244950-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-568518-1.jpeg",
"problem": "Is there any abnormality detected in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-582215-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2460548-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-1957379-1.jpeg",
"problem": "Does the oct image show any abnormalities present? A)No., B)Yes",
"solution": "<answer> A </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2192790-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/test/NORMAL/NORMAL-2019006-1.jpeg",
"problem": "Is there any abnormality present in this oct image? A)Yes, B)No.",
"solution": "<answer> B </answer>"
},
{
"image": "Images/OCT & X-Ray 2017/val/DME/DME-9721607-2.jpeg",
"problem": "What is the specific abnormality shown in this image? A)Glaucoma, B)Diabetic Macular Edema (DME), C)Optic neuritis, D)Diabetic Retinopathy",
"solution": "<answer> B </answer>"
}
] |