File size: 182,875 Bytes
4746372 | 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 | VolumeName,Question,Answer
train_6226_a_1.nii.gz,Which adrenal gland shows nodular thickening?,Right adrenal gland
train_6112_a_2.nii.gz,Where is the nodule located?,Right lung lower lobe.
train_6123_a_1.nii.gz,Where is the consolidation observed?,Left lung inferior lingular segment
train_16446_a_1.nii.gz,Which kidney has a cortical cyst?,Left kidney.
train_6117_a_2.nii.gz,Where is the calculus located?,Left kidney.
train_6108_a_1.nii.gz,What is the location of the cyst?,Right lobe of liver
train_6104_a_1.nii.gz,Where is the semisolid nodule located?,Left lung lower lobe
train_16437_a_2.nii.gz,Where is the atelectatic change located?,Right lung middle lobe
train_6147_a_2.nii.gz,Where are the prominent cortical cysts observed?,Both kidneys.
train_6143_a_2.nii.gz,What is the condition of the trachea?,Open and unobstructed.
train_6142_a_1.nii.gz,What is the position of the nodule in the right lung middle lobe?,Posterobasal segment.
train_6135_a_2.nii.gz,Which kidney has a stone?,Right kidney.
train_6135_a_1.nii.gz,Where is the stone located?,Right kidney
train_6072_a_1.nii.gz,Which kidney has a lesion?,Left kidney.
train_6081_a_2.nii.gz,Which lung has a focal density increase?,Left lung.
train_16471_a_1.nii.gz,What is the location of the largest nodule?,Right lung upper lobe.
train_6078_a_2.nii.gz,Which organ contains the lesion?,Liver
train_6075_a_3.nii.gz,What is the location of the nodular density?,Right lower lobe
train_16474_a_2.nii.gz,Where is the area of consolidation observed?,Posterobasal segment of the right lung.
train_6070_a_1.nii.gz,Which side has a thicker pleural effusion?,Right side
train_6069_a_1.nii.gz,Which diaphragm is elevated?,Right hemidiaphragm.
train_16475_a_2.nii.gz,What is the position of the atelectatic changes?,Left lung upper lobe
train_6099_a_1.nii.gz,Where is the total collapse observed?,"Lower lobe, right lung."
train_16461_a_2.nii.gz,Where is the focal ground-glass density located in the left lung?,Upper lobe apicoposterior segment.
train_16462_b_1.nii.gz,Where is the pneumonic infiltration located?,Left lower lobe.
train_16464_a_2.nii.gz,Where is the nodule located?,Medial segment of right lung middle lobe.
train_16466_a_1.nii.gz,Where are the atelectatic changes located?,Left lung upper lobe
train_6086_a_2.nii.gz,Which lobes show focal consolidations?,Bilateral lower lobes.
train_16435_a_2.nii.gz,What is the position of the calcific nodule?,Left lung lower lobe.
train_6065_a_1.nii.gz,Where is the largest nodule located?,Left lung upper lobe
train_6201_b_1.nii.gz,Which adrenal gland shows thickening?,Left adrenal gland
train_6199_a_2.nii.gz,Where are the atelectatic changes located?,Left lung upper lobe
train_6195_a_1.nii.gz,Where is the nodule positioned in the lung?,Anterior upper lobe.
train_16400_a_1.nii.gz,Which lung has the largest nodular lesion?,Right lower lobe
train_6217_a_1.nii.gz,Where is the moderate effusion more pronounced?,Right hemithorax.
train_16395_a_1.nii.gz,Which kidney has a hypodense lesion?,Right kidney
train_6210_b_1.nii.gz,Where are the parenchymal nodules located?,"Right middle lobe, left lower lobe"
train_6208_e_2.nii.gz,Which kidney has a cyst?,Right kidney
train_16396_a_1.nii.gz,What is the location of the hyperdense stone?,Left kidney.
train_16397_a_1.nii.gz,Where is the calcific nodule located?,Right lung upper lobe
train_6160_c_1.nii.gz,Which lobe shows volume loss?,Right lower lobe.
train_16430_a_1.nii.gz,Which lung contains a 7 mm nodule?,Left lung
train_16430_a_2.nii.gz,Which lung contains a 7 mm nodule?,Left lung
train_16430_b_2.nii.gz,Where is the nodule measuring 10x10 mm located?,"Lower lobe, left lung."
train_6157_a_1.nii.gz,Which diaphragm is slightly elevated?,Left hemidiaphragm
train_6154_b_2.nii.gz,What is the position of the solid lesion in the adrenal gland?,Left adrenal gland.
train_6154_b_1.nii.gz,What is the position of the solid lesion in the adrenal gland?,Left adrenal gland.
train_6154_a_2.nii.gz,What is observed in the bilateral pleural space?,Bilateral pleural effusion.
train_16435_a_1.nii.gz,What is the position of the calcific nodule in the left lung?,Superior segment of lower lobe.
train_6161_a_1.nii.gz,What is the position of the nodule?,Anterior upper lobe
train_6177_a_1.nii.gz,Where is the mass located?,Right lung lower lobe
train_16412_a_2.nii.gz,Which kidney has stones?,Right kidney
train_16413_a_2.nii.gz,What is the position of the largest pulmonary nodule?,Right lung middle lobe.
train_16417_a_2.nii.gz,Where is the largest nodule located?,Left lower lobe
train_6165_f_2.nii.gz,Where are the infiltration areas located?,Right lung upper lobe.
train_16421_a_2.nii.gz,Which kidney has lesions?,Left kidney.
train_6165_d_1.nii.gz,What is the location of the newly emerged effusion?,Right pleural space
train_6165_c_2.nii.gz,Where is the larger nodule observed?,Left upper lobe.
train_6165_b_2.nii.gz,Which side shows no effusion?,Right hemithorax.
train_6165_b_1.nii.gz,Where is the atelectatic change noted?,Lower lobes of both lungs.
train_6217_b_1.nii.gz,Which side has more prominent pleural effusion?,Right side.
train_16532_b_1.nii.gz,What is the position of the pleural effusion?,Right hemithorax.
train_5970_a_2.nii.gz,Which lobe contains a 3 mm nodule?,Right lung upper lobe.
train_5969_a_2.nii.gz,Where is the cortical cyst located?,Left kidney.
train_5967_a_2.nii.gz,Which kidney has a calculus?,Left kidney
train_5967_a_1.nii.gz,Where is the focal consolidation area located?,Left lung lower lobe
train_16532_b_2.nii.gz,What is observed in the right hemithorax?,Pleural effusion
train_5965_a_1.nii.gz,Which kidney shows a cyst?,Left kidney
train_16533_a_2.nii.gz,Where is the largest nodule found?,Left lower lobe
train_5963_a_2.nii.gz,Where is the well-circumscribed nodule observed?,Right lung middle lobe.
train_16535_a_2.nii.gz,Where is the focal ground-glass-like density increase located?,Right lung upper lobe
train_5960_a_2.nii.gz,Which lung lobe contains the nodule?,Right middle lobe.
train_5996_a_2.nii.gz,Where is the consolidation area located?,Right lung upper lobe.
train_16517_a_2.nii.gz,Which lobe has consolidations?,Right middle lobe
train_16520_a_1.nii.gz,Which kidney has a cortical cyst?,Right kidney
train_16520_a_2.nii.gz,Where is the cortical cyst located?,Right kidney
train_16521_a_2.nii.gz,What is the location of the 4 mm nodule?,Left lung upper lobe.
train_5982_a_2.nii.gz,Where is the pleural effusion more prominent?,Left pleural area
train_16523_a_1.nii.gz,Which kidney shows a stone density?,Right kidney
train_16524_a_2.nii.gz,Where is the millimetric stone found?,Right kidney
train_16526_a_1.nii.gz,Where is the pleural effusion located?,Right hemithorax
train_16526_a_2.nii.gz,Which hemithorax has pleural effusion?,Right hemithorax
train_16550_b_2.nii.gz,Where is the hyperdense stone located?,Left kidney
train_5932_a_1.nii.gz,Which adrenal gland shows thickening?,Left adrenal gland
train_5925_a_2.nii.gz,Which lung lobe has the largest nodule?,Right lower lobe
train_5923_a_1.nii.gz,Which lung lobe shows abnormalities?,Right middle lobe
train_5922_a_2.nii.gz,Which lobe contains the nodules?,Lower lobe
train_5918_a_2.nii.gz,What is the position of the elevated diaphragm?,Right hemidiaphragm
train_16556_a_1.nii.gz,What is the position of the 2 mm nodule in the left lung?,Upper lobe anterior segment.
train_5935_a_2.nii.gz,Where is the subpleural nodule located?,Right lower lobe.
train_5935_b_1.nii.gz,Where is the 4.5 mm diameter nodule located?,Upper lobe anterior segment.
train_5935_c_2.nii.gz,What is the location of the largest nodule?,Lower lobe of the right lung.
train_16541_b_2.nii.gz,What is the position of the nodule in the left lung?,Upper lobe anterior segment.
train_5950_a_5.nii.gz,Where is the largest nodule found?,Left lung lower lobe
train_5950_a_4.nii.gz,Where is the largest nodule located?,Left lung lower lobe
train_5950_a_3.nii.gz,Where is the largest nodule found?,Left lung lower lobe
train_5947_a_2.nii.gz,Which lung lobe contains the millimetric nodule?,Right lower lobe.
train_16544_a_1.nii.gz,Which lung shows patchy ground glass densities?,Right lung.
train_16544_a_2.nii.gz,Where is the pleural effusion located?,Left hemithorax
train_5941_a_2.nii.gz,Which kidney shows calcification?,Right kidney
train_16546_a_2.nii.gz,Which lung has the largest parenchymal nodule?,Left lung.
train_5938_a_1.nii.gz,Where is the nodule located?,Left lung lower lobe
train_6042_a_2.nii.gz,What area shows atelectasis?,Left lower lobe.
train_6047_a_2.nii.gz,Where is the largest nodule found?,Right lung lower lobe.
train_6042_a_1.nii.gz,Which lobe shows atelectasis?,Left lower lobe.
train_6039_b_2.nii.gz,Where is the minimal effusion located?,Left pleural space.
train_6039_b_1.nii.gz,Where is the minimal effusion observed?,Left pleural space
train_16490_b_1.nii.gz,Where is the largest nodule located?,Left lower lobe.
train_16490_b_2.nii.gz,Where is the largest nodule located?,Left lung lower lobe
train_6031_a_1.nii.gz,Which lung segment contains the nodule?,Right upper lobe
train_6063_a_1.nii.gz,Which lobe shows cavitation?,Left upper lobe
train_6058_a_1.nii.gz,What is the position of the cortical cyst?,Superior pole of left kidney
train_6055_a_2.nii.gz,Which lung contains the observed nodule?,Left lung
train_6055_a_1.nii.gz,Which lung is affected by the observed nodule?,Left lung.
train_6054_a_2.nii.gz,Where is the nodule located?,Right lung middle lobe
train_6054_a_1.nii.gz,Which lung contains the nodule?,Right lung
train_6028_a_1.nii.gz,Where is the 3 mm nodule located?,Right lung lower lobe.
train_6006_a_1.nii.gz,Where is the parenchymal nodule located?,Inferior lingular segment
train_16504_a_1.nii.gz,Which lung lobe shows total atelectasis?,Right lower lobe.
train_16506_a_1.nii.gz,Where is the cortical cyst observed?,Left kidney.
train_6006_a_2.nii.gz,Which lung lobe shows focal consolidation?,Right lower lobe
train_16511_a_1.nii.gz,What is the position of the nodular density?,Upper lobe.
train_6004_a_2.nii.gz,Where is the nonspecific nodule located?,Right upper lobe
train_6004_a_1.nii.gz,Where is the nonspecific nodule located?,Right upper lobe
train_6002_a_1.nii.gz,Where is the mass located?,"Apicoposterior segment, left lung"
train_6001_a_1.nii.gz,Where is the pleural effusion observed?,Left pleural space
train_6016_a_2.nii.gz,Where is the cyst located?,Left kidney.
train_6026_a_2.nii.gz,What is the position of the stone?,Upper pole of left kidney
train_6026_a_1.nii.gz,Where is the stone located?,Left kidney upper pole.
train_16496_a_1.nii.gz,Where are the linear atelectatic changes located?,Right lung upper lobe
train_6018_a_2.nii.gz,Where is the nodular lesion in the adrenal gland?,Left adrenal gland
train_16498_b_1.nii.gz,What area shows lobar consolidation?,Right lung middle lobe
train_6217_b_2.nii.gz,Where is the pleural effusion more prominent?,Right side
train_6426_a_2.nii.gz,What segment contains the nodule?,Right lung upper lobe
train_6428_a_2.nii.gz,Which kidneys show calculi?,Both kidneys.
train_6422_a_2.nii.gz,Which lobes show atelectatic changes?,Both lower lobes.
train_16278_a_2.nii.gz,What is the location of the parenchymal nodule in the right lung?,"Lateral part, upper lobe."
train_6420_a_1.nii.gz,Where is the cortical cyst located?,Left kidney.
train_16278_a_3.nii.gz,Which lung contains the largest parenchymal nodule?,Right lung upper lobe.
train_6436_a_1.nii.gz,Where is the calcified nodule located?,Right lung lower lobe
train_6436_a_2.nii.gz,Which lung contains the calcified nodule?,Right lung.
train_16263_a_1.nii.gz,Where are the ground-glass nodules located?,Right lung lower lobe
train_16263_a_2.nii.gz,Where is the consolidation located?,Left lung upper lobe.
train_6442_a_2.nii.gz,What is the position of the cortical cyst?,Right kidney
train_16265_a_1.nii.gz,Which kidney has stones?,Left kidney
train_16265_a_2.nii.gz,Where are the stones located?,Left kidney
train_6439_c_2.nii.gz,Which lung shows the effusion?,Left lung.
train_6439_a_2.nii.gz,Which adrenal gland shows increased thickness?,Left adrenal gland
train_6438_b_2.nii.gz,Which lung has masses observed?,Right lung
train_6438_b_1.nii.gz,Which lung shows free pleural effusion?,Right lung.
train_16269_a_1.nii.gz,Where is the stone located?,Right kidney.
train_16289_a_2.nii.gz,Where is the subpleural calcified pulmonary nodule located?,Right lung lower lobe.
train_6396_a_2.nii.gz,Where is the pleural effusion observed?,Left hemithorax.
train_16293_a_1.nii.gz,Which lung contains the nodule?,Right lung.
train_6385_a_2.nii.gz,Where are the consolidation areas primarily located?,Lower lobes
train_16278_a_5.nii.gz,Where is the parenchymal nodule located in the right lung?,Lateral upper lobe.
train_16297_a_1.nii.gz,Which lobe contains the 4 mm nodule?,Right upper lobe.
train_16297_a_2.nii.gz,Which lobe contains the 4 mm nodule?,Right upper lobe.
train_6381_a_2.nii.gz,Which lobe is affected?,Middle lobe
train_6399_a_2.nii.gz,Where are the atelectatic changes located?,Both lung lower lobes
train_16279_a_2.nii.gz,Where is the nodule located?,Left lung upper lobe
train_16280_a_1.nii.gz,Where is the largest nodule located?,"Lower lobe, right lung"
train_16280_a_2.nii.gz,Which lung has the largest nodule?,Right lower lobe
train_16282_a_2.nii.gz,Where is the millimetric nodule located?,Right lung middle lobe
train_16283_a_2.nii.gz,Where are the sequela parenchymal changes located?,Right middle lobe.
train_6408_a_1.nii.gz,What is the location of the largest nodule?,Middle lobe of the right lung.
train_16284_a_1.nii.gz,What is the location of the observed nodule?,Left lung lower lobe.
train_6404_a_1.nii.gz,What is the location of the parenchyma nodule?,Right lower lobe
train_16285_a_2.nii.gz,Where are the calculi located?,Superior pole of the left kidney.
train_16261_a_5.nii.gz,Which lung lobe contains a nodule?,Right upper lobe.
train_6500_a_1.nii.gz,Which kidney has the calculi?,Right kidney.
train_6488_c_2.nii.gz,Which lobes of the right lung exhibit atelectasis?,Middle and lower lobes.
train_6497_a_2.nii.gz,Where is the largest nodule located?,Anterior lower lobe.
train_16223_a_2.nii.gz,Which segment of the right lung contains the nodule?,Middle lobe.
train_6495_a_2.nii.gz,Where is the minimal effusion observed?,Left pleural space
train_6495_a_1.nii.gz,Where is the minimal effusion located?,Left pleural space.
train_6494_a_2.nii.gz,Which lung lobe is more prominently affected?,Left lower lobe.
train_16230_a_1.nii.gz,What is the location of the calcific nodule?,Left lung upper lobe.
train_6521_c_1.nii.gz,What is the location of the atelectasis?,Lower lobe.
train_16209_a_1.nii.gz,What is the position of the shrapnel fragment in the liver?,Left lobe lateral segment.
train_16209_a_2.nii.gz,What is the position of the shrapnel fragment in the liver?,Left lobe lateral segment.
train_6517_a_2.nii.gz,Which kidney has a stone?,Right kidney.
train_6517_a_1.nii.gz,Where is the kidney stone located?,Right kidney.
train_6516_b_2.nii.gz,Where is the pneumothorax located?,Right hemithorax
train_6465_a_2.nii.gz,Where is the stable nodule located?,Right lung lower lobe.
train_6465_a_1.nii.gz,Where is the stable nodule located?,Right lung lower lobe.
train_6461_a_1.nii.gz,What area shows consolidation in the lung?,Left lower lobe
train_6460_a_1.nii.gz,Where is the solitary nodule located?,Left lung upper lobe.
train_6455_d_2.nii.gz,Where is the calcified thickening located?,Right lung lower lobe
train_6455_d_1.nii.gz,Where is the calcified thickening located?,Right lung lower lobe
train_16261_a_2.nii.gz,Where is the nodule in the right lung?,Upper lobe
train_6487_a_1.nii.gz,Where is the largest nodule found?,Left lung lower lobe.
train_16236_a_1.nii.gz,What is the location of the nodule in the right lung?,Anterior segment.
train_6482_a_2.nii.gz,What is the location of the largest nodule?,Right lung middle lobe.
train_6480_a_1.nii.gz,Where is the largest pulmonary nodule located?,Right upper lobe
train_6476_a_1.nii.gz,What lobes show the observed abnormalities?,Upper and lower lobes.
train_6475_a_1.nii.gz,Which lobe contains the hypodense cystic lesion?,Left lobe
train_6473_a_2.nii.gz,Where is the calcified nodule located?,"Anterior segment, right lung upper lobe."
train_6473_a_1.nii.gz,Where is the calcified nodule located?,"Anterior segment, right lung upper lobe."
train_6472_a_2.nii.gz,Which lobe contains the infiltrative mass?,Right lobe
train_6472_a_1.nii.gz,Which lobe has an infiltrative mass?,Right lobe
train_16298_a_2.nii.gz,Which kidney shows a hypodense lesion?,Left kidney.
train_6218_a_2.nii.gz,Where is the largest nodule found?,Left lung lower lobe.
train_6278_a_2.nii.gz,What area has pleural effusion?,Right pleural space.
train_6273_a_2.nii.gz,Where is the stone located?,Right kidney upper pole
train_6265_a_2.nii.gz,Where is the nodule located?,Right thyroid lobe.
train_16363_a_1.nii.gz,Where is the largest nodule located?,Left lung lower lobe
train_16364_a_2.nii.gz,Which side has no pleural effusion?,Left side.
train_16352_a_1.nii.gz,Which lung lobe contains the millimetric nodule?,Left lower lobe
train_6290_a_1.nii.gz,What is observed in the left hemithorax?,Pleural effusion
train_16345_a_1.nii.gz,Where is the millimetric nodule located?,Left lower lobe.
train_16347_a_1.nii.gz,Where is the nodule located?,"Middle lobe, right lung"
train_6232_a_2.nii.gz,Where is the mass lesion located?,Right adrenal gland
train_16383_a_1.nii.gz,Which side shows a thicker pleural effusion?,Left side
train_6221_a_1.nii.gz,What is the location of the largest nodular lesion?,Right lung upper lobe.
train_16388_a_2.nii.gz,What is the condition of the lung parenchyma?,Normal aeration
train_16389_a_1.nii.gz,Where is the hypodense nodular lesion in the liver located?,"Left lobe, lateral segment."
train_6257_a_2.nii.gz,Which lung shows more prominent peribronchial thickening?,Right lung
train_16370_a_2.nii.gz,Where is the calcific pulmonary nodule located?,Right lung upper lobe
train_6253_a_1.nii.gz,Where are the subpleural nodules located?,Left lung lower lobe
train_6252_a_2.nii.gz,Where is the exophytic hypodense nodular lesion located?,Right kidney.
train_6249_a_2.nii.gz,Which lung lobes contain the nodules?,Upper lobes.
train_6240_a_1.nii.gz,Which lung has a consolidation area in the lower lobe?,Right lung
train_16311_a_2.nii.gz,Which lung lobe contains the nodule?,Left upper lobe
train_16315_a_2.nii.gz,Where is the nodule located in the lung?,Lower lobe.
train_6342_a_2.nii.gz,What is the location of the hypodense lesion?,"Upper pole, right kidney"
train_6342_a_1.nii.gz,Where is the cortical lesion located in the right kidney?,Upper pole.
train_6341_a_1.nii.gz,Where is the 4x3 mm nodule located?,Left lung upper lobe
train_6372_a_2.nii.gz,Which lobe contains the largest nodule in the right lung?,Lower lobe
train_6371_a_2.nii.gz,Where is the consolidated atelectasis located?,"Lower lobe, right lung"
train_6371_a_1.nii.gz,Which lobe contains the consolidated atelectasis?,Right lower lobe
train_16307_b_1.nii.gz,Where is the cortical cyst located?,Left kidney
train_16320_a_1.nii.gz,Where is the solid-appearing lesion located?,Left lung lower lobe.
train_16329_a_1.nii.gz,Where is the focal consolidation observed?,Right lung lower lobe
train_6324_a_1.nii.gz,Where is the pneumothorax located?,Left hemithorax
train_16330_a_2.nii.gz,Which lobe contains the nodule?,Lower lobe
train_16332_a_1.nii.gz,Which lung has a 6 mm diameter nodule?,Right lung middle lobe.
train_6307_a_2.nii.gz,Where are the nodules located?,Right lung middle lobe.
train_6325_a_1.nii.gz,Where is the cortical cyst located?,Right kidney.
train_16320_a_2.nii.gz,Where is the solid-appearing lesion located?,Medial left lung lower lobe.
train_16321_a_2.nii.gz,Which lung lobe contains the largest nodule?,Right lower lobe
train_6328_a_2.nii.gz,Which side has pleural effusion?,Left side
train_6328_a_1.nii.gz,Which side has pleural effusion?,Left side.
train_6327_b_2.nii.gz,Where is the semisolid nodule located?,Right lung middle lobe.
train_16556_a_2.nii.gz,Where is the 2 mm nodule located in the left lung?,Upper lobe anterior segment.
train_16796_a_2.nii.gz,Where is the nodule located?,Left lung lower lobe
train_5482_a_1.nii.gz,Which lung contains the pleural-based nodules?,Right lung
train_5480_a_1.nii.gz,Where are the 2 mm diameter nodules found?,Right lung upper lobe anterior segment.
train_16803_a_2.nii.gz,Where is the nodule located?,"Lower lobe, right lung"
train_5470_a_1.nii.gz,What is the status of the pericardial area?,No effusion detected
train_5469_b_2.nii.gz,Which lobe shows new consolidation areas?,Right lung upper lobe.
train_5469_a_1.nii.gz,Which lung has consolidation?,Left lower lobe
train_16785_a_2.nii.gz,Which kidneys show stones?,Both kidneys.
train_16789_b_2.nii.gz,Where are the most prominent abnormalities located?,Right lower lobe
train_16790_a_1.nii.gz,Which lung lobe contains the nodule?,Left lower lobe.
train_5493_a_2.nii.gz,Where is the pleural effusion located?,Right pleural space.
train_5467_a_1.nii.gz,Where are the nodules located in the right lung?,Lower lobe
train_5512_a_2.nii.gz,Where is the nonspecific nodule located?,Upper lobe of left lung.
train_5438_a_1.nii.gz,Where is the nodule located?,Right lung lower lobe.
train_5446_a_2.nii.gz,What is the position of the largest nodule?,Posterobasal left lower lobe
train_5446_a_1.nii.gz,Where is the largest nodule found?,Posterobasal left lower lobe
train_5444_a_2.nii.gz,Which structures are open?,Trachea and bronchi.
train_5442_b_1.nii.gz,Which lung shows subpleural nodules?,Right lung.
train_5430_a_2.nii.gz,What is the position of the calcified nodule?,Peripheral subpleural area.
train_5430_a_1.nii.gz,Which adrenal gland is more prominent?,Left adrenal gland.
train_5452_a_1.nii.gz,What is the location of the 4 mm diameter nodule?,Right lung upper lobe
train_16808_b_1.nii.gz,What is the location of the largest nodule?,"Middle lobe, right lung."
train_16808_b_2.nii.gz,What is the location of the largest nodule?,"Middle lobe, right lung."
train_16810_a_1.nii.gz,Which lobe shows the abnormality?,Middle lobe.
train_5457_a_2.nii.gz,Where is the hyperdense stone located?,Upper pole of left kidney.
train_16812_a_1.nii.gz,Where is the 3 mm nodule located?,Upper lobe anterior segment.
train_16782_a_1.nii.gz,Where is the largest nodule found?,Right lower lobe.
train_16740_a_1.nii.gz,Where is the bronchiectasis observed?,Right lung lower lobe.
train_5571_b_2.nii.gz,Which side shows more prominent pleural effusion?,Right side
train_5571_b_1.nii.gz,Which side has more prominent pleural effusion?,Right side
train_5568_b_1.nii.gz,Which side has pleural effusion?,Right side.
train_16755_b_2.nii.gz,What is the location of the largest nodule?,Right lower lobe
train_5564_a_2.nii.gz,Which side shows atelectasis?,Right hemithorax.
train_5564_a_1.nii.gz,Where is the effusion located?,Right hemithorax
train_16755_a_2.nii.gz,Where are the nodules located?,Right and left lung lower lobes.
train_5557_a_1.nii.gz,What is the position of the largest nodule?,Right lung upper lobe
train_16730_a_4.nii.gz,Where are the dependent density increases observed?,Lower lobes of both lungs.
train_5581_a_2.nii.gz,What is the location of the cystic density lesion?,Cortical in the left kidney.
train_16737_a_1.nii.gz,What is the position of the right hemidiaphragm?,Elevated.
train_16755_b_1.nii.gz,Where is the largest nodule located?,Right lung lower lobe
train_5523_a_1.nii.gz,Where are the nodules specifically noted?,Right middle lobe
train_5522_a_2.nii.gz,Where is the largest nodule located?,"Lower lobe, right lung"
train_16775_a_1.nii.gz,Where is the pleural effusion observed?,Right hemithorax
train_5517_a_1.nii.gz,What is the location of the largest nodule?,Right lung lower lobe.
train_16769_a_2.nii.gz,Where is the stone located?,Left kidney
train_5552_b_1.nii.gz,Where are the cortical cysts located?,Both kidneys
train_16762_a_1.nii.gz,Which lung has predominant lesions?,Right lung
train_5544_b_1.nii.gz,Which lobes show atelectasis?,Both lower lobes.
train_16768_b_2.nii.gz,Where is the more prominent atelectasis observed?,Right lung lower lobe.
train_5536_a_2.nii.gz,Which adrenal gland shows nodular thickening?,Right adrenal gland
train_5536_a_1.nii.gz,What is the location of the bulla formation?,Right lung upper lobe
train_16882_b_2.nii.gz,Which kidney has hyperdense stones?,Left kidney
train_16877_a_2.nii.gz,Where is the largest parenchymal nodule located?,Left lung lower lobe.
train_5356_c_1.nii.gz,Which lung contains the largest nodule?,Lower lobe of the right lung.
train_5355_a_1.nii.gz,Where is the large bulla located?,Left upper lobe
train_5354_a_1.nii.gz,Which segment shows consolidation in the lung?,Right lower lobe.
train_5351_a_1.nii.gz,What is the location of the kidney stone?,"Middle zone, left kidney."
train_16899_a_2.nii.gz,Which lung has more prominent patchy consolidations?,Left lung
train_5298_a_2.nii.gz,Where is the nodule located in the right lung?,Apex of upper lobe.
train_5296_b_1.nii.gz,What is the location of the largest nodule?,Left lung lower lobe.
train_5296_a_2.nii.gz,What segment contains the nodules?,Left lower lobe
train_5296_a_1.nii.gz,What segment contains the observed nodules?,Left lung lower lobe.
train_16898_a_1.nii.gz,Where are the patchy densities located?,Right lower lobe.
train_5322_a_1.nii.gz,Which lung shows ground-glass densities?,Left lung.
train_5321_a_1.nii.gz,What is the status of pleural effusion?,Not detected
train_5314_a_1.nii.gz,What is the location of the largest air cyst?,"Lower lobe, left lung"
train_16896_a_1.nii.gz,Which side has minimal pleural effusion?,Right side.
train_16897_a_2.nii.gz,Where is the ground-glass density located?,"Lower lobe, right lung"
train_5306_a_1.nii.gz,Which area shows free pleural effusion?,Left pleural space
train_16869_b_1.nii.gz,Which lung has a pleural effusion reaching approximately 70 mm?,Left lung.
train_5360_a_2.nii.gz,Which part of the right kidney is partially cut in the image?,Lower pole.
train_16839_a_1.nii.gz,Which segment of the lung contains the nodule?,Right upper lobe.
train_16842_a_1.nii.gz,Which lung shows more prominent emphysematous changes?,Right lung
train_5419_a_1.nii.gz,Where is the cortical cyst located?,Left kidney
train_5428_g_2.nii.gz,Where is the nodule located in the left lung?,Lateral subpleural area.
train_5428_d_2.nii.gz,Where is the stable parenchymal nodule located?,Left lung upper lobe
train_5428_d_1.nii.gz,Which segment contains the nodule?,Left upper lobe
train_5428_c_2.nii.gz,Where is the subpleural nodule located?,Left lung upper lobe
train_16830_a_2.nii.gz,Where is the stone in the right kidney?,Lower pole
train_16847_a_1.nii.gz,Which lobe contains the nodular lesion?,Right middle lobe
train_16847_a_2.nii.gz,What is the location of the nodular lesion?,Right lung middle lobe.
train_5368_a_2.nii.gz,Which lobes show the abnormal densities?,Both lower lobes
train_5367_a_2.nii.gz,What lobe of the right lung is affected?,Lower lobe.
train_5367_a_1.nii.gz,Where is the patchy ground glass density located?,Right lower lobe.
train_5377_a_2.nii.gz,Where is the 7 mm nodule located?,"Upper lobe, right lung"
train_5398_a_5.nii.gz,Where is the subpleural nodule located?,Right lung middle lobe.
train_5394_a_2.nii.gz,Where are the consolidative densities located in the right lung?,Lower lobe
train_16856_a_1.nii.gz,Which lung has pleural effusion?,Right lung.
train_16730_a_3.nii.gz,Which kidney has a cortical cyst?,Right kidney.
train_16730_a_2.nii.gz,Where is the thin-walled cortical cyst located?,Right kidney.
train_16622_b_1.nii.gz,What is the location of the observed nodular density?,Right lung
train_5813_a_2.nii.gz,Where is the nonspecific nodule located?,Right lung upper lobe.
train_5799_a_2.nii.gz,Which lung lobe contains the calcific focus?,Right lower lobe.
train_5806_a_2.nii.gz,Which lung has a subpleural nodule?,Right lung
train_5820_a_1.nii.gz,Where is the pleural effusion observed?,Left hemithorax.
train_5836_a_1.nii.gz,Where is the free pleural effusion located?,Left pleural space.
train_16611_a_2.nii.gz,What is the position of the patchy ground glass densities?,Bilateral posterior segments
train_5834_a_1.nii.gz,What is the position of the atelectasis in the left lung?,Upper lobe
train_5832_a_1.nii.gz,Where is the nonspecific parenchymal nodule located?,Left lung lower lobe.
train_5828_a_2.nii.gz,What is the condition of the lung parenchyma?,Normal aeration
train_16617_a_1.nii.gz,Where are the atelectatic changes observed?,Left lung upper lobe.
train_5822_b_1.nii.gz,Which lung has a near-total collapsed appearance?,Right lung
train_16617_a_2.nii.gz,What is the location of the minimal pleural effusion?,Left hemithorax.
train_5822_a_2.nii.gz,Where is the free effusion observed?,Right pleural space
train_5822_a_1.nii.gz,Where is the free effusion located?,Right pleural space
train_5763_a_2.nii.gz,Which lobe contains the air cyst?,Lower lobe.
train_5768_a_2.nii.gz,Where is the atelectasis located in the right lung?,Middle lobe
train_5761_b_2.nii.gz,What is the location of the parenchymal nodule?,Posterobasal segment of the left lung.
train_5759_a_1.nii.gz,Where is the nodule-nodular consolidation located?,Left lung upper lobe.
train_16639_a_2.nii.gz,What is the condition of the pleura?,No effusion detected
train_16633_a_1.nii.gz,Where is the largest pulmonary nodule located?,Right lung upper lobe.
train_5791_a_1.nii.gz,Which lung is affected?,Right lung.
train_5790_a_2.nii.gz,Which adrenal gland shows nodular thickening?,Right adrenal gland
train_16633_a_2.nii.gz,Where is the largest nodule found?,Right lung upper lobe
train_5786_b_2.nii.gz,Which side shows more pleural effusion?,Right side.
train_5784_a_2.nii.gz,Where are the semisolid nodules located?,Right lung upper lobe.
train_16637_a_1.nii.gz,Where is the calcified nodule located?,Left lung upper lobe.
train_16600_a_2.nii.gz,What is the position of the focal consolidation area?,Right lung middle lobe.
train_16730_a_1.nii.gz,Where is the thin-walled cortical cyst located?,Right kidney.
train_5897_a_1.nii.gz,Where are the nodules located?,Posterior lower lobe
train_5895_a_1.nii.gz,Where are the fibrotic changes more prominent?,Upper lobes
train_5893_a_1.nii.gz,Where is the largest nodule specifically located?,Right lung upper lobe
train_16574_b_2.nii.gz,Which lung lobe shows the density increase?,Left lower lobe.
train_5915_c_1.nii.gz,Which side has moderate effusion?,Right side
train_5915_b_2.nii.gz,Which kidney shows hydronephrosis?,Left kidney
train_5915_b_1.nii.gz,Where is the pleural effusion located?,Right hemithorax
train_5915_a_1.nii.gz,Which pleural space has a larger effusion?,Left pleural space
train_16566_b_1.nii.gz,What is the location of the largest nodule?,Right lung middle lobe
train_5907_a_2.nii.gz,Where is the second nodule found?,Left lung upper lobe.
train_5853_a_1.nii.gz,Where are the consolidations more prominent?,Lower lobes
train_5857_a_1.nii.gz,Which lobe is the lesion associated with?,Middle lobe.
train_5855_a_1.nii.gz,Which lung shows atelectatic changes?,Left lung
train_16593_a_1.nii.gz,What is the location of the largest parenchymal nodule?,Apical right lung
train_16599_a_1.nii.gz,Which lung has the largest parenchymal nodule?,Right upper lobe
train_16599_a_2.nii.gz,What is the location of the largest parenchymal nodule?,Right upper lobe.
train_5846_a_2.nii.gz,What segment of the lung contains the nodule?,Lower lobe laterobasal
train_5865_b_2.nii.gz,Where is the newly developed effusion located?,Right pleural space
train_5876_a_1.nii.gz,What is the position of the nodule?,Lower lobe.
train_5867_a_2.nii.gz,Where is the atelectasis observed?,Right lung middle lobe.
train_16587_b_2.nii.gz,Which lobe shows consolidation?,Middle lobe.
train_5644_a_2.nii.gz,Which lung contains a 3 mm diameter nodule?,Right lung.
train_5639_a_2.nii.gz,Which lobe shows atelectatic changes?,"Lower lobe, right lung."
train_5634_d_2.nii.gz,What is the location of the newly emerged nodules?,Right lung upper lobe anterior
train_16707_b_1.nii.gz,Which lung has a subpleural nodule?,Left lung
train_5632_b_1.nii.gz,Which side shows the deeper pleural effusion?,Right side.
train_5648_a_2.nii.gz,What is the position of the angiomyolipoma?,Right kidney superior pole.
train_5674_a_1.nii.gz,What is the location of the pulmonary nodule?,Upper lobe
train_5672_a_1.nii.gz,Which hemithorax has pleural effusion?,Right hemithorax
train_5663_a_1.nii.gz,Which diaphragm is elevated?,Right hemidiaphragm
train_5660_a_1.nii.gz,What is the position of the nodule?,Right upper lobe
train_5650_a_2.nii.gz,Which lung lobe is affected?,Left upper lobe
train_5610_a_3.nii.gz,What is the location of the largest lymph node?,Right hilar region
train_5610_a_2.nii.gz,What is the location of the largest lymph node?,Right hilar region
train_16721_c_2.nii.gz,Which lung lobes show focal consolidations?,"Right middle lobe, right lower lobe"
train_5605_a_2.nii.gz,Which lung lobe contains the 4 mm nodule?,Left lower lobe
train_16724_a_1.nii.gz,Where is the pleural effusion located?,Left pleural space.
train_5596_d_1.nii.gz,Which lung contains the largest nodule?,Right upper lobe.
train_5611_a_1.nii.gz,Which lung shows atelectasis?,Left lung
train_5611_a_2.nii.gz,Where is the effusion observed?,Left hemithorax.
train_5630_a_1.nii.gz,Which lung has more prominent pleural effusion?,Right lung.
train_5626_a_2.nii.gz,Which lobe contains the calcific pulmonary nodule?,Right middle lobe
train_5626_a_1.nii.gz,Which lung lobe contains the calcific nodule?,Right middle lobe.
train_5619_b_2.nii.gz,Where is the pleural effusion more prominent?,Left pleural space.
train_16721_a_1.nii.gz,What is observed in the right hemithorax?,Pleural effusion.
train_5619_a_2.nii.gz,Which pleural space has a drainage catheter?,Right pleural space
train_16721_a_3.nii.gz,What is observed in the right hemithorax?,Pleural effusion.
train_16721_a_4.nii.gz,Where is the pleural effusion located?,Right hemithorax.
train_16721_a_5.nii.gz,What is observed in the right hemithorax?,Pleural effusion.
train_16721_b_1.nii.gz,What is observed in the right hemithorax?,Pleural effusion.
train_5612_a_2.nii.gz,What is the location of the observed effusion?,Right pleural area
train_16663_b_1.nii.gz,Where is the atelectasis observed?,Right lung lower lobe
train_5729_a_2.nii.gz,Which organ contains the lesion?,Liver.
train_16662_a_1.nii.gz,What is the condition of the pleura?,No effusion detected.
train_5722_a_1.nii.gz,Which lung shows pleural effusion?,Right lung.
train_16663_b_2.nii.gz,Where is the atelectasis located?,Right lung lower lobe
train_5718_a_2.nii.gz,What is the condition of the right hemidiaphragm?,Elevated position.
train_5718_a_1.nii.gz,What is the position of the right hemidiaphragm?,Elevated.
train_16644_a_2.nii.gz,Where is the largest consolidation located?,Left lower lobe.
train_5750_a_1.nii.gz,Where is the irregular soft tissue density located?,Right upper lobe.
train_5742_a_1.nii.gz,Which hemithorax has pleural effusion?,Left hemithorax.
train_5691_a_1.nii.gz,Where is the peripheral subpleural pulmonary nodule located?,Right lower lobe.
train_16665_a_2.nii.gz,Where is the 4x2 mm nodule located?,"Lower lobe, right lung."
train_16672_c_1.nii.gz,Where are the cortical cysts observed?,Both kidneys
train_16672_d_2.nii.gz,Which lung lobe shows prominent ground glass areas?,"Lower lobe, right lung"
train_5692_a_2.nii.gz,Where is the subpleural nodule located?,Anterior right lung upper lobe.
train_5692_a_1.nii.gz,What area shows atelectatic changes?,Right middle lobe
train_6522_a_2.nii.gz,What is the location of the calculus in the right kidney?,Upper pole calyx.
train_7307_a_1.nii.gz,What atelectasis is present?,Right middle lobe.
train_7304_a_2.nii.gz,Which lung shows the most prominent consolidation?,Left upper lobe
train_7294_a_2.nii.gz,Where is the calcific nodule found?,Left lung upper lobe
train_7324_a_2.nii.gz,Where is the hypodense lesion located?,"Right kidney, upper pole"
train_15718_a_1.nii.gz,Where is the 4 mm nodule located?,Right upper lobe.
train_7315_b_2.nii.gz,Which lungs exhibit widespread ground glass densities?,Both lungs
train_15736_a_2.nii.gz,Where is the prominent pleural effusion observed?,Right side.
train_7269_a_2.nii.gz,Which side shows deeper pleural effusion?,Right side.
train_15754_a_1.nii.gz,Which lobe contains the largest nodule?,Right lung lower lobe
train_15739_a_1.nii.gz,Which lung lobe shows consolidations?,Middle lobe of right lung.
train_7259_c_1.nii.gz,What is the location of the observed effusion?,Left pleural space
train_15747_a_1.nii.gz,Where is the lesion located in the left kidney?,Lower pole
train_7279_a_2.nii.gz,Where is the subsolid nodule located?,Left lung upper lobe.
train_7273_a_1.nii.gz,Where is the subcentimetric effusion observed?,Right pleural space.
train_15750_a_2.nii.gz,Which lung has the largest nodule?,Left lung upper lobe
train_15751_a_1.nii.gz,Which lung lobe contains the nodules?,Right middle lobe
train_15672_a_1.nii.gz,Which diaphragm is elevated?,Left hemidiaphragm.
train_7390_a_1.nii.gz,Which lung lobe shows atelectatic changes?,Left lower lobe
train_15674_a_1.nii.gz,Which lung is affected?,Left lung
train_15678_b_2.nii.gz,What is the location of the largest lymph node?,Right hilar region
train_7378_a_2.nii.gz,Where are the nodules located?,Anterior left upper lobe.
train_7378_a_1.nii.gz,Where are the nodules located?,Anterior left upper lobe.
train_7406_a_2.nii.gz,Where are the large nodules located?,"Right lung, lower lobe."
train_15659_a_2.nii.gz,Which lung lobe contains the nodule?,Lower lobe
train_7402_a_1.nii.gz,Which side has minimal pleural effusion?,Right side.
train_15662_a_1.nii.gz,Which adrenal gland has a nodular lesion?,Left adrenal gland
train_7399_a_2.nii.gz,Which side of the thyroid contains the nodules?,Left side.
train_15668_a_1.nii.gz,Which lobes of the right lung show the nodular ground glass densities?,Upper and lower lobes.
train_7351_a_2.nii.gz,What is the location of the consolidation areas?,Lower lobes
train_15689_a_1.nii.gz,Which lung lobe contains a 4 mm nodule?,Left upper lobe
train_15696_a_1.nii.gz,Where is the effusion located?,Right hemithorax
train_7343_a_2.nii.gz,What is the position of the lesions in relation to the lung?,"Peripheral, subpleural."
train_15699_a_1.nii.gz,Which lung is mostly affected?,Left lung.
train_7340_c_2.nii.gz,Where are the renal cysts located?,Both kidneys
train_15702_a_1.nii.gz,Which lung contains a 4 mm diameter nodule?,Left lung.
train_15688_a_1.nii.gz,Where is the pleural effusion observed?,Right pleural space.
train_7362_a_1.nii.gz,Where is the massive pleural effusion located?,Right hemithorax.
train_7361_a_2.nii.gz,Which lung has a 2 mm diameter subpleural nodule?,Left lung.
train_7361_a_1.nii.gz,Where is the 2 mm diameter subpleural nodule located?,Left upper lobe
train_15688_b_1.nii.gz,Where is the volume loss observed?,Lower lobe of left lung.
train_15688_b_2.nii.gz,Which lung shows volume loss?,Left lung
train_7355_a_1.nii.gz,Which lobe shows consolidations?,Right middle lobe
train_7252_a_1.nii.gz,Where is the 3x2 mm nodule located?,Left lung laterobasal segment
train_15827_a_1.nii.gz,Which adrenal gland shows nodular thickening?,Left adrenal gland
train_15839_a_2.nii.gz,Where is the minimal pleural effusion observed?,Right side.
train_7132_b_1.nii.gz,Where is the free effusion located?,Right pleural region.
train_7130_a_1.nii.gz,What is the location of the nodule in the right lung?,Middle lobe
train_15858_a_2.nii.gz,Where are the ground-glass densities located?,"Right, left lower lobes."
train_15858_b_1.nii.gz,What is the position of the nodules in the left lung?,Upper lobe
train_7119_a_2.nii.gz,Which hemithorax shows pleural effusion?,Neither hemithorax.
train_7133_a_2.nii.gz,What is the location of the calculi?,Lower pole of right kidney.
train_7145_a_1.nii.gz,What segments of the left lung lower lobe show consolidation?,Superior and anterobasal segments.
train_7137_a_2.nii.gz,Which lobe contains the ground glass nodule?,Left lower lobe
train_15774_a_1.nii.gz,Where are the gallbladder calculi located?,Gallbladder lumen
train_15774_a_2.nii.gz,Where are the gallbladder calculi located?,Gallbladder lumen.
train_7247_a_1.nii.gz,What is the position of the nonspecific nodule?,Posterior segment of right lung.
train_15767_a_2.nii.gz,Where is the largest nodule found?,Left lower lobe.
train_7250_c_1.nii.gz,Which segment of the right lung contains the nodule?,Mediobasal segment.
train_7250_b_1.nii.gz,What is the position of the nodule in relation to the pleura?,Peripheral-subpleural area.
train_7249_a_1.nii.gz,Which side shows loculated effusion?,Right hemithorax.
train_7208_a_1.nii.gz,Which side has thicker pleural effusion?,Right side.
train_7205_a_1.nii.gz,Which lobe contains the observed density?,Left upper lobe
train_7229_a_2.nii.gz,Which lung has the largest millimetric nodule?,Right upper lobe.
train_15810_a_1.nii.gz,What is the position of the solid and ground glass nodule?,Upper lobe of right lung
train_15810_b_1.nii.gz,What is the position of the consolidation areas?,Lung lower lobes
train_7208_c_1.nii.gz,Which side shows more prominent pleural effusion?,Left side.
train_7229_a_1.nii.gz,What is the location of the largest millimetric nodule?,Right upper lobe.
train_7219_a_2.nii.gz,What is the location of the calculus?,Lower pole of the left kidney.
train_15792_a_2.nii.gz,Where is the aneurysmatic dilatation located?,Thoracic aorta.
train_7592_a_2.nii.gz,Where are the calculi observed?,Both kidneys
train_7591_a_2.nii.gz,Which lung lobe contains the conglomerated nodule?,Right middle lobe
train_7584_c_1.nii.gz,Which lung contains the largest nodule?,Right lung middle lobe
train_7605_a_2.nii.gz,Which side has a deeper pleural effusion?,Right side
train_7605_a_1.nii.gz,Which side has a deeper pleural effusion?,Right hemithorax.
train_15554_a_2.nii.gz,Which lung has atelectasis in the lower lobe?,Left lung
train_7596_a_1.nii.gz,Where is the consolidation located?,Peripheral lower lobe
train_7566_a_1.nii.gz,Where are the ground glass areas more prominent?,"Lower lobes, peripheral"
train_7569_d_2.nii.gz,Which lobe shows consolidations?,"Upper lobe, left lung."
train_7409_a_2.nii.gz,Which side shows minimal pleural effusion?,Left side
train_7649_d_2.nii.gz,Which side is the lesion on the 5th rib located?,Left side
train_7649_c_1.nii.gz,Where is the hypodense cortical cyst located?,Superior pole of right kidney.
train_15524_a_1.nii.gz,Where is the nodule situated in the lung?,Posterior lower lobe
train_7647_b_2.nii.gz,Which hemithorax shows more prominent atelectasis?,Left hemithorax.
train_15508_a_2.nii.gz,Which side has a central venous catheter ending in the left brachiocephalic vein?,Left side
train_7662_a_1.nii.gz,Which lobe contains the nodule?,Middle lobe.
train_7641_a_2.nii.gz,Which region shows lymphadenopathy?,Right hilar region.
train_7641_a_1.nii.gz,Which region shows lymphadenopathy?,Right hilar region.
train_15540_b_2.nii.gz,Where is the right hemidiaphragm positioned?,Elevated position.
train_7622_a_1.nii.gz,Where is the calcific nodule located in the left lung?,Lower lobe
train_15540_c_1.nii.gz,Which diaphragm is elevated?,Right hemidiaphragm.
train_15540_c_2.nii.gz,Which diaphragm is elevated?,Right hemidiaphragm.
train_7617_a_2.nii.gz,Where is the cavitary lesion located?,"Lower lobe, right lung."
train_15552_a_2.nii.gz,Where is the mild pleural effusion located?,Right pleural space
train_7640_a_1.nii.gz,Where is the nodule in the left lung located?,Upper lobe apicoposterior segment.
train_7637_e_1.nii.gz,Which lung lobe contains the observed nodules?,Right middle lobe.
train_7634_a_1.nii.gz,What is observed in the right pleural space?,Free pleural effusion.
train_15534_a_2.nii.gz,Which lung is affected?,Left lung.
train_7629_a_1.nii.gz,What is the location of the subpleural nodules?,Superior segment of right lung lower lobe.
train_7627_b_2.nii.gz,What is the position of the nodule in relation to the pleura?,Subpleural location.
train_15577_a_1.nii.gz,What is the location of the observed calculus?,Lower pole of left kidney.
train_7457_a_1.nii.gz,What is the location of the lesions?,"Peripheral, lower lobe."
train_15638_a_2.nii.gz,What is observed in both pleural spaces?,Bilateral pleural effusion.
train_7448_a_2.nii.gz,What is observed in the right pleural area?,Pleural effusion.
train_7448_a_1.nii.gz,Where is the effusion observed?,Right pleural area.
train_15634_a_2.nii.gz,Where are the hyperdense stones located?,Upper pole of left kidney
train_7481_a_1.nii.gz,What is the position of the nodules in the right lung?,Middle lobe
train_15625_a_2.nii.gz,What is the position of the consolidation in the right lung?,Upper lobe
train_15628_a_2.nii.gz,Which adrenal gland shows thickening?,Left adrenal gland
train_7470_a_2.nii.gz,Where are the patchy ground-glass densities located?,"Upper lobe, left lung."
train_15652_a_1.nii.gz,What is the location of the subpleural nodule?,Right lung middle lobe
train_7417_b_1.nii.gz,Which lobe of the right lung is atelectatic?,Middle lobe.
train_7415_a_1.nii.gz,Where is the pleural effusion located?,Right hemithorax
train_7414_a_1.nii.gz,Where is the larger nodule?,"Middle lobe, right"
train_7437_a_1.nii.gz,Which lung lobe contains the nodule?,Right middle lobe.
train_15618_a_2.nii.gz,What is the location of the millimetric cortical cyst?,Upper pole of left kidney.
train_7528_a_2.nii.gz,Where is the right hemidiaphragm positioned?,Elevated
train_15591_a_1.nii.gz,Where is the subpleural nodular lesion located?,Right lung middle lobe
train_7523_a_1.nii.gz,Which lung contains the larger nodule?,Lower lobe of left lung.
train_15597_a_2.nii.gz,What is the largest nodule's location?,Right lung apical segment.
train_15618_a_1.nii.gz,What is the location of the cortical cyst?,Upper pole of left kidney.
train_7485_a_1.nii.gz,What is the location of the thin-walled bulla formation?,Anterior segment of left lung.
train_7506_a_1.nii.gz,Which lymph nodes are enlarged?,"Subcarinal, right hilar"
train_15605_a_2.nii.gz,Which lobes show pleural effusion?,Both lower lobes
train_16080_c_1.nii.gz,Which adrenal gland has a larger lesion?,Left adrenal gland
train_16081_c_2.nii.gz,What is the location of the hepatosteatosis?,Liver.
train_6744_a_1.nii.gz,Where are the nodules located in the right lung?,Anterior upper lobe
train_6741_a_1.nii.gz,Where is the prominent emphysematous change located?,Right upper lobe
train_6768_a_1.nii.gz,Where are the consolidations primarily located?,Lower lobe
train_6757_a_2.nii.gz,Which lobes show consolidation?,Lower lobes
train_16112_a_2.nii.gz,Which lung lobe contains the nodule?,Lower lobe
train_6700_a_2.nii.gz,What is the location of the observed changes?,"Middle lobe, inferior lingular segment"
train_6696_a_1.nii.gz,Which lobes contain the observed nodules?,Lower lobes
train_16116_a_2.nii.gz,Which lung lobe is affected?,Left lung lobe.
train_6685_a_1.nii.gz,Where is the suspicious ground-glass density located?,Anterior lower lobe
train_6713_a_1.nii.gz,What is the location of the largest lesion?,Anterior segment of right lung.
train_6824_a_2.nii.gz,Which side has significant pleural effusion?,Right side
train_6813_a_2.nii.gz,What is the location of the observed consolidation?,"Peripheral, subpleural"
train_6812_a_2.nii.gz,Where is the effusion observed at its deepest point?,Right pleural space.
train_6805_c_1.nii.gz,Where is the free pleural effusion located?,Right pleural space.
train_16024_a_2.nii.gz,Which lung lobe contains the nodules?,Right upper lobe
train_16026_a_2.nii.gz,Which side has a pleural effusion reaching 6 mm?,Left pleural space.
train_16027_a_2.nii.gz,Which hemithorax has effusion?,Right hemithorax
train_16053_a_1.nii.gz,Which hemithorax contains a catheter?,Right anterior hemithorax
train_6780_a_2.nii.gz,Which side has the thicker pleural effusion?,Right side
train_6775_d_2.nii.gz,Which adrenal gland has a mass lesion?,Right adrenal gland
train_6786_a_1.nii.gz,Where is the pleural effusion observed?,Left side
train_6800_a_2.nii.gz,Where is the nonspecific nodule located in the left lung?,Lower lobe laterobasal segment.
train_6799_b_1.nii.gz,What is observed in the right hemithorax?,Pleural effusion
train_6794_a_2.nii.gz,Which adrenal gland shows a well-defined hypodense appearance?,Right adrenal gland
train_6792_a_1.nii.gz,Which lung shows atelectasis?,Right middle lobe.
train_6679_a_1.nii.gz,Where is the calcified nodule located?,"Upper lobe, right lung"
train_16173_a_1.nii.gz,What is the location of the largest subpleural nodule?,Right lung middle lobe
train_16174_a_1.nii.gz,Where is the mass located in the adrenal gland?,Left adrenal gland.
train_6571_a_1.nii.gz,What is the position of the pneumothorax?,Left hemithorax
train_6577_a_2.nii.gz,What is the position of the nodule?,Superior lower lobe
train_6577_a_1.nii.gz,Where is the nodule specifically noted?,Superior lower lobe.
train_6602_a_2.nii.gz,Which lung segment shows consolidation?,Left lingular segment
train_16164_b_2.nii.gz,What is the location of the calcific nodule?,"Upper lobe, right lung."
train_6593_a_2.nii.gz,What is the position of the parenchymal nodule in the left lung?,Posterobasal segment
train_16198_c_1.nii.gz,What is the position of the largest nodule?,Apex of left lung
train_6522_c_2.nii.gz,Where is the calcific stable nodule located?,"Lower lobe, left lung."
train_6544_a_2.nii.gz,Where are the nonspecific nodules located in the left lung?,Left upper lobe.
train_16177_a_2.nii.gz,What is the location of the nodule?,"Lower lobe, right lung."
train_16180_a_2.nii.gz,What is the condition of the pleura?,No effusion detected
train_16140_a_1.nii.gz,Which lobe contains the nodule?,Middle lobe.
train_6647_a_1.nii.gz,Where is the cyst located?,Left kidney upper pole.
train_16123_a_2.nii.gz,What is the position of the nodule?,Left lung inferior lingular segment.
train_6673_c_2.nii.gz,Where is the nodule located in the left lung?,Lower lobe laterobasal segment.
train_16135_a_1.nii.gz,Which lung segment contains the nodule?,Superior left lower lobe.
train_6646_a_2.nii.gz,What is the location of the pulmonary nodule?,Anterior segment of right lung.
train_6638_a_1.nii.gz,What is the location of the emphysematous changes?,Upper lobes.
train_16148_c_1.nii.gz,Where is the nodular lesion located?,"Lower lobe, right lung"
train_6632_a_1.nii.gz,Where is the free pleural effusion observed?,Left pleural space.
train_16148_d_2.nii.gz,What is the location of the nodular lesion?,Lower lobe right lung.
train_6849_a_1.nii.gz,Which lung lobe is affected?,Right middle lobe
train_7039_a_2.nii.gz,What is the position of the stable nodule?,"Right lung, upper lobe."
train_7036_a_1.nii.gz,What lobes are primarily involved?,Lower lobes
train_7054_c_1.nii.gz,Where is the minimal pleural effusion observed?,Left side.
train_7054_a_2.nii.gz,What is the location of the pleural effusion?,Left pleural space
train_15907_a_1.nii.gz,Which adrenal gland has a hypodense lesion?,Right adrenal gland
train_15907_a_2.nii.gz,What is the position of the hypodense lesion in the adrenal gland?,Right adrenal gland.
train_7061_b_1.nii.gz,What is the position of the nodules?,Lower lobe.
train_7012_a_1.nii.gz,What is observed in the right hemithorax?,Pleural effusion
train_7010_b_2.nii.gz,Where is the hypodense lesion located?,"Right lobe, anterior segment"
train_7009_a_2.nii.gz,What is the position of the nodule in the right lung?,Lateral lower lobe.
train_15940_a_1.nii.gz,What is the location of the stone?,Right renal pelvis.
train_15943_a_1.nii.gz,What is the position of the stones?,Lower pole of left kidney
train_7004_a_1.nii.gz,Which lobe contains the nodule?,Upper lobe
train_7031_a_2.nii.gz,What is the location of the hypodense lesion?,"Right lobe, posterior segment"
train_7027_a_1.nii.gz,Which adrenal gland shows nodular thickening?,Left adrenal gland
train_15875_a_1.nii.gz,What is observed in the left hemithorax?,Pleural effusion.
train_15876_a_1.nii.gz,Which lobe contains the largest nodule in the lungs?,Right middle lobe.
train_15876_a_2.nii.gz,Which lung lobe contains the largest nodule?,Right middle lobe.
train_15872_b_1.nii.gz,What is observed in the right hemithorax?,Pleural effusion
train_15890_b_1.nii.gz,Which side shows decreased pleural effusion?,Left side.
train_7084_a_1.nii.gz,What segment shows atelectasis?,Right middle lobe.
train_7066_a_2.nii.gz,Where is the most obvious ground-glass density?,"Upper lobe, left lung."
train_15883_c_2.nii.gz,What is the position of the largest nodule?,"Lower lobe, left lung"
train_7081_a_2.nii.gz,What is the location of the nodule?,"Middle lobe, right lung."
train_7080_a_2.nii.gz,Where is the parenchymal nodule located?,Middle lobe of right lung.
train_7080_a_1.nii.gz,Where is the parenchymal nodule located?,"Middle lobe, right lung."
train_7077_a_1.nii.gz,What is the location of the observed nodule?,Right lung laterobasal segment.
train_6907_a_1.nii.gz,What is the position of the ground-glass densities?,Bilateral lower lobes.
train_6905_a_2.nii.gz,What is the location of the nodule in the right lung?,Upper lobe.
train_6905_a_1.nii.gz,Where is the nodule located in the right lung?,Upper lobe.
train_15989_a_2.nii.gz,Which adrenal gland has a nodular lesion?,Left adrenal gland.
train_6902_b_1.nii.gz,Where is the more prominent pleural effusion located?,Left side.
train_15991_b_2.nii.gz,Which lobe has consolidations?,Middle lobe of the right lung.
train_6899_a_2.nii.gz,What is the location of the nonspecific nodule?,Upper lobe posterior.
train_15982_a_2.nii.gz,What is the condition of the pleura?,No effusion detected
train_15984_a_1.nii.gz,Where are the atelectatic changes observed?,Lower lobe of right lung.
train_16015_a_1.nii.gz,Where is the stone located?,Right kidney upper pole
train_16015_a_2.nii.gz,Where is the stone located?,Right kidney upper pole
train_15996_b_1.nii.gz,Where is the mass lesion located?,Right hilus.
train_15998_a_1.nii.gz,Where is the calculi located?,Left kidney lower pole.
train_6870_a_2.nii.gz,Where are the focal abnormalities located?,Lower lobes
train_6982_a_2.nii.gz,Where is the nodular lesion located in the adrenal gland?,Right adrenal gland.
train_6982_a_1.nii.gz,Which adrenal gland has a lesion?,Right adrenal gland
train_15960_c_1.nii.gz,Which hemithorax has pleural effusion?,Right hemithorax.
train_15950_a_1.nii.gz,Where is the largest nodule located in the lungs?,Posterior segment of the right lung lower lobe.
train_6991_a_1.nii.gz,What is the location of the observed nodules?,Lower lobe.
train_6989_a_1.nii.gz,Where is the cystic density located?,Right kidney upper pole.
train_6940_b_1.nii.gz,What is the position of the nodule in the lung?,Middle lobe.
train_6937_a_2.nii.gz,Where are the ground-glass opacities located?,Bilateral lungs.
train_6934_c_2.nii.gz,Which lung lobe contains the stable nodule?,Superior right lung
train_15964_a_2.nii.gz,Where are the pulmonary nodules located in the right lung?,Upper lobe posterior segment
train_6964_a_2.nii.gz,Which segment contains the nodule?,"Lateral segment, right lung middle lobe."
train_17813_a_2.nii.gz,Which segment of the right lung contains the nodule?,Anterior segment.
train_3737_a_2.nii.gz,What is the location of the mass-like nodule?,"Superior segment, right lower lobe"
train_17808_a_1.nii.gz,Which area shows dependent atelectatic changes?,Lower lobes.
train_3757_a_1.nii.gz,Which axilla contains the largest lymphadenopathy?,Left axilla.
train_17804_a_2.nii.gz,Which lobe contains the observed calcification?,Right lobe
train_3750_a_1.nii.gz,Where is the mass lesion located?,Right hilum.
train_3748_b_2.nii.gz,Which adrenal gland shows nodular thickening?,Left adrenal gland.
train_3748_b_1.nii.gz,Which adrenal gland shows nodular thickening?,Left adrenal gland.
train_3721_a_2.nii.gz,What type of effusion is present on the right?,Pleural effusion
train_17819_a_1.nii.gz,Where is the consolidation in the right lung?,Middle lobe.
train_3722_a_2.nii.gz,Where is the ground-glass nodule located?,Lower lobe of right lung.
train_17824_a_1.nii.gz,Which lung lobe shows the ground-glass densities?,Upper lobe of the left lung.
train_3727_a_2.nii.gz,What is the largest nodule's location?,"Upper lobe, right lung."
train_17784_a_1.nii.gz,What is the position of the consolidation areas?,Lower lobes.
train_3794_a_2.nii.gz,What is the position of the cavitary lesion?,Lower lobe.
train_3794_a_1.nii.gz,What is the position of the cavitary lesion?,Lower lobe.
train_3813_b_2.nii.gz,What area shows consolidations in the left lung?,Lower lobe.
train_3811_a_2.nii.gz,Where is the 3 mm nodule located?,Anterior segment of right lung upper lobe.
train_17791_a_1.nii.gz,What is the position of the large nodules?,"Middle lobe, right lung"
train_3770_a_2.nii.gz,Where are the lung abnormalities primarily located?,Lower lobes.
train_3782_a_1.nii.gz,What is the condition of the pleural space?,No effusion detected.
train_17885_b_1.nii.gz,Where are the observed changes located in the lungs?,Lower lobes.
train_3653_b_2.nii.gz,Where is the nodule located in the right lung?,Middle lobe.
train_3646_b_2.nii.gz,Where is the nonspecific nodule located?,"Lower lobe, left lung"
train_17901_a_2.nii.gz,What is the status of pleural effusion?,Not detected
train_17893_a_1.nii.gz,Where is the largest lymph node observed?,Right hilar region.
train_3687_a_2.nii.gz,Where are the patch-like consolidations more prominent?,Lower lobes.
train_3687_a_1.nii.gz,Where are the patch-like consolidations more prominent?,Lower lobes.
train_3705_a_2.nii.gz,What is the location of the hypodense lesion?,Right kidney upper pole.
train_3703_a_1.nii.gz,Which lungs have the observed nodules?,Both lungs
train_3701_b_1.nii.gz,What is the position of the pleural effusion?,Right pleural space.
train_3698_a_1.nii.gz,Where is the millimetric air cyst located?,Upper lobe of right lung
train_17860_a_1.nii.gz,Where is the nodule located in the left lung?,Upper lobe
train_3675_d_2.nii.gz,Which side has more prominent effusion?,Right side
train_3976_b_2.nii.gz,What is the location of the local consolidations?,"Upper lobe, left lung"
train_3972_a_1.nii.gz,Which organ contains the lesion?,Liver
train_3819_a_1.nii.gz,What is the location of the frosted glass densities?,"Peripheral, subpleural"
train_17640_a_2.nii.gz,What is the condition of the trachea and main bronchi?,Open and unobstructed.
train_4048_a_2.nii.gz,Which adrenal gland has a lesion?,Right adrenal gland
train_4050_b_1.nii.gz,Where are the consolidations located?,Lower lobes.
train_3993_b_2.nii.gz,Which segment of the lung shows abnormalities?,Anterior segment of left upper lobe.
train_3988_a_2.nii.gz,Where is the subpleural nodule located?,Left lung posterobasal.
train_3998_a_2.nii.gz,Which side shows placing pleural effusion?,Left side
train_3999_a_1.nii.gz,Which hemithorax contains pleural effusion?,Left hemithorax
train_4011_a_1.nii.gz,Where are the nodules primarily located?,"Lower lobe, right lung."
train_4007_a_2.nii.gz,What is the location of the millimetric nodule?,Middle lobe of right lung.
train_4006_a_1.nii.gz,Which side is the pleural effusion more prominent?,Left side
train_3999_a_2.nii.gz,Which hemithorax contains pleural effusion?,Left hemithorax.
train_17668_a_1.nii.gz,Where are the consolidations primarily found?,Middle and lower lobes
train_3870_a_2.nii.gz,What is the position of the cortical lesion?,"Upper pole, right kidney"
train_3826_a_1.nii.gz,Which lobe contains the atelectasis?,Middle lobe
train_17772_a_3.nii.gz,Where is the parenchymal nodule located?,Left upper lobe.
train_3821_a_5.nii.gz,Where is the calcified parenchymal nodule located?,Anterior segment of the right lung upper lobe.
train_3833_a_1.nii.gz,Where is the 30 mm hypodense lesion located?,Right lobe of liver
train_3930_a_1.nii.gz,What is the condition of the vertebral corpus heights?,Preserved heights
train_17738_a_2.nii.gz,What is observed in the left hemithorax?,Pleural effusion
train_3883_a_1.nii.gz,Where are the parenchymal nodules located in the right lung?,Posterior lower lobe.
train_3880_a_1.nii.gz,Which lobe of the right lung is affected?,Upper lobe.
train_3308_a_2.nii.gz,Where is the nodular density observed?,Left upper lobe.
train_18069_b_1.nii.gz,What is the position of the nonspecific nodule?,"Lower lobe, right lung."
train_18070_a_1.nii.gz,Where is the effusion located?,Right hemithorax.
train_18071_a_2.nii.gz,What is the location of the nodule?,Superior lower lobe.
train_3309_a_1.nii.gz,Which lobe is almost completely filled by the mass?,Middle lobe
train_3321_a_1.nii.gz,Where is the linear atelectasis located?,"Lower lobe, left lung"
train_18059_a_1.nii.gz,What is the location of the largest lymphadenopathy?,Right paratracheal area.
train_3315_a_2.nii.gz,Where are the focal consolidative areas located?,Left lung lingular segment.
train_3311_b_2.nii.gz,Which lobes show nodular consolidations?,Left upper lobe.
train_18081_a_2.nii.gz,What is the position of the left hemidiaphragm?,Elevated
train_3276_a_2.nii.gz,Which lung bases show ground-glass densities?,Bilateral lung bases.
train_3262_a_2.nii.gz,What is the position of the calculi in the right kidney?,Lower pole calyx.
train_18075_a_1.nii.gz,Where is the lesion located in the kidney?,Upper pole.
train_18076_a_1.nii.gz,Which kidneys show calculi?,Right and left kidneys.
train_18078_a_2.nii.gz,Where is the largest parenchymal nodule located?,Posterior segment of right lung upper lobe.
train_3355_a_2.nii.gz,Where is the hypodense lesion located?,Left adrenal gland
train_3353_a_1.nii.gz,What is the position of the larger nodular lesion?,Upper lobe anterior
train_3363_a_1.nii.gz,Which adrenal gland is affected?,Left adrenal gland.
train_18029_a_2.nii.gz,What is the position of the endotracheal tube?,Inside trachea.
train_3326_b_5.nii.gz,Which side has a deeper pleural effusion?,Left side.
train_3326_b_1.nii.gz,What is the position of the larger effusion?,Left side.
train_3325_a_2.nii.gz,Where is the minimal pleural effusion observed?,Right side
train_3324_a_2.nii.gz,Where is the ground-glass nodule located?,"Anterior segment, right lung"
train_18042_a_1.nii.gz,What is the position of the hypodense lesion in the liver?,Left lobe.
train_3336_a_2.nii.gz,What is the location of the hypodense lesion?,Left kidney upper pole
train_3193_a_2.nii.gz,Where are the atelectatic changes observed?,"Lower lobes, left lung"
train_3193_a_1.nii.gz,Where are the atelectatic changes observed?,"Lower lobes, left lung"
train_3185_b_2.nii.gz,Where is the millimetric calcified nodular lesion located?,Anterior segment of right lung.
train_3189_a_5.nii.gz,Where is the atelectasis found?,"Middle lobe, right lung."
train_18131_a_2.nii.gz,Where is the millimetric stone located?,Upper pole of left kidney.
train_3187_a_2.nii.gz,Which adrenal gland shows thickening?,Left adrenal gland.
train_3198_a_1.nii.gz,Where is the minimal pleural effusion observed?,Left side.
train_18148_b_2.nii.gz,Which lobes show more prominent consolidation?,Lower lobes.
train_3182_a_2.nii.gz,Where are the nodules located?,Upper lobes
train_3182_a_1.nii.gz,Where are the nodules found?,Bilateral upper lobes
train_18135_b_1.nii.gz,What is observed in the right hemithorax?,Pleural effusion
train_3171_a_5.nii.gz,Where is the fusiform dilation observed?,Ascending aorta
train_18102_a_1.nii.gz,What is the location of the nodule in the right lung?,Superior lower lobe
train_18102_a_2.nii.gz,Where is the nodule located in the right lung?,Superior lower lobe
train_3238_a_2.nii.gz,Where is the mass lesion located?,Right adrenal gland.
train_3238_a_1.nii.gz,What is the location of the mass lesion?,Right adrenal gland.
train_3257_a_1.nii.gz,Which lobes exhibit peripheral abnormalities?,Both lower lobes
train_3253_b_1.nii.gz,Where is the cortical hypodense lesion found?,"Upper pole, left kidney."
train_18113_b_1.nii.gz,What is the position of the observed lesions?,Lower lobes.
train_18114_a_2.nii.gz,Which adrenal gland shows nodular thickening?,Left adrenal gland.
train_3233_b_2.nii.gz,Where is the hypodense nodule located?,Right thyroid lobe
train_18110_a_2.nii.gz,What is the position of the nodular lesion in the liver?,Right lobe posterior segment.
train_18111_a_1.nii.gz,Where is the pleural effusion located?,Left pleural space
train_3226_c_1.nii.gz,Which lobes show predominant abnormalities?,Lower lobes.
train_18111_a_2.nii.gz,Which area shows pleural effusion?,Left pleural space.
train_17958_a_1.nii.gz,Where are the atelectasis changes observed?,Both lung lower lobes.
train_3549_a_2.nii.gz,Which hemidiaphragm is elevated?,Left hemidiaphragm.
train_3587_b_2.nii.gz,Which lung lobe shows more prominent nodular consolidation?,Upper lobe of the right lung.
train_17919_a_1.nii.gz,What is the location of the nodule?,"Middle lobe, right lung."
train_17905_a_1.nii.gz,Where is the hyperdense stone located?,Right kidney midzone
train_3558_a_2.nii.gz,Where is the hypodense lesion located?,"Left lobe, liver"
train_17931_a_2.nii.gz,Which hemidiaphragm is slightly elevated?,Left hemidiaphragm.
train_3578_a_2.nii.gz,Where is the subpleural nodule located?,Upper lobe of left lung
train_3572_a_1.nii.gz,Where is mild atelectasis noted?,Left upper lobe.
train_17924_a_1.nii.gz,What is the condition of the trachea?,Midline position.
train_3416_b_1.nii.gz,Which side has more pleural effusion?,Left side
train_3429_a_1.nii.gz,Where are the cortical cysts located?,Both kidneys
train_18016_a_1.nii.gz,Where is the newly developed pleural effusion?,Right pleural space.
train_3387_a_1.nii.gz,Which side shows mild pleural effusion?,Left side
train_18026_a_1.nii.gz,Where are the hypodense nodular lesions located?,Both kidneys.
train_18017_a_2.nii.gz,Where is the solid lesion located?,Right adrenal gland
train_3476_b_1.nii.gz,Where are the ground-glass densities located?,"Lower lobe, right lung."
train_3476_a_2.nii.gz,Where is the density increase located?,"Lower lobe, left lung"
train_3490_b_1.nii.gz,What is the status of pleural effusion?,Not detected.
train_3487_b_1.nii.gz,Where is the hypodense lesion located?,Left lobe lateral segment.
train_3462_a_1.nii.gz,Where are the calculi located?,Both kidneys
train_3458_a_2.nii.gz,What is the position of the nodule?,Upper lobe.
train_3457_a_2.nii.gz,What is the position of the atelectasis?,Lower lobes
train_3454_a_2.nii.gz,What is the location of the nodules in the left lung?,Upper lobe posterior.
train_17156_a_1.nii.gz,Which side shows the largest effusion?,Left hemithorax.
train_17162_a_2.nii.gz,Where is the 2 mm nodule located?,Right posterobasal
train_17152_a_1.nii.gz,Where are the nodules located in the left lung?,Upper lobe.
train_4824_a_1.nii.gz,What is the location of the nodule in the lower lobe?,Superior segment.
train_4836_c_2.nii.gz,What is the position of the right hemidiaphragm?,Elevated.
train_4836_c_1.nii.gz,Which diaphragm is elevated?,Right hemidiaphragm.
train_4953_a_2.nii.gz,Where is the right hemidiaphragm positioned?,Elevated position.
train_4953_a_1.nii.gz,Where is the right hemidiaphragm positioned?,Elevated position.
train_17109_a_2.nii.gz,Which kidneys have cortical cysts?,Both kidneys.
train_4913_a_1.nii.gz,What is the location of the hypodense lesion?,"Upper lobe, left lung."
train_17118_a_2.nii.gz,Where is the pleural effusion observed?,Left pleura
train_4892_a_1.nii.gz,Which lung parenchyma is affected?,Right lung parenchyma
train_4913_a_2.nii.gz,Where is the hypodense lesion situated?,"Upper lobe, left lung."
train_4932_a_2.nii.gz,Where is the parenchymal nodule located?,"Middle lobe, right lung."
train_4922_a_2.nii.gz,Which hemidiaphragm is elevated?,Left hemidiaphragm
train_17126_d_2.nii.gz,What area shows a new nodular consolidation?,Posterobasal segment of left lung lower lobe.
train_4716_a_1.nii.gz,What is the position of the right hemidiaphragm?,Elevated position
train_4735_a_2.nii.gz,What is the location of the gallbladder calculi?,Gallbladder lumen.
train_4670_a_1.nii.gz,Where are the ground glass densities located?,Both lung lower lobes.
train_17263_c_2.nii.gz,What is observed in the left hemithorax?,Pleural effusion
train_17253_a_1.nii.gz,Where is the low-density nodule located?,"Laterobasal segment, right lung"
train_17253_a_2.nii.gz,What is the location of the low-density nodule?,Laterobasal segment of the lower lobe.
train_17192_a_2.nii.gz,Which lung lobe contains the nodule?,Superior right lobe.
train_17194_a_1.nii.gz,What is the position of the nodule in the left lung?,Upper lobe.
train_17194_a_2.nii.gz,What is the position of the nodule in the left lung?,Upper lobe.
train_4793_a_2.nii.gz,Where is the consolidation primarily observed?,Lower lobe
train_17195_a_1.nii.gz,Where are the nonspecific nodules located?,"Right upper lobe posterior, right middle lobe lateral, left lower lobe anteromedial."
train_17189_e_1.nii.gz,What area shows mild pleural effusion?,Right pleural space.
train_4803_a_2.nii.gz,What is the location of the nodules in the left lung?,Upper lobe.
train_17192_a_1.nii.gz,Which lobe contains the nodule?,Superior right lobe
train_17209_b_1.nii.gz,What is the condition of the trachea and bronchi?,Open and unobstructed.
train_4744_a_1.nii.gz,Where is the cortical cyst located?,Left kidney upper pole
train_4770_a_2.nii.gz,What is the location of the calculi in the right kidney?,Middle pole
train_17204_a_2.nii.gz,What is the position of the thickening in the right lung?,Anterior upper lobe.
train_17097_a_3.nii.gz,Where are the patchy densities primarily located?,Lower lobes
train_16970_a_1.nii.gz,What is the position of the 3 mm nodule in the left lung?,Anterior segment.
train_16971_a_2.nii.gz,What is the location of the largest bulla?,"Lower lobe, left lung."
train_5193_d_2.nii.gz,Where is the hypodense lesion located?,Right kidney upper pole
train_16973_a_2.nii.gz,Which side has the massive pleural effusion?,Right pleural space.
train_5145_a_1.nii.gz,What is the status of the pleura?,No effusion detected.
train_5142_a_1.nii.gz,What is the location of the prominent nodules?,Upper lobe apices
train_16924_g_2.nii.gz,Where is the central venous catheter terminating?,Right atrium
train_16924_i_1.nii.gz,Where is the atelectasis observed?,Lower lobe of the left lung.
train_5272_a_2.nii.gz,What is the position of the lesion in the left breast?,Upper outer quadrant
train_5271_a_2.nii.gz,Which lobes show consolidations?,"Right lower lobe, left lower lobe."
train_5269_a_2.nii.gz,What is the location of the largest nonspecific nodule?,Anterior right upper lobe
train_16942_a_1.nii.gz,What is the location of the cortical lesion?,Upper pole of right kidney.
train_5223_a_2.nii.gz,What is the largest nodule's location?,"Middle lobe, right."
train_17089_c_1.nii.gz,Where is the newly developed effusion located?,Right pleural space
train_4990_a_2.nii.gz,Where is the nonspecific parenchymal nodule located?,"Middle lobe, right lung."
train_5000_a_2.nii.gz,What lobe contains the nodule?,Middle lobe
train_5013_a_2.nii.gz,Where are the pleural effusions more prominent?,Left hemithorax.
train_5124_a_1.nii.gz,Which lobe contains the nodule?,Left upper lobe.
train_17045_a_2.nii.gz,Which lobe contains the nodule?,Upper lobe
train_17024_a_2.nii.gz,Which lobes contain the observed lesions?,Both upper lobes.
train_4661_a_1.nii.gz,What is the location of the hypodense lesion?,Right lobe of liver
train_4659_a_2.nii.gz,What is the status of pleural effusion?,Not detected
train_4270_a_1.nii.gz,What is the condition of the lung parenchyma?,Normal aeration
train_4267_a_2.nii.gz,What is the location of the cyst?,Upper pole of left kidney.
train_17495_a_1.nii.gz,Where is the 3 mm diameter nodule located?,Anterobasal right lung.
train_17495_a_2.nii.gz,What is the position of the 3 mm nodule?,Anterobasal right lung.
train_4260_b_2.nii.gz,Where is the patchy density observed?,"Upper lobe, right lung"
train_17528_a_1.nii.gz,What is the position of the lesion in the left kidney?,Upper pole anteromedial.
train_17506_a_2.nii.gz,What is the position of the calcific nodule?,Left upper lobe.
train_4254_a_5.nii.gz,Which diaphragm is elevated?,Right diaphragm
train_4254_a_1.nii.gz,Which diaphragm is elevated?,Right diaphragm
train_17507_c_2.nii.gz,Where is the calcified nodule located?,Medial segment of left lung lower lobe.
train_17508_a_1.nii.gz,Where are the bilateral pleural effusions observed?,Right and left hemithorax
train_4246_d_1.nii.gz,Where is the collapse observed?,"Lower lobe, left lung"
train_17453_a_1.nii.gz,Which lung apex contains the nodule?,Right lung apex.
train_4325_a_1.nii.gz,What is the location of the large nodules?,"Middle lobe, right lung."
train_17462_a_1.nii.gz,What is the location of the cyst?,Right lobe of liver.
train_4122_a_2.nii.gz,Where is the largest lesion observed?,"Anterior segment, left upper lobe."
train_4112_a_2.nii.gz,Where is the consolidation located?,"Lower lobe, right lung."
train_4106_a_2.nii.gz,What is the position of the calculi?,Upper pole of right kidney.
train_4140_a_1.nii.gz,What is the position of the calculus observed?,Upper pole (left kidney).
train_17590_a_1.nii.gz,Where is the 2 mm diameter nodule located?,Left upper lobe.
train_4067_a_1.nii.gz,Where are the ground-glass appearances located?,"Right lung, lower lobe"
train_4079_a_1.nii.gz,What is the condition of the pleura?,No effusion detected
train_17604_a_1.nii.gz,Where is the stone density located?,Right kidney calyx.
train_17608_a_1.nii.gz,Where are the hypodense lesions in the liver located?,Right lobe.
train_4185_a_1.nii.gz,Where is the pleural effusion observed?,Left pleural area
train_17532_a_1.nii.gz,What is the position of the kidney calculus?,Upper pole right kidney
train_4200_b_2.nii.gz,What is the location of the cortical cyst?,Upper pole of left kidney.
train_4200_b_1.nii.gz,Where is the cortical cyst located?,Upper pole of left kidney.
train_4145_b_1.nii.gz,Which lobes exhibit the observed densities?,Lower lobes
train_4166_b_2.nii.gz,What is the status of the pleural space?,No effusion.
train_4163_a_1.nii.gz,Which lung lobes show focal ground glass densities?,"Right, left lower."
train_4560_a_2.nii.gz,Where is the well-circumscribed nodule located?,Lower lobe superior segment.
train_4555_a_2.nii.gz,Where are the focal consolidations located?,Left lung inferior lingular segment
train_17318_a_1.nii.gz,Where is the atelectasis located in the left lung?,Upper lobe
train_4576_a_2.nii.gz,Where are the faint opacities primarily located?,"Both lungs, lower lobes."
train_4522_a_1.nii.gz,Where is the calculus located?,Upper pole of left kidney
train_17343_a_2.nii.gz,What area shows atelectatic changes?,Middle lobe of right lung.
train_4520_d_4.nii.gz,What is observed in the right pleural area?,Pleural effusion.
train_4520_d_2.nii.gz,What is the position of the pleural effusion?,Right pleural area.
train_4520_d_1.nii.gz,Where is the pleural effusion located?,Right pleural area
train_4545_a_1.nii.gz,Where is the irregularly contoured nodule located?,Right lung upper lobe anterior segment
train_17331_b_1.nii.gz,Where is the hyperdense stone located?,"Upper pole, left kidney."
train_4542_a_2.nii.gz,What is the location of the stone in the right kidney?,Upper pole.
train_4542_a_1.nii.gz,Where is the stone in the right kidney?,Upper pole
train_4539_a_2.nii.gz,Which lung lobe has consolidation?,Lower lobe of the right lung.
train_4637_a_2.nii.gz,What is the condition of the pleura?,No effusion detected.
train_4630_a_1.nii.gz,Where is the nodule located in the right lung?,"Middle lobe, lateral segment."
train_17301_a_1.nii.gz,What is the location of the hypodense nodule in the liver?,Posterior segment.
train_4602_a_2.nii.gz,What is the position of the hypodense lesion?,Upper pole of right kidney.
train_4598_a_2.nii.gz,Where is the nodule that fills the thyroid lobe?,Right thyroid lobe
train_17425_a_1.nii.gz,Where are the ground glass densities located?,Both lung lower lobes
train_4355_a_1.nii.gz,Where are the observed lymph nodes located?,Mediastinum and hilar
train_4393_a_2.nii.gz,Where is the nodular lesion located?,"Apical segment, upper lobe"
train_4375_a_2.nii.gz,What segment of the left lung contains the nodule?,Anterobasal segment.
train_17373_a_1.nii.gz,What area shows more prominent atelectasis?,Left lung lower lobes
train_17353_b_2.nii.gz,Which area shows gallstones?,Gallbladder
train_4435_a_1.nii.gz,Where are the nodular opacities located?,Upper lobes
train_4466_a_1.nii.gz,Which lung apex has the largest nodule?,Right lung apex
train_4465_a_2.nii.gz,Which lobes show increased density?,Both lower lobes
train_11018_b_2.nii.gz,What is the location of the observed atelectasis?,Middle lobe of the right lung.
train_11018_a_2.nii.gz,Which hemidiaphragm shows elevation?,Right hemidiaphragm
train_13565_b_1.nii.gz,What is the position of the nodule?,Anterior left lung.
train_13566_a_2.nii.gz,Where are the stones located?,Both kidneys.
train_13598_a_1.nii.gz,Where are the cortical cysts located?,Both kidneys.
train_10955_a_1.nii.gz,What is the condition of the trachea and bronchi?,Open and unobstructed.
train_10981_b_2.nii.gz,What is the location of the hypodense lesion in the scapula?,Right scapula body.
train_13590_a_2.nii.gz,What is the location of the low-density nodule?,"Superior segment, left lung lower lobe."
train_10972_b_2.nii.gz,What is observed in the right hemithorax?,Pleural effusion.
train_11078_b_1.nii.gz,Where is the pleural effusion observed?,Left hemithorax
train_11073_b_2.nii.gz,Where are the nodules located?,Left lung middle lobe.
train_11073_b_1.nii.gz,Where are the nodules located in the lungs?,Left lung middle lobe.
train_11072_a_1.nii.gz,Where is the hyperdense stone located?,Right kidney upper pole calyces.
train_11086_a_2.nii.gz,What is the position of the nodular lesion in the left kidney?,Upper pole.
train_11032_a_2.nii.gz,What is observed in the left hemithorax?,Pleural effusion
train_11032_a_1.nii.gz,Which hemithorax has pleural effusion?,Left hemithorax.
train_13552_a_2.nii.gz,Which hemidiaphragm is elevated?,Right hemidiaphragm
train_13548_a_1.nii.gz,Where is the silicone implant located?,Right breast
train_13548_a_2.nii.gz,Which breast has a silicone implant?,Right breast
train_13551_a_2.nii.gz,Where is the atelectasis area observed?,Upper lobe of left lung.
train_11105_a_1.nii.gz,Where is the nonspecific nodule located?,Right lung apex.
train_10828_a_1.nii.gz,What is the position of the gallbladder stones?,In the gallbladder
train_10852_a_2.nii.gz,What is the position of the largest lymphadenopathy?,Right upper paratracheal
train_13655_a_1.nii.gz,Where are the calculi located in the right kidney?,Superior pole
train_10863_a_1.nii.gz,Where is the ground glass density located?,"Lower lobe, right."
train_13687_a_1.nii.gz,What is the position of the opacity?,Subpleural region.
train_13691_a_1.nii.gz,Where is the right pleural effusion observed?,Right pleural space
train_10781_a_1.nii.gz,Where is the smear-like effusion located?,Base of left lung.
train_10791_a_2.nii.gz,Where is the mass lesion located?,Right adrenal gland.
train_10791_a_4.nii.gz,Where is the mass lesion located?,Right adrenal gland.
train_10809_a_2.nii.gz,Where is the focal patchy consolidation observed?,"Anterior segment, left lung upper lobe"
train_10801_a_2.nii.gz,What is the position of the largest parenchymal nodule?,"Anterior segment, right lung."
train_10797_a_2.nii.gz,What is the position of the nodule?,Anterior upper lobe
train_10792_a_1.nii.gz,What is the condition of the lung parenchyma?,Normal aeration
train_10922_a_2.nii.gz,What is the condition of the lung parenchyma?,Normal aeration
train_10918_a_1.nii.gz,Which lung lobe contains the nodule?,Left upper lobe.
train_10909_a_1.nii.gz,Where is the calcific nodule located?,Right lung apex
train_10943_a_2.nii.gz,Where is the kidney lesion located?,"Upper pole, left kidney"
train_10877_a_2.nii.gz,What is the condition of the pleural space?,No effusion detected.
train_13639_a_1.nii.gz,Which pleural area shows effusion?,Right pleural area.
train_10869_a_2.nii.gz,What is the position of the observed effusion?,Left pleural space
train_10869_a_1.nii.gz,Where is the minimal effusion located?,Left pleural space.
train_10888_a_2.nii.gz,Which segment of the lung contains the nodule?,Superior segment of the left lung lower lobe.
train_10894_b_2.nii.gz,What is the location of the consolidative mass lesion?,Right hilar region.
train_10894_b_1.nii.gz,Where is the consolidative mass lesion located?,Right hilar region.
train_13423_a_2.nii.gz,Where are the nodules located?,"Right middle lobe, left lower lobe."
train_11309_a_2.nii.gz,Which organ has a hypodense lesion at segment 4A and 4B?,Liver.
train_11308_a_2.nii.gz,Where is the stone located?,Right kidney lower pole.
train_11308_a_1.nii.gz,Where is the stone located?,Right kidney lower pole.
train_11315_g_1.nii.gz,Where is the solid mass located?,Right adrenal gland.
train_11315_h_1.nii.gz,Where is the pleural effusion located?,Right pleural space
train_11320_a_2.nii.gz,What is the location of the mass lesion in the right lung?,Upper lobe.
train_11316_a_2.nii.gz,Where is the exophytic cortical cyst located?,Right kidney upper pole.
train_13436_c_2.nii.gz,Where are the bronchiectatic changes located?,Both lung lower lobes
train_11275_a_1.nii.gz,What is the position of the cyst in relation to the kidney?,Upper pole.
train_11279_a_3.nii.gz,Where is the liver lesion located?,"Left lobe, lateral segment."
train_13378_a_1.nii.gz,What is the position of the patchy ground-glass densities?,"Upper lobe, left lung."
train_11385_a_1.nii.gz,Which lobe contains the nodule in the left lung?,Upper lobe
train_13365_a_1.nii.gz,What is the position of the nodules relative to the pleura?,Subpleural
train_13383_a_2.nii.gz,Which shoulder shows posterior dislocation?,Left shoulder
train_13399_a_2.nii.gz,Where is the nodule located in the right lung?,Upper lobe anterior segment.
train_11335_a_1.nii.gz,Where is the calculus located?,Middle zone of the left kidney.
train_11254_a_1.nii.gz,Which lung lobe contains the largest nodule?,Lower lobe of right lung
train_11150_a_1.nii.gz,Where is the hyperdense stone located?,Right kidney upper pole
train_11166_b_1.nii.gz,Where is the irregularly circumscribed mass lesion located?,Upper lobe posterior segment
train_11112_a_2.nii.gz,Which organ shows splenomegaly?,Spleen.
train_11144_a_1.nii.gz,What is the position of the mass lesion in the left lung?,Apicoposterior segment.
train_13498_b_2.nii.gz,Where is the bilateral pleural effusion observed?,In the pleural cavities.
train_13506_a_1.nii.gz,Which adrenal glands are examined?,Bilateral adrenal glands.
train_13511_a_1.nii.gz,Where is the consolidation primarily located?,Anterior segment of right upper lobe
train_11173_a_2.nii.gz,Which lobes contain the nodules?,Bilateral lung lower lobes.
train_11222_a_2.nii.gz,What is the position of the largest nodule?,Lower lobe basal segment.
train_13467_a_1.nii.gz,What is the location of the air cyst?,Middle lobe of right lung.
train_13467_a_2.nii.gz,What is the position of the largest pulmonary nodule?,Lower lobe laterobasal segment.
train_11218_a_2.nii.gz,What is the status of the pleura?,No effusion detected
train_11211_a_2.nii.gz,What is the condition of the lung parenchyma?,Normal aeration
train_11249_a_1.nii.gz,Where are the observed changes in the lungs?,Bilateral lower lobes.
train_11243_a_2.nii.gz,Where is the calculus located?,Upper pole of right kidney.
train_11243_a_1.nii.gz,Where is the calculus located?,Upper pole of right kidney.
train_11241_a_1.nii.gz,Where are the nodular densities located?,Lower lung lobes
train_13453_a_2.nii.gz,Where are the densities predominantly located?,"Peripheral, lower lobes"
train_11177_b_1.nii.gz,What is the position of the largest nodule?,"Lower lobe, left lung."
train_11192_a_2.nii.gz,Where in the lung are the nodules found?,Upper lobe anterior
train_10352_a_2.nii.gz,Where is the ground-glass nodule located?,Laterobasal right lung.
train_13991_a_2.nii.gz,Where is the mass located in the left lung?,Anterior upper lobe.
train_13995_a_1.nii.gz,Where are the nodules located?,"Left upper lobe, right middle lobe"
train_10354_a_2.nii.gz,Where are the hypodense lesions located in the liver?,Right lobe
train_14008_a_1.nii.gz,Which adrenal gland has a low-density lesion?,Right adrenal gland.
train_10325_a_1.nii.gz,Which diaphragm is elevated?,Right diaphragm
train_14005_a_2.nii.gz,Where are the nonspecific nodules located?,"Middle lobe, right lung"
train_14015_b_2.nii.gz,What is the condition of the lung parenchyma?,Normal aeration
train_10443_a_2.nii.gz,Which lobe contains the semisolid nodule?,"Upper lobe, right lung"
train_10460_a_1.nii.gz,What is the position of the hypodense parenchymal nodule?,Superior segment of left lung lower lobe.
train_10389_a_2.nii.gz,Which breast contains the lesion?,Right breast
train_13952_a_2.nii.gz,Where are the pulmonary nodules located?,"Right lung, middle lobe."
train_10411_a_1.nii.gz,Where is the calculi located?,Lower pole calyx
train_10192_a_1.nii.gz,Which kidneys show calculi?,Both kidneys
train_10181_a_2.nii.gz,What pattern do the opacities create?,Crazy paving pattern
train_10164_a_2.nii.gz,Where is the stable nodule located?,Subpleural in left lung lower lobe.
train_10123_a_2.nii.gz,Where are the dependent density increases observed?,Lower lobes of both lungs.
train_10259_a_2.nii.gz,Where is the pulmonary nodule found?,"Lateral segment, lower lobe"
train_10262_a_2.nii.gz,Where is the right supraclavicular lymph node?,Right supraclavicular
train_10276_a_1.nii.gz,Which diaphragm is elevated?,Right diaphragm.
train_10267_a_2.nii.gz,Which lobes contain the nodules?,Both lower lobes
train_14046_a_2.nii.gz,What is the location of the cyst?,"Right lobe, posterior segment"
train_10235_a_2.nii.gz,Where in the left lung are the opacities specifically noted?,Lower lobe anteromedial segment.
train_10234_b_2.nii.gz,Which lobe contains the subpleural nodule?,Left lobe.
train_14055_a_2.nii.gz,Where is the pathological bone fracture located?,Left clavicle
train_10216_a_2.nii.gz,What is the condition of the pleura?,No effusion detected
train_13774_a_1.nii.gz,Which region contains the observed lymph nodes?,Right hilar region
train_10674_a_1.nii.gz,Where are the calcific nodules located?,Both upper lobes
train_13790_a_1.nii.gz,Where is the pleural thickening observed?,Right pleura.
train_10667_a_2.nii.gz,What is the location of the subpleural nodule?,Left lung lower lobe superior segment.
train_13718_e_2.nii.gz,Where is the mucus impaction observed?,Right main bronchus.
train_10743_a_1.nii.gz,What is the status of the pleural space?,No effusion.
train_10744_i_2.nii.gz,Which hemidiaphragm is elevated?,Left hemidiaphragm
train_10744_g_2.nii.gz,Where are the nodules located?,Lung lower lobe
train_10744_e_2.nii.gz,Where was the pleural effusion previously observed?,Left pleural space.
train_13739_b_1.nii.gz,Which lobes show atelectasis?,Both lower lobes.
train_13804_a_1.nii.gz,What is the position of the ground-glass nodule?,Posterior subpleural
train_13878_a_2.nii.gz,Where is the 3 mm subpleural nodule located?,Lower lobe laterobasal segment.
train_13886_a_1.nii.gz,Where is the hypodense lesion located in the left kidney?,Upper pole.
train_13886_a_2.nii.gz,What is the location of the hypodense lesion in the left kidney?,Upper pole.
train_13887_a_2.nii.gz,Where is the nodular lesion found?,Lower lobe of left lung
train_13889_a_2.nii.gz,Where is the nodule situated in relation to the pleura?,Subpleural region.
train_10611_a_2.nii.gz,Which segment of the right lung contains the nodule?,Anterior segment.
train_10629_a_2.nii.gz,What is the location of the calculus?,Right kidney upper pole.
train_10624_a_1.nii.gz,What is the location of the largest lymph node?,Right hilar area
train_10594_a_2.nii.gz,What is the position of the nodule relative to the fissure?,Inferolateral to minor fissure.
train_10572_a_1.nii.gz,Where in the lung is the nodule found?,Superior lower lobe
train_12868_a_2.nii.gz,Which structures show normal aeration?,Both lungs
train_12271_a_1.nii.gz,Where is the calculi located?,"Lower pole, left kidney."
train_12270_a_2.nii.gz,Where is the hyperdense stone located?,Right kidney upper pole.
train_12870_a_1.nii.gz,Where is the subpleural nodule located?,Lower lobe laterobasal
train_12214_a_1.nii.gz,What is the location of the hypodense lesion in the kidney?,Left kidney midzone.
train_12211_a_1.nii.gz,What is the location of the 4 mm ground-glass nodule?,Posterobasal left lung
train_12237_a_1.nii.gz,What is the position of the nodule in the right lung?,Superior lower lobe
train_12236_a_2.nii.gz,Which part of the aorta is enlarged?,Ascending aorta.
train_12839_a_1.nii.gz,What is the location of the cortical cyst?,Upper pole of right kidney.
train_12839_a_2.nii.gz,Where is the cortical cyst located?,Upper pole of right kidney.
train_12318_a_1.nii.gz,What is the position of the calcific nodules in the right lung?,Anterior segment upper lobe.
train_12825_a_1.nii.gz,Which lobe contains the nodule?,Anterior lower lobe.
train_12334_a_1.nii.gz,What is the position of the calculus?,Upper pole of left kidney
train_12285_c_1.nii.gz,Where is the calculi located?,Upper pole of left kidney
train_12858_a_2.nii.gz,Which side has pneumothorax?,Left hemithorax
train_12304_a_2.nii.gz,What is the position of the ground glass opacities?,"Peripheral, bilateral"
train_12851_a_2.nii.gz,What is the position of the left lung nodule?,Anterior segment.
train_12133_a_1.nii.gz,Where is the hypodense lesion located?,"Right lobe, posterior segment"
train_12953_a_2.nii.gz,What area of the lung is the nodule found in?,Peripheral subpleural area.
train_12118_a_1.nii.gz,What is the location of the observed linear fibrotic band?,Posterior right lung.
train_12060_a_2.nii.gz,Which lungs show no abnormalities?,Both lungs.
train_12054_a_1.nii.gz,Where is the calcified nodule located?,"Posterior segment, right lung"
train_12910_a_2.nii.gz,What is the location of the stone?,Lower pole calyx
train_12201_a_4.nii.gz,What is the position of the hypodense lesion in the kidney?,Anterior lower pole.
train_12940_a_1.nii.gz,Which quadrant contains the mass?,Right upper quadrant.
train_12149_a_2.nii.gz,Where is the bilateral pleural effusion located?,Both lung bases.
train_12180_a_1.nii.gz,Where is the focal consolidation area observed?,"Posterior segment, right lung upper lobe."
train_12924_a_2.nii.gz,Where is the cortical cyst located?,Upper pole of right kidney
train_12537_a_1.nii.gz,Which breast has undergone surgery?,Left breast.
train_12685_a_2.nii.gz,Which adrenal gland has a 25x20 mm nodule?,Right adrenal gland.
train_12479_d_2.nii.gz,Where are the calculi observed?,Right renal pelvis.
train_12479_a_1.nii.gz,What is observed in the right pleural space?,Pleural effusion.
train_12582_b_2.nii.gz,Where is the consolidation in the right lung?,Upper lobe anterior segment.
train_12632_a_1.nii.gz,Which area shows patchy consolidation?,Lower lobe of right lung.
train_12607_b_2.nii.gz,Which lung contains the largest nodule?,Lower lobe of right lung.
train_12555_a_2.nii.gz,What is the location of the hypodense nodule in the thyroid gland?,Left lobe
train_12540_a_1.nii.gz,Where is the calculus observed?,Upper pole of left kidney.
train_12679_a_1.nii.gz,Where is the calcified nodule located?,Anterior upper lobe.
train_12797_a_1.nii.gz,What is the location of the parenchymal air cyst?,Lower lobe of left lung.
train_12804_a_1.nii.gz,What is the status of pleural effusion?,Not detected.
train_12373_a_2.nii.gz,Where is the nodular lesion located in the liver?,Left lobe
train_12449_a_1.nii.gz,Where are the atelectatic changes located?,Both lower lobes
train_12472_a_2.nii.gz,What is the location of the calculi?,Lower pole of left kidney.
train_12460_c_2.nii.gz,Which lung lobe contains the nodule?,Anterior upper lobe.
train_12460_c_1.nii.gz,Which lung lobe contains the nodule?,Anterior upper lobe.
train_12768_a_1.nii.gz,Where is the nodule situated?,Peripheral subpleural area
train_12776_a_1.nii.gz,Where is the nonspecific nodular density located?,Anterior right lung upper lobe.
train_11656_b_1.nii.gz,What is the location of the largest parenchymal nodule?,Lower lobe of the right lung
train_11653_a_2.nii.gz,Where is the calcified nodule located?,Anterior segment of left lung.
train_13240_a_1.nii.gz,What is the position of the largest nodule?,Apex of upper lobe
train_11643_a_2.nii.gz,Where is the pneumothorax located?,Left hemithorax
train_11641_a_1.nii.gz,What is the position of the pleural effusion?,No pleural effusion.
train_13231_a_1.nii.gz,What is the location of the 4 mm nodule?,Lower lobe laterobasal segment.
train_13219_a_1.nii.gz,Where is the largest parenchymal nodule located?,Posterior upper lobe.
train_13246_a_2.nii.gz,Which lobes exhibit the observed abnormalities?,Both lower lobes
train_11678_a_1.nii.gz,What is the position of the nodule in the left lung?,Anterior segment.
train_11608_a_3.nii.gz,Which lobe contains the nodule?,Anterior middle lobe
train_11608_a_1.nii.gz,Which fissure is the nodule superposed on?,Minor fissure
train_11597_a_1.nii.gz,What is the status of the pleura?,No effusion detected.
train_11626_a_2.nii.gz,What is the location of the larger calcific nodule?,Anterior right upper lobe
train_13250_a_2.nii.gz,What is the location of the largest hypodense lesion in the kidneys?,Upper pole of the right kidney.
train_11755_a_4.nii.gz,What is the status of the pleural space?,No effusion
train_13176_a_2.nii.gz,Where are the observed lymph nodes located?,Right upper paratracheal.
train_11749_a_2.nii.gz,What is the location of the larger nodule?,Lower lobe anterobasal
train_11680_a_3.nii.gz,Which hemithorax has a thicker effusion?,Left hemithorax
train_11680_a_1.nii.gz,Which hemithorax has a thicker effusion?,Left hemithorax
train_13335_a_2.nii.gz,Where is the nodular lesion located?,"Upper lobe, left lung"
train_11488_a_2.nii.gz,What area of the lungs shows more prominent consolidation?,Lower lobe of right lung.
train_11482_a_1.nii.gz,Where are the predominant nodules observed?,Upper lobes
train_13276_a_2.nii.gz,What is the position of the parenchymal nodule?,"Lateral segment, right lung middle lobe."
train_13307_a_1.nii.gz,Where is the atelectasis located?,"Middle lobe, left lung."
train_13309_a_2.nii.gz,What is the location of the simple cyst?,Upper pole of left kidney.
train_13312_b_2.nii.gz,Where are the cortical cysts located?,Both kidneys.
train_13303_a_1.nii.gz,Where is the lesion located in the right kidney?,Upper pole.
train_11522_a_2.nii.gz,What segment of the lung contains the abnormality?,"Superior segment, left lower lobe"
train_11960_a_2.nii.gz,Which lung lobes contain the nodules?,Middle and lower lobes.
train_11982_a_1.nii.gz,What is the location of the calcific nodule?,Posterobasal left lung
train_13070_a_2.nii.gz,What is the location of the stones?,Bilateral kidneys
train_13063_a_2.nii.gz,Which breast is the abnormality located in?,Left breast.
train_13063_a_3.nii.gz,Which breast is affected?,Left breast
train_12039_d_2.nii.gz,Which lobes of the right lung show abnormalities?,Middle and lower lobes.
train_13156_a_2.nii.gz,What is the position of the largest nodule?,Anterior right lung upper lobe.
train_13148_a_1.nii.gz,Which lung lobes contain the nodules?,"Right, left lower"
train_11832_a_2.nii.gz,Which lobe contains a 17 mm nodular lesion?,Left lobe.
train_11790_a_1.nii.gz,What is the condition of the pleura?,No effusion detected.
train_11786_a_1.nii.gz,Which segments of the right lung lower lobe show consolidation?,Superior and antero-laterobasal segments.
train_11898_a_4.nii.gz,Where is the irregularly contoured nodule located?,"Superior segment, left lung lower lobe."
train_11897_a_2.nii.gz,What is the position of the effusion?,Left hemithorax
train_11906_a_1.nii.gz,Where are the calculus images located?,Upper pole of left kidney.
train_11904_a_2.nii.gz,Where is the calcific nodule located?,Anterior upper lobe
train_13119_a_2.nii.gz,Where are the hyperdense stones located?,"Lower pole, left kidney"
train_11846_a_1.nii.gz,Where is the calcified soft tissue lesion located?,Right scapula.
train_13099_a_1.nii.gz,Where is the nodule located in the right lung?,Lower lobe posterobasal segment
train_13099_d_2.nii.gz,Where is the newly emerged nodular lesion located?,Anterior segment of left lung.
train_11867_a_1.nii.gz,Where is the kidney stone located?,"Upper pole, left kidney"
train_14109_a_1.nii.gz,What lobes contain the nodules?,"Right middle, lower"
train_15060_b_2.nii.gz,Where is the stable nodule located?,Lower lobe of right lung
train_8457_a_2.nii.gz,What is the position of the stone in the right kidney?,Upper pole.
train_8506_a_2.nii.gz,What is the location of the nodule?,Lower lobe of right lung.
train_8519_a_2.nii.gz,What is the location of the nodules in the left lung?,Anterolateral upper lobe.
train_15040_a_2.nii.gz,Which lung segments show consolidation?,"Lower lobes, inferior lingular"
train_15024_a_1.nii.gz,What is the location of the ground-glass densities?,Peripherally in both lungs
train_8301_a_2.nii.gz,Which diaphragm is noted to be elevated?,Left diaphragm
train_15158_a_2.nii.gz,Where is the nodular density located?,"Lateral segment, left lung."
train_8274_a_1.nii.gz,What is the position of the calculi in the left kidney?,Superior pole.
train_8269_a_2.nii.gz,Which lobes show atelectasis?,Both lower lobes.
train_8266_a_1.nii.gz,Where is the calculus located?,Lower pole of left kidney
train_15167_a_1.nii.gz,What is the position of the observed linear atelectatic changes?,Subpleural region.
train_15154_a_1.nii.gz,Where is the nodule located in the right lung?,Posterobasal lower lobe
train_15126_a_2.nii.gz,Which direction is the mediastinal deviation observed?,Leftward.
train_8377_a_2.nii.gz,Which hemithorax has more prominent effusion?,Right.
train_8367_b_1.nii.gz,What is the position of the small nodule?,Subpleural lower lobe.
train_8395_a_1.nii.gz,What is the position of the nodular opacities?,Peripherally located
train_8387_a_2.nii.gz,What is the position of the largest nodular lesion?,Lower lobe posterobasal segment
train_8364_a_2.nii.gz,Which lobes show mild atelectasis?,Both lower lobes
train_8332_a_1.nii.gz,What is the position of the mass?,"Mediobasal segment, right lung lower lobe."
train_8328_a_2.nii.gz,Where is the nonspecific nodule located?,"Anterior segment, left upper lobe."
train_8358_a_2.nii.gz,What area shows atelectasis?,Lower lobe of right lung
train_8350_a_1.nii.gz,Which lobe contains the nodule?,"Middle lobe, right lung"
train_14864_a_1.nii.gz,Where is the subpleural nodule observed?,Lower lobe of left lung.
train_8776_a_1.nii.gz,What is the condition of the pleural space?,No effusion.
train_14856_a_2.nii.gz,Where are the calcified nodules located?,"Right middle lobe, left inferior lingula."
train_8755_a_2.nii.gz,What is the location of the small cortical cyst?,Lower pole of left kidney
train_8735_b_1.nii.gz,Where is the nodule situated in relation to the pleura?,Subpleural area
train_14889_a_1.nii.gz,Where are the multiple cysts located?,Both kidneys.
train_8721_b_1.nii.gz,What is the location of the observed consolidation?,Peripheral subpleural.
train_8745_a_2.nii.gz,Where is the nodule located in the left lung?,Lingula inferior segment.
train_8544_a_2.nii.gz,Where are the nodular lesions located?,Upper lobe right lung.
train_8858_b_4.nii.gz,Where are the multiple cysts located?,Both kidneys.
train_8854_b_1.nii.gz,What is the location of the hypodense lesion?,Left kidney upper pole.
train_8837_a_1.nii.gz,What is the condition of the pleural space?,No effusion
train_8617_a_1.nii.gz,What is the location of the observed scoliosis?,Thoracolumbar level
train_14984_a_2.nii.gz,Which lobes exhibit the observed abnormalities?,Both lower lobes.
train_8571_a_1.nii.gz,Where are the nodules in the left lower lobe?,Posterobasal region
train_14972_a_1.nii.gz,Where is the nodule located in the right lung?,Upper lobe posterior segment.
train_14972_a_2.nii.gz,What is the position of the nodule in the right lung?,Upper lobe posterior segment.
train_8683_a_2.nii.gz,What is the position of the peripheral nodules?,Subpleural regions.
train_8716_a_1.nii.gz,Where is the ground-glass density located?,"Upper lobe, right lung"
train_14908_a_1.nii.gz,What is the position of the air cyst?,Posterior segment of right lung upper lobe.
train_8702_b_2.nii.gz,Where is the calcific nodule located?,"Upper lobe, right lung"
train_8648_a_1.nii.gz,Which side shows pleural effusion?,Right.
train_8658_c_2.nii.gz,What is the location of the nodules in the left lung?,Lower lobe laterobasal
train_7875_a_2.nii.gz,What is the position of the emphysematous areas?,Upper lobes of both lungs.
train_15396_a_2.nii.gz,Which segment contains a 7x5 mm nodule?,Anterior segment of right upper lobe.
train_7859_a_2.nii.gz,What is the location of the nodule?,"Middle lobe, right lung"
train_7891_b_2.nii.gz,What is the position of the stable subpleural nodule?,Anterior segment of right lung upper lobe.
train_15390_a_1.nii.gz,Where are the parenchymal nodules located?,"Right upper lobe, left lower lobe"
train_7859_a_1.nii.gz,Where is the nonspecific nodule located?,Middle lobe of right lung.
train_7834_b_2.nii.gz,Which adrenal gland contains a mass lesion?,Right adrenal gland.
train_15424_a_1.nii.gz,What is the location of the large space-occupying lesion?,Right hilar region
train_7824_d_2.nii.gz,What is the condition of the trachea?,Open and unobstructed
train_7962_a_2.nii.gz,What is the location of the calculi?,Upper pole of right kidney.
train_15354_c_2.nii.gz,Where is the largest nodular lesion located?,Upper lobe left lung.
train_7952_a_1.nii.gz,Where is the parenchymal nodule located?,"Anterior segment, left lung"
train_15358_b_1.nii.gz,Which lobes are affected?,Upper lobes.
train_15352_a_2.nii.gz,What is the position of the atelectatic changes?,Basal left lung.
train_15359_a_1.nii.gz,Where is the subpleural nodule located?,Left upper lobe anterior segment.
train_15360_a_2.nii.gz,Which lung shows consolidation areas?,Lower lobe of the right lung.
train_7824_a_2.nii.gz,Which hemidiaphragm shows elevation?,Left hemidiaphragm.
train_7734_a_2.nii.gz,What is the location of the hypodense lesion?,Liver right lobe
train_15478_a_1.nii.gz,What is the position of the focal air trapping area?,Lower lobe of right lung.
train_15481_a_1.nii.gz,Where is the parenchymal nodule situated?,Anterior left lung
train_7690_a_2.nii.gz,Which lobe contains the cyst?,Right lobe.
train_7690_a_1.nii.gz,Which lobe contains the cyst?,Right lobe.
train_7804_a_2.nii.gz,What is observed in the right pleural space?,Free effusion
train_15443_a_2.nii.gz,Which rib shows a fracture?,Right second rib.
train_7752_a_1.nii.gz,Where is the nodular opacity located in the right lung?,"Lower lobe, anterior."
train_15456_a_2.nii.gz,What regions show atelectasis?,Both lung lower lobes
train_15223_a_2.nii.gz,Where are the thyroid nodules located?,Thyroid gland
train_8118_a_2.nii.gz,Where is the 4 mm nodule located?,"Superior lower lobe, left lung"
train_8118_a_1.nii.gz,Where is the 4 mm nodule located?,"Left lung, lower lobe"
train_15243_a_2.nii.gz,Which lung regions are affected?,Both upper lobes.
train_8128_a_1.nii.gz,Which kidneys show cortical cysts?,Both kidneys
train_8243_a_2.nii.gz,Where is the 9 mm nodule located?,Left lung apex.
train_15184_a_2.nii.gz,What is the location of the left kidney calculus?,Upper pole.
train_8243_a_1.nii.gz,Where is the 9 mm nodule located?,Left lung apex.
train_8258_a_1.nii.gz,Where are the nodular infiltrates observed?,"Left lower lobe, right middle lobe"
train_15177_a_1.nii.gz,Where is the stone located?,Left kidney upper pole.
train_8213_b_2.nii.gz,Where is the hyperdense stone observed?,Left kidney upper pole.
train_8233_a_2.nii.gz,Which lung lobe contains the consolidation?,Lower lobe of the left lung.
train_15193_a_1.nii.gz,Where is the fracture line observed?,Right ninth rib.
train_15193_a_2.nii.gz,Where is the fracture line observed?,Right ninth rib.
train_8218_a_1.nii.gz,Which hemidiaphragm shows elevation?,Right hemidiaphragm
train_15320_a_2.nii.gz,What is the position of the calcific nodule in the left lung?,Posterobasal segment.
train_15304_a_2.nii.gz,Which lobe contains the lesion?,Left lobe
train_8047_a_2.nii.gz,Where is the nonspecific hypodense lesion located?,Right lobe of liver.
train_7996_a_2.nii.gz,Where is the stable opacity located?,"Middle lobe, right lung"
train_8089_b_2.nii.gz,Where is the newly developed nodular lesion located?,Right lung lower lobe superior segment.
train_8086_a_1.nii.gz,What region is the nodule situated in?,Peripheral subpleural
train_15268_a_2.nii.gz,Where are the gallbladder calculi located?,Gallbladder.
train_8082_b_2.nii.gz,Where is the volume loss observed?,Lower lobe of left lung.
train_15269_a_1.nii.gz,Where is the hypodense lesion located?,"Upper pole, left kidney"
train_8110_a_1.nii.gz,What is the location of the consolidation?,Peripheral subpleural
train_8065_l_2.nii.gz,Which lung lobes show consolidations?,Both lower lobes.
train_15287_a_2.nii.gz,Where are the infiltrates most prominently located?,Bilateral lower lobes.
train_15293_a_2.nii.gz,What is the position of the parenchymal nodule?,Anterior segment of upper lobe.
train_15285_d_1.nii.gz,Where is the atelectasis located?,Lower lobe of right lung.
train_9719_a_2.nii.gz,Where is the 4 mm nodule located in the right lung?,Posterobasal segment.
train_9655_a_1.nii.gz,Where in the lung is the nodule found?,"Middle lobe, right lung"
train_9651_a_1.nii.gz,Where is the ground-glass-like density increase located?,Lower lobe laterobasal.
train_14297_b_2.nii.gz,What is the location of the well-circumscribed lesion?,"Superior segment, left lung lower lobe"
train_9777_a_1.nii.gz,Where are the lung abnormalities primarily located?,"Peripheral, lower lobes."
train_9776_a_1.nii.gz,Where are the nodular-patchy consolidations observed?,Both lungs lower lobes.
train_14322_a_1.nii.gz,What is the position of the gallbladder stones?,Within the gallbladder.
train_14322_a_2.nii.gz,What is the position of the gallstones?,Within the gallbladder.
train_9761_a_1.nii.gz,Where is the larger nodule located?,Upper lobe posterior segment.
train_9638_a_2.nii.gz,What is the location of the hypodense lesion?,Right kidney upper pole
train_14424_a_1.nii.gz,Which side has the observed lymph node?,Right upper paratracheal.
train_14442_d_1.nii.gz,What is the location of the stable nodule?,"Anterior segment, right lung."
train_9599_a_2.nii.gz,What is the position of the nodule in relation to the thyroid?,Within the left lobe.
train_9595_a_1.nii.gz,What is the position of the focal nodular opacity?,Peripheral subpleural area.
train_9629_a_1.nii.gz,Where is the subpleural nodule located?,Lower lobe laterobasal segment.
train_14418_a_2.nii.gz,What is the condition of the lung parenchyma?,Normal aeration
train_9564_a_1.nii.gz,Where is the hypodense lesion located?,Left lobe lateral segment
train_14416_a_1.nii.gz,Where are the parenchymal nodules located?,Superior right lung lower lobe and left lung lower lobe.
train_9585_a_2.nii.gz,What is the condition of the pleural space?,No effusion
train_14402_a_2.nii.gz,What is the position of the catheter tip?,Superior vena cava.
train_14406_a_1.nii.gz,What is the condition of the trachea?,Open and patent.
train_14165_a_1.nii.gz,What is the position of the observed cyst?,Middle zone of right kidney.
train_10016_a_2.nii.gz,Where is the pleural effusion observed?,Right pleural area.
train_9998_a_1.nii.gz,Which lymph node is noted to be enlarged?,Right upper paratracheal.
train_14167_b_1.nii.gz,Where is the hypodense lesion located in relation to the midline?,Left of midline.
train_10031_a_2.nii.gz,What is the location of the peripheral sclerotic lesion?,Left scapula body
train_10031_a_1.nii.gz,What is the position of the peripheral sclerotic lesion?,Left scapula
train_14176_b_1.nii.gz,What is the position of the largest nonspecific nodule?,Anterior segment of right upper lobe.
train_9992_a_1.nii.gz,Where are the two nodules located in the right lung?,Upper lobe anterior segment.
train_9984_a_1.nii.gz,Where is the nodule specifically located?,Inferior lingular segment.
train_10107_a_2.nii.gz,What is the location of the nodular density?,Left lung lingular segment.
train_14148_a_2.nii.gz,Which lung segment contains the parenchymal nodule?,"Right lung, middle lobe."
train_10050_a_1.nii.gz,Where is the newly observed nodule located?,Lower lobe of the left lung
train_14149_a_2.nii.gz,What is the location of the small air cyst?,Basal part of lower lobe
train_10043_a_1.nii.gz,Where is the most prominent atelectasis observed?,Lower lobe of the right lung.
train_10042_a_1.nii.gz,Where are the opacities primarily located?,"Right lung, upper lobes."
train_14255_a_1.nii.gz,Where is the calculus located?,Right kidney renal pelvis.
train_14268_a_1.nii.gz,What is the position of the effusion?,Right pleural area.
train_14201_a_1.nii.gz,What is the position of the largest nodule?,Right lung apex
train_14196_b_1.nii.gz,Where are the dependent increases in density located?,Lower lobes of both lungs.
train_14189_a_1.nii.gz,Where is the liver lesion located?,Right lobe
train_9888_a_1.nii.gz,Which lobes show multiple focal consolidations?,Both lower lobes.
train_14225_a_2.nii.gz,Which lobes show atelectasis?,Bilateral lower lobes
train_14228_a_1.nii.gz,Where is the consolidation area primarily located?,Lower lobe of left lung.
train_14228_a_2.nii.gz,Where is the large consolidation area located?,Lower lobe of left lung.
train_14215_a_2.nii.gz,Where is the nodular lesion located in the right breast?,Lower outer quadrant
train_9891_b_2.nii.gz,Where is the hyperdense stone located?,Lower pole of the right kidney.
train_9093_a_1.nii.gz,Where is the nodule found?,Anterior upper lobe
train_9078_a_2.nii.gz,What is the position of the lytic-destructive lesions?,Not present.
train_14685_a_2.nii.gz,Where is the calcific nodule located?,Anterior segment of left lung upper lobe
train_9106_a_1.nii.gz,Where is the nodule specifically situated?,Superior posterior subpleural
train_14716_a_1.nii.gz,Where are the nodules in the right lung?,"Anterior segment, upper lobe."
train_9182_a_2.nii.gz,Where are the cortical cysts located?,Right kidney lower pole.
train_14678_a_1.nii.gz,Where is the stone located in the kidney?,Upper pole
train_9120_a_1.nii.gz,Where is the lymph node observed?,Right upper paratracheal area.
train_9136_b_1.nii.gz,What is the location of the hypodense lesion?,Right lobe of liver
train_14786_a_1.nii.gz,What is the status of pleural effusion?,Not detected
train_8942_a_1.nii.gz,What is the status of lymph nodes?,No enlargement detected
train_8900_a_2.nii.gz,What is the condition of the lung parenchyma?,Normal aeration
train_8899_a_2.nii.gz,Where is the parenchymal nodule located?,Lower lobe of left lung.
train_8899_a_1.nii.gz,What is the position of the nonspecific parenchymal nodule?,Lower lobe of left lung.
train_14814_a_1.nii.gz,What is the location of the larger nodule?,"Upper lobe, left lung"
train_14795_a_1.nii.gz,What is the location of the largest nonspecific nodule?,Anterior segment of right upper lobe.
train_14797_b_1.nii.gz,What is the location of the largest lesion?,Left lung apex.
train_9013_a_1.nii.gz,Which bronchus is significantly narrowed?,Left main bronchus.
train_14731_a_2.nii.gz,What is the location of the fusiform nodule?,Anterior upper lobe of the right lung.
train_8987_h_2.nii.gz,What is the location of the largest nodule-like consolidation?,Middle lobe of right lung
train_14764_c_2.nii.gz,Where is the air cyst located?,Apex of right lung
train_8974_a_1.nii.gz,What is the position of the 4 mm nodule in the left lung?,Upper lobe anterior segment.
train_14529_a_1.nii.gz,What is the location of the largest parenchymal nodule?,Middle lobe of right lung.
train_9378_a_1.nii.gz,What is the position of the nodule?,Left lobe.
train_14545_a_1.nii.gz,What is observed in the right pleural space?,Effusion
train_14552_a_2.nii.gz,What is the location of the parenchymal nodule?,Inferior lingular segment
train_9475_a_1.nii.gz,What is the location of the gallbladder stones?,Gallbladder
train_14455_a_2.nii.gz,What is the position of the hyperdense stone?,Middle zone of left kidney.
train_9428_b_1.nii.gz,What is the position of the stable millimetric nodule?,Lower lobe of the left lung.
train_14611_a_1.nii.gz,Where is the 6 mm diameter nodule located?,Middle lobe of the right lung.
train_14611_a_2.nii.gz,Where is the 6 mm nodule located?,Middle lobe of right lung.
train_9230_b_2.nii.gz,What is the location of the stones?,Both kidneys
train_9228_c_1.nii.gz,Where is the minimal pleural effusion observed?,On the right.
train_14615_a_1.nii.gz,Where are the consolidation areas observed?,Lower lobes of lungs.
train_9238_a_1.nii.gz,Where are the lesions located in the liver?,Left lobe.
train_14627_a_2.nii.gz,What is the position of the 4 mm nodule in the left lung?,Lower lobe laterobasal segment.
train_9191_a_5.nii.gz,What is the location of the nodule in the left lung?,"Superior segment, lower lobe."
train_14622_a_2.nii.gz,What is observed in the right pleural space?,Effusion
train_14622_a_1.nii.gz,What is observed in the right pleural space?,Effusion
train_14566_a_2.nii.gz,Which lobes show atelectatic changes?,Both lower lobes
train_9265_b_1.nii.gz,Which lobes show atelectasis?,Both lower lobes
train_9289_a_2.nii.gz,What is the position of the cyst in the liver?,Right lobe.
train_9289_a_1.nii.gz,Which lobe contains the cyst?,Right lobe
train_14579_a_2.nii.gz,Where is the nonspecific calcified pulmonary nodule located?,Upper lobe of the right lung.
train_9271_e_2.nii.gz,What is the location of the nodule?,Right thyroid lobe.
train_2406_a_2.nii.gz,Where is the focal consolidation located?,Inferior lingular segment
train_1373_a_2.nii.gz,Where is the minimal effusion observed?,Right pleural area.
train_2399_a_1.nii.gz,Which lobe shows consolidations?,Middle lobe of the right lung.
train_19616_a_1.nii.gz,What is the location of the calcified nodular lesion?,Anterior segment of right lung upper lobe
train_2410_d_2.nii.gz,What is the position of the hyperdense stone?,Left kidney calyx.
train_2380_a_1.nii.gz,Where is the nodule located in the left lung?,Laterobasal lower lobe.
train_1384_f_2.nii.gz,Where is the focal consolidation area located?,Left lung inferior lingular segment.
train_1384_g_2.nii.gz,Where is the focal consolidation observed?,Right lung apex
train_1390_a_2.nii.gz,Where is the nodule with a diameter of approximately 16 mm located?,Superior segment of left lung lower lobe.
train_2387_b_1.nii.gz,What is the status of pleural effusion?,Not detected
train_627_a_1.nii.gz,What is the status of pleural space?,No effusion detected
train_18532_a_2.nii.gz,Where is the parenchymal nodule located?,Right lung apical segment
train_2454_a_2.nii.gz,Where is the cyst located?,Superior pole of left kidney.
train_2460_a_2.nii.gz,Which lobe contains the nodules?,Upper lobe of right lung.
train_18532_a_1.nii.gz,Where is the parenchymal nodule located?,Right lung apical
train_19606_d_1.nii.gz,Where are the lymphadenopathies located?,Right hilar region.
train_19606_d_2.nii.gz,Where are the lymphadenopathies located?,Right hilar region.
train_2487_a_2.nii.gz,Where is the smaller nodule found?,Left lung lingular segment
train_18540_a_1.nii.gz,What is the location of the nodule?,Anterior segment of right upper lobe.
train_19867_a_2.nii.gz,What is the condition of the pleura?,No effusion detected
train_19201_a_2.nii.gz,What is the position of the hydatid cyst?,Right lobe of liver.
train_219_a_2.nii.gz,Which part of the right kidney has the lesion?,Upper pole
train_2449_a_1.nii.gz,What is the position of the cortical cyst in the right kidney?,Inferior pole
train_1342_a_2.nii.gz,What is the position of the mass lesion filling the axilla?,Left axilla.
train_1343_a_2.nii.gz,What is the status of the pleura?,No effusion.
train_217_a_1.nii.gz,Where is the subpleural pulmonary nodule located?,Superior left lung lower lobe.
train_218_a_2.nii.gz,What is the position of the calcified nodules?,Upper lobe of left lung.
train_18884_c_1.nii.gz,Where is the nodule located in the right lung?,Lower lobe superior segment
train_1442_a_1.nii.gz,Where is the lymphadenopathy located?,Left supraclavicular fossa.
train_597_a_1.nii.gz,Which hemithorax shows pleural effusion-thickening?,Neither hemithorax.
train_2289_a_2.nii.gz,Where is the pleural effusion?,Not present
train_2299_b_1.nii.gz,Where is the hyperdense stone located?,Right kidney lower pole
train_2302_a_2.nii.gz,Where is the hypodense lesion in the kidney located?,Upper pole of right kidney.
train_1462_b_1.nii.gz,What is the position of the gallbladder calculi?,In the gallbladder lumen.
train_18639_a_2.nii.gz,Where is the larger nodule located in the lungs?,Posterobasal right lower lobe.
train_18646_b_1.nii.gz,What area is the nodular lesion located in?,Peripheral subpleural
train_2266_b_1.nii.gz,What is the largest nodule's location?,Anterior left upper lobe.
train_19122_a_2.nii.gz,What is the location of the low-density nodule?,Middle lobe of right lung
train_18594_a_1.nii.gz,What is the condition of the thoracic aorta?,No dilatation detected.
train_1402_a_1.nii.gz,Where are the ground glass densities located?,Both lower lobes.
train_19854_a_1.nii.gz,What is the position of the cortical cyst in the left kidney?,Posterior cortex.
train_18590_a_1.nii.gz,What is the status of the pleural space?,No effusion detected.
train_19852_a_1.nii.gz,Which lobe contains the nodules?,Middle right lobe
train_19161_a_2.nii.gz,Where are the focal density increases located?,"Upper lobe, left lung"
train_1398_a_1.nii.gz,What is the position of the nodule?,Lower lobe lateral
train_1424_a_1.nii.gz,What is the condition of the pleural space?,No effusion detected.
train_18619_a_2.nii.gz,What is the condition of the pleura?,No effusion detected
train_2319_a_1.nii.gz,Where are the calcific nodules located?,"Anterior segment, left upper lobe."
train_18603_a_1.nii.gz,Where are the nodular lesions located in the right kidney?,Upper pole
train_255_a_1.nii.gz,What is the status of pleural effusion?,Not detected
train_2329_f_2.nii.gz,Which lobe shows more prominent nodules?,Lower lobe of left lung
train_2638_a_2.nii.gz,Which segment contains the largest nodule?,Upper lobe anterior
train_2637_a_2.nii.gz,What is the location of the stone?,Lower pole left kidney
train_2627_a_2.nii.gz,What is the location of the gallbladder stones?,Gallbladder
train_18452_b_2.nii.gz,Where is the catheter extending?,Superior vena cava
train_19902_b_2.nii.gz,What is present in the left 11th rib?,Fracture.
train_2651_a_2.nii.gz,Which lobe contains the hypodense lesion?,Left lobe
train_19278_a_2.nii.gz,What is the position of the parenchymal nodules?,"Upper lobe, right lung"
train_693_a_2.nii.gz,What is the location of the hyperdense stone?,Left kidney upper pole
train_19585_a_1.nii.gz,What is the symmetry status of the hemithorax?,Symmetrical.
train_18465_b_1.nii.gz,What is the position of the nodule in the right lung lower lobe?,Superior segment
train_1232_a_1.nii.gz,What is the position of the operated breast?,Right breast
train_18464_a_1.nii.gz,What is the position of the hyperdense stone?,Upper pole left kidney.
train_2606_a_2.nii.gz,Where are the indistinct ground glass areas observed?,Right lung lower lobe posterobasal
train_19283_b_2.nii.gz,Which lobe shows notable consolidations?,"Middle lobe, right"
train_19283_b_1.nii.gz,Where is the thickening most notable?,"Middle lobe, right"
train_18455_a_2.nii.gz,What lobes exhibit the observed changes?,"Right middle lobe, left lower lobe."
train_2702_b_1.nii.gz,Where is the stone density located?,Right kidney upper pole
train_2697_a_2.nii.gz,What is the position of the largest nodule?,Lower lobe of the left lung.
train_126_a_2.nii.gz,Where is the 5 mm nodule located?,Superior right lung lower lobe.
train_1152_a_2.nii.gz,Where are the calculi located?,Both kidneys
train_2708_a_2.nii.gz,Where is the calcified nodule located?,Lower lobe of left lung.
train_723_a_2.nii.gz,Where is the nodular thickening located?,Right diaphragmatic pleura
train_725_a_2.nii.gz,Where is the nephrolithiasis observed?,Lower pole of left kidney.
train_2707_b_2.nii.gz,Which lung lobe shows more prominent atelectasis?,Lower lobe of right lung
train_19317_a_2.nii.gz,What quadrant is the mass in?,Upper outer quadrant.
train_1185_a_2.nii.gz,Which pleural effusion is present?,Left pleural effusion.
train_1182_a_2.nii.gz,Where is the bulla located?,"Upper lobe, right lung"
train_2674_a_4.nii.gz,Where are the dependent density increases observed?,Lower lobes of both lungs.
train_18430_a_2.nii.gz,What is the location of the staghorn calculi?,Lower pole of left kidney
train_2524_a_4.nii.gz,Where are the calcific plaques observed?,Aortic arch.
train_2525_a_2.nii.gz,Where is the calcific nodule located?,Central upper lobe.
train_2513_a_1.nii.gz,Where are the nodules located in the right lung?,Anterior lower lobe.
train_192_a_1.nii.gz,Where are the nodules located in the right lung?,Middle and lower lobes
train_19239_a_1.nii.gz,What is the position of the observed consolidations?,"Peripheral, subpleural"
train_2517_a_1.nii.gz,Which side shows a thickness of 40 mm of pleural effusion?,Left
train_2535_a_1.nii.gz,Where is the largest lymphadenopathy located?,Subcarinal area.
train_18493_a_1.nii.gz,What is the position of the nodule in the lower lobe?,Posterobasal segment.
train_19231_a_2.nii.gz,Where is the nodule located in the left lung?,Lingular segment.
train_200_b_2.nii.gz,Where is the newly developed nodule located?,Left lung lingular segment.
train_2504_a_2.nii.gz,Where is the nodular density located?,Peripheral subpleural area
train_18501_a_1.nii.gz,Which hemidiaphragm is elevated?,Right
train_2510_a_2.nii.gz,Which organ shows normal aeration?,Both lungs
train_167_a_2.nii.gz,Where is the nonspecific hypodense lesion located?,Right lobe of liver.
train_1260_a_2.nii.gz,What is the position of the focal consolidations?,Upper lobes.
train_2573_a_1.nii.gz,Where is the hypodense lesion located?,Liver left lobe.
train_1240_a_2.nii.gz,Where is the cyst located in the left kidney?,Posterolateral aspect.
train_2598_a_1.nii.gz,Which lobe contains the observed nodule?,Superior lobe.
train_2592_a_2.nii.gz,Where is the nodule situated?,Peripheral subpleural area
train_2559_a_2.nii.gz,Where are the nonspecific nodules located?,Anterior segment of right upper lobe
train_1267_a_3.nii.gz,Where is the nodule in the right lung located?,Apex of right lung.
train_19258_b_1.nii.gz,Where are the nodules located in the left lung?,Upper lobe anterior
train_677_a_2.nii.gz,Where are the nodules located in the right lung?,Middle and lower lobes
train_1720_a_2.nii.gz,Which segment contains the nodule?,Apicoposterior segment
train_18798_a_2.nii.gz,What is the location of the hyperdense stone?,Upper pole of left kidney
train_1961_a_2.nii.gz,What is the location of the ground-glass densities?,Peripheral lung parenchyma.
train_1724_b_2.nii.gz,What is the location of the cortical cyst?,Posterior pole of right kidney.
train_18802_a_1.nii.gz,What is the position of the kidney stones?,Upper poles of kidneys.
train_18803_a_1.nii.gz,What is the location of the nodule in the right lung?,Anterior upper lobe
train_19701_a_2.nii.gz,Which lobes show atelectasis?,"Right middle, left lower."
train_1717_a_1.nii.gz,Where are the pleural effusions located?,Bilateral pleural cavities.
train_1717_b_1.nii.gz,Which lobes show consolidation?,Both lower lobes.
train_383_a_2.nii.gz,What is the position of the liver lesion?,Right lobe posterior
train_1931_a_1.nii.gz,Where are the nodules more prominently observed?,Right upper lobes
train_19707_a_1.nii.gz,Where are the multiple cysts located?,Upper lobes
train_18820_a_2.nii.gz,Where is the solid pulmonary nodule located?,Posterobasal segment of left lung lower lobe.
train_393_a_1.nii.gz,Where are the ground-glass density increases located?,Upper lobes
train_1933_a_1.nii.gz,Where is the consolidation area located?,"Upper lobe, left lung."
train_1742_c_2.nii.gz,Which lobes contain the nodular lesions?,"Upper lobe, middle lobe"
train_1938_a_2.nii.gz,Where is the calculi image located?,Lower pole of left kidney.
train_1957_a_2.nii.gz,Where are the focal ground-glass opacities observed?,"Subpleural areas, right lung."
train_1728_a_2.nii.gz,Where is the consolidation primarily observed?,"Basal segments, left lung lower lobe."
train_18951_c_2.nii.gz,What is the location of the 9 mm nodule?,"Anterior segment, right upper lobe."
train_485_a_2.nii.gz,Where is the cortical hypodense lesion located?,Right kidney upper pole.
train_2016_a_2.nii.gz,Where is the old fracture observed?,Left third rib.
train_1690_a_1.nii.gz,Where is the nodule located in the lung?,"Posterobasal segment, lower lobe."
train_1687_a_2.nii.gz,Where is the diaphragmatic defect located?,Right diaphragm.
train_1991_a_1.nii.gz,Which fissure is the nodule superposed on?,Right major fissure
train_1708_a_2.nii.gz,Where is the homogeneous mass lesion located?,Right lung apical segment.
train_1703_a_2.nii.gz,Where are the atelectatic changes located?,Lung lower lobes
train_19695_b_1.nii.gz,What is the position of the subpleural nodule?,Right lung lower lobe laterobasal segment.
train_1815_a_2.nii.gz,Which side has the observed lymph node?,Right upper paratracheal.
train_18858_a_2.nii.gz,Where is the linear lesion located?,"Anterior segment, right upper lobe."
train_1843_d_1.nii.gz,Where is the fluid observed?,"Major fissure, left hemithorax."
train_1866_a_2.nii.gz,Where are the calculi located?,Left kidney upper pole
train_18872_a_2.nii.gz,What areas show consolidation?,Lower lobes of both lungs.
train_440_d_1.nii.gz,What is the location of the exophytic cyst in the right kidney?,Superior pole
train_18931_a_1.nii.gz,Where are the focal emphysematous areas observed?,"Posterobasal segment, left lung lower lobe."
train_18831_b_2.nii.gz,Where are the bulla formations located?,Both lung apices
train_476_a_1.nii.gz,Where is the calculus located?,Right kidney upper pole
train_1930_a_1.nii.gz,Where are the kidney calculi located?,Upper pole of left kidney
train_477_a_2.nii.gz,Where is the ectasia observed?,Ascending aorta
train_18852_a_1.nii.gz,Which bronchus is affected by the mass?,Left main bronchus.
train_18853_a_1.nii.gz,Which hemidiaphragm is slightly elevated?,Left hemidiaphragm
train_411_a_2.nii.gz,Which clavicle shows a chronic healed fracture?,Right clavicle.
train_1766_a_1.nii.gz,Where is the parenchymal nodule located?,Lower lobe of the left lung.
train_412_b_1.nii.gz,What is the position of the mass?,Left pulmonary hilum.
train_1903_a_1.nii.gz,What is the location of the nodule?,Medial segment of right middle lobe.
train_1900_a_1.nii.gz,What is the condition of the trachea and bronchi?,Open and unobstructed.
train_1537_a_1.nii.gz,What is the condition of the trachea?,Open and unobstructed.
train_2180_a_1.nii.gz,Where are the consolidation areas primarily located?,"Right lung, middle lobe."
train_2175_a_2.nii.gz,Where is the smaller nodule located?,Left laterobasal segment
train_1530_a_2.nii.gz,What is the position of the gallbladder stones?,In the gallbladder.
train_19815_a_1.nii.gz,What is the position of the calcific nodule?,Anterior lower lobe.
train_333_a_1.nii.gz,What is the position of the pleural effusion?,"Bilateral, more prominent on the right."
train_1570_c_1.nii.gz,What is the location of the lesion in the liver?,Right lobe posterior.
train_1570_c_2.nii.gz,Where is the hypodense lesion located in the liver?,Right lobe posterior.
train_2156_a_2.nii.gz,Where are the calculi located?,Left kidney superior pole.
train_544_a_2.nii.gz,Which area shows pleural thickening?,"Upper lobe, right lung"
train_1541_b_2.nii.gz,Where is the effusion located?,Left pleural area.
train_2167_a_1.nii.gz,Where is the nodular hypodense finding located?,Right hilar region.
train_2166_a_2.nii.gz,Which lobes show ground glass densities?,"Right, left lower"
train_19098_a_1.nii.gz,What is the location of the ground glass opacities?,Peripheral subpleural.
train_18664_a_1.nii.gz,Which pleural area has effusion?,Left pleural area
train_1471_b_2.nii.gz,Which lung lobes exhibit consolidation?,Both lower lobes.
train_1471_b_5.nii.gz,Where is the bronchopneumonic involvement observed?,Lower lobe of right lung
train_1505_a_1.nii.gz,Which hemidiaphragm appears elevated?,Left hemidiaphragm
train_312_a_1.nii.gz,What is the status of pleural effusion?,Not observed.
train_18680_a_1.nii.gz,What is the location of the nodule?,Right thyroid lobe.
train_1509_a_2.nii.gz,What is the location of the pulmonary nodule?,"Apical upper lobe, right lung."
train_315_a_2.nii.gz,What is the position of the millimetric nodule?,"Upper lobe, right lung"
train_2226_a_1.nii.gz,What is the location of the observed nodular densities?,Left lung parenchyma
train_2091_a_2.nii.gz,What is the condition of the thoracic aorta?,No dilatation detected.
train_1629_a_1.nii.gz,What is the location of the emphysematous changes?,Apex of upper lobes.
train_19008_a_1.nii.gz,What is the location of the observed lung abnormalities?,Peripheral subpleural.
train_522_a_1.nii.gz,Where is the nodule located in the left lung?,"Superior segment, lower lobe."
train_2042_a_1.nii.gz,What is the status of the pleural effusion?,Not detected.
train_18760_a_1.nii.gz,Where are the ground-glass densities located?,"Lower lobes, peripheral lung."
train_356_a_1.nii.gz,Which lung apex contains a 6 mm lesion?,Left lung apex.
train_1586_a_2.nii.gz,What segment of the lung contains the nodule?,Anterior segment
train_1585_a_2.nii.gz,Where is the pulmonary nodule located?,Inferior lingular segment.
train_19801_c_1.nii.gz,Where is the increased parenchymal density observed?,Upper lobe of right lung.
train_1585_a_1.nii.gz,Where is the pulmonary nodule located?,Inferior lingular segment.
train_2110_a_2.nii.gz,Where is the pulmonary nodule located?,"Left lung, lower lobe"
train_2110_a_1.nii.gz,Where is the pulmonary nodule located?,"Lateral segment, lower lobe."
train_2108_a_2.nii.gz,What is the position of the hypodense nodule?,Posterior right lobe.
train_1593_b_1.nii.gz,What is observed in the pleural space?,Bilateral pleural effusion.
train_343_a_1.nii.gz,What is the position of the pleural effusion?,Anterior left hemithorax.
train_19979_a_2.nii.gz,Which bronchus is narrowed?,Right main bronchus.
train_18361_a_2.nii.gz,Where is the 2 mm calculus observed?,Superior pole of left kidney.
train_906_a_1.nii.gz,Which diaphragm shows slight elevation?,Left hemidiaphragm
train_19523_c_1.nii.gz,Where are the consolidations more prominent?,Upper lobes.
train_2820_a_2.nii.gz,Which segment of the right lung contains the nodule?,Upper lobe anterior.
train_85_a_2.nii.gz,Which axilla has enlarged lymph nodes?,Left axilla.
train_3026_f_2.nii.gz,Where is the new lesion located?,Anterior left upper lobe.
train_3026_f_1.nii.gz,What is the position of the decreased nodule?,Posterior right upper lobe.
train_917_a_1.nii.gz,Where are the opacities located?,"Left lower lobe, right upper lobe"
train_3027_a_1.nii.gz,Where are the bone lesions?,Not present
train_78_a_1.nii.gz,Where are the emphysematous changes located?,Upper lobes
train_2836_a_1.nii.gz,Where is the stable parenchymal nodule located?,Left lung superior segment
train_3038_b_2.nii.gz,Where is the fusiform dilatation observed?,Ascending aorta
train_19979_a_1.nii.gz,Where is the narrowing of the bronchus observed?,Right main bronchus.
train_19394_a_1.nii.gz,What is the condition of the pleural space?,No effusion
train_800_a_1.nii.gz,Where is the hepatosteatosis observed?,Liver
train_1059_a_2.nii.gz,Where is the nodular lesion found?,Right lobe posterior segment.
train_19390_a_1.nii.gz,What is the position of the calcific nodule?,Right thyroid lobe.
train_19390_a_2.nii.gz,What is the position of the calcific nodule?,Right thyroid lobe.
train_819_a_2.nii.gz,Where is the tracheostomy cannula observed?,In the trachea.
train_1102_a_1.nii.gz,What is the size of the observed nodules?,Two millimeters.
train_886_b_1.nii.gz,Where is the largest metastatic lung lesion located?,Upper lobe of left lung.
train_18211_a_1.nii.gz,Which aorta segment shows dilation?,Ascending aorta
train_19555_a_2.nii.gz,Which hemidiaphragm appears elevated?,Left hemidiaphragm.
train_19423_b_2.nii.gz,Where is the splenomegaly located?,Spleen
train_2931_a_1.nii.gz,What area of the right lung is affected?,Upper lobe anterior
train_2984_a_1.nii.gz,Where is the pericardial effusion observed?,Pericardial space.
train_944_a_2.nii.gz,Where is the reduced fracture observed?,Right clavicle.
train_945_a_1.nii.gz,Which lobes show the observed consolidations?,"Upper, lower lobes"
train_2913_c_1.nii.gz,What is the location of the nodules in the left lung?,Inferior lingular segment
train_19415_a_2.nii.gz,What is the location of the gallbladder calculus?,Gallbladder lumen
train_19445_b_2.nii.gz,What is the position of the calcific focus?,In the right thyroid lobe.
train_19538_a_2.nii.gz,What is the location of the calculus detected in the kidney?,Superior pole.
train_53_b_1.nii.gz,Which segment of the right lung contains the nodule?,Anterior segment.
train_19433_a_3.nii.gz,Where are the calcific nodules observed?,Lower lobe of left lung
train_2967_a_2.nii.gz,What is the position of the atelectasis areas?,Both lung lower lobes
train_2967_f_2.nii.gz,Where is the abnormality most dominant?,Upper lobes.
train_958_a_1.nii.gz,What is the condition of the pleural space?,No effusion.
train_18275_a_1.nii.gz,Where are the millimetric nodules located?,Lower lobe laterobasal
train_18295_a_2.nii.gz,Which quadrant contains the lesion in the left breast?,Lower outer quadrant.
train_3016_a_5.nii.gz,Where is the newly developing nodule found?,Posterior right upper lobe.
train_795_a_2.nii.gz,What is the position of the catheter tip?,Right atrium
train_2868_a_2.nii.gz,Which quadrant contains the oval-shaped finding?,Left upper quadrant
train_19447_a_5.nii.gz,Which segments of the left lung lower lobe show ground glass densities?,Posterobasal and laterobasal segments.
train_18312_d_1.nii.gz,Where are the faintly circumscribed ground glass densities?,Upper lobe of left lung
train_19406_a_2.nii.gz,What is the location of the 3 mm diameter nodule?,Left lung laterobasal segment.
train_932_a_2.nii.gz,What is the location of the nodule with amorphous calcifications?,Upper lobe of right lung.
train_1020_a_2.nii.gz,Where is the consolidation located?,Left lung lingular segment
train_19534_a_2.nii.gz,What is the location of the nodules in the right lung?,Lower lobe laterobasal.
train_18249_c_2.nii.gz,What segment shows consolidation in the right lung?,Middle lobe lateral
train_1117_a_2.nii.gz,Which hemidiaphragm is elevated?,Right
train_826_b_2.nii.gz,Which lobe shows consolidations?,"Upper lobe, right lung."
train_3151_a_2.nii.gz,Which lobe contains the hypodense lesion?,Left lobe
train_18405_a_2.nii.gz,Where is the catheter tip located?,Superior vena cava.
train_2731_a_1.nii.gz,Where is the calculus observed?,Left kidney inferior pole
train_1146_e_1.nii.gz,Which area shows patchy consolidation?,Upper lobe of left lung.
train_19564_a_1.nii.gz,What is the position of the subpleural consolidation?,Peripheral location.
train_1126_a_2.nii.gz,Where is the 5 mm nodule located?,Superior segment of left lung lower lobe.
train_3121_a_1.nii.gz,Where in the breast is the lesion found?,Upper outer quadrant.
train_3119_a_2.nii.gz,Where is the scoliosis located?,Thoracic region
train_3121_a_2.nii.gz,Where is the lesion situated in relation to the breast?,Upper outer quadrant.
train_824_a_2.nii.gz,Where is the 3 mm nodule located?,Lower lobe laterobasal segment.
train_2727_a_2.nii.gz,Which segment contains the nodule?,Apicoposterior segment
train_19999_a_2.nii.gz,Which organ shows hepatosteatosis?,Liver
train_16_a_1.nii.gz,Which area shows thickening of the pleura?,Left posterior costal pleura.
train_2715_c_1.nii.gz,What is the condition of the right hemidiaphragm?,Elevated position.
train_1136_a_2.nii.gz,What is the position of the hyperdense stone?,Middle zone of left kidney.
train_2760_a_1.nii.gz,What is the location of the ground glass densities?,Peripheral upper and lower lobes.
train_2729_a_2.nii.gz,Where is the nodular lesion located?,Right lung apical
train_15542_a_1.nii.gz,Which segment of the left lung shows atelectatic changes?,Inferior lingular segment.
train_7618_a_2.nii.gz,Which lung segment shows atelectasis?,Lingula inferior segment.
train_1590_a_2.nii.gz,Where is the calculus found?,Left kidney lower pole calyx.
train_15974_a_1.nii.gz,What is observed in the lower lobe of the left lung?,Subsegmental atelectasis.
train_1815_a_4.nii.gz,Where is the lymph node located?,Right upper paratracheal.
train_537_a_2.nii.gz,What is the condition of the pleural space?,No thickening detected.
train_7525_d_2.nii.gz,What segment of the right lung exhibits atelectatic changes?,Posterobasal segment.
train_19035_a_1.nii.gz,What type of atelectasis is present?,Subsegmental atelectasis.
train_15546_a_2.nii.gz,Which segment of the right lung shows consolidation?,Posterobasal segment
train_1591_b_1.nii.gz,Which segment of the left lung shows atelectasis?,Posterobasal segment.
train_6940_a_1.nii.gz,Which segment contains a 3x2 mm nodule?,Inferior lingular segment
train_7610_d_2.nii.gz,Where is the exophytic lesion located?,Upper pole of right kidney
train_9708_a_1.nii.gz,Which lobes show subsegmental atelectasis?,Right middle lobe and left inferior lingular segment.
train_6940_a_2.nii.gz,Which segment contains a 3x2 mm nodule?,Inferior lingular segment.
train_826_a_2.nii.gz,Which lymph nodes are noted to be enlarged?,"Prevascular, paratracheal, subcarinal."
train_19512_a_2.nii.gz,Where are the atelectatic changes observed?,"Upper lobe, right middle lobe"
train_7643_a_1.nii.gz,Which segment contains a 5x2 mm nodule?,Lingular segment.
train_7643_a_2.nii.gz,What segment contains the nodule in the left lung?,Lingular segment.
train_13572_a_1.nii.gz,What segment of the lung contains the opacities?,Lower lobe posterobasal.
train_7511_a_1.nii.gz,Where is mild dependent atelectasis observed?,Lower lobe basal segments.
train_13572_a_2.nii.gz,What segment contains the opacities?,Lower lobe superior segment
train_7510_a_2.nii.gz,Where are the calculi located?,Middle part of right kidney.
train_15601_b_1.nii.gz,What segment shows linear atelectasis?,Lingula inferior segment.
train_14352_b_1.nii.gz,Where is the cortical lesion located?,Upper pole of right kidney
train_790_b_2.nii.gz,What is the location of the new millimetric nodular lesions?,Lower lobe superior segment.
train_14352_a_1.nii.gz,Where are the noncalcified nodular densities located?,Superior segment of left lung lower lobe.
train_9749_a_2.nii.gz,Where are the nonspecific nodules located?,Right upper lobe anterior segment
train_7511_a_5.nii.gz,Where is the atelectasis observed?,Lower lobe basal segments.
train_6933_a_2.nii.gz,Where are the nonspecific nodules located?,Both lungs.
train_7634_a_2.nii.gz,Which lung segment shows consolidation with air bronchograms?,Left lung inferior lingular segment.
train_1810_a_1.nii.gz,What is the location of the multiple nodules?,Both lungs.
train_1607_a_1.nii.gz,Which lung apexes show density increases?,Both lung apexes.
train_13583_a_1.nii.gz,What area shows ground glass opacities?,Both lungs.
train_15564_b_1.nii.gz,Where is the nodular lesion located in the lung?,Posterior segment of the upper lobe.
train_9742_a_2.nii.gz,Which segment of the right lung is affected?,Posterobasal segment
train_15578_a_2.nii.gz,What is observed in the middle lobe of the right lung?,Subsegmental atelectasis.
train_13586_a_1.nii.gz,Where are the subsegmentary atelectatic changes located?,Left lung inferior lingular segment
train_10142_a_1.nii.gz,What is the condition of the thoracic aorta?,No dilatation
train_9738_a_1.nii.gz,Which lung segments show linear atelectatic changes?,"Middle lobe, inferior lingular segment."
train_15579_a_1.nii.gz,What segment shows atelectasis in the left lung?,Lingular segment
train_10042_a_2.nii.gz,What is the position of the observed opacities?,Bilateral lungs.
train_533_a_1.nii.gz,Which direction is the scoliosis facing?,Right-facing.
train_926_a_2.nii.gz,What is the condition of the pleural space?,No thickening detected.
train_7529_a_2.nii.gz,Which lung regions show bronchiectasis?,Left lingula and lower lobe.
train_10046_a_1.nii.gz,Which segment of the lung contains the nodule?,Apicoposterior segment.
train_9996_a_2.nii.gz,Where are the fracture lines observed?,Right ribs.
train_1799_a_2.nii.gz,Which organs show space-occupying lesions?,None detected
train_6942_a_1.nii.gz,Where is the elevated hemidiaphragm located?,Left hemidiaphragm.
train_10967_a_1.nii.gz,What is the nodule's position relative to the pleura?,Subpleural area
train_7604_a_2.nii.gz,What segment contains the nodule in the left lung?,Apicoposterior segment.
train_15555_b_2.nii.gz,Where are the nonspecific parenchymal nodules located?,Both lungs.
train_6948_a_2.nii.gz,What is the position of the largest metastasis?,Left lung lingular segment.
train_15966_a_1.nii.gz,Which lobes exhibit fibrotic bands?,Lower lobes of both lungs.
train_19731_a_2.nii.gz,Where in the lung is the nodule found?,"Superior segment, lower lobe."
train_15955_a_2.nii.gz,What is the position of the hypodense lesions in the left kidney?,Upper pole posterior
train_14335_a_1.nii.gz,Where are the nonspecific nodules located?,Both lungs.
train_15582_c_1.nii.gz,What segment of the right lung has atelectasis?,Laterobasal segment.
train_9620_a_1.nii.gz,Which lobes exhibit minimal bronchiectasis?,Right middle lobe and left lingula.
train_7793_a_2.nii.gz,Where is the largest lymph node observed?,Left upper paratracheal area.
train_6881_a_2.nii.gz,Which segment of the lung shows atelectatic changes?,Left lung inferior lingular segment.
train_15450_a_2.nii.gz,What segment shows ground glass opacity?,Right lung lower lobe superior segment.
train_9622_a_1.nii.gz,Which lobe shows minimal nodular consolidation?,Lower lobe of right lung
train_13630_a_1.nii.gz,Where are the nodular ground glass density areas predominantly located?,Upper lobes.
train_7807_a_1.nii.gz,Which segment of the left lung is affected?,Inferior lingular segment.
train_559_a_1.nii.gz,Which segment of the left lung shows sequelae changes?,Inferior lingular segment.
train_1521_a_2.nii.gz,What segment shows atelectasis in the left lung?,Lingular segment.
train_15437_a_2.nii.gz,Which lung segments exhibit the observed nodular density increases?,Apicoposterior and inferior lingular segments
train_14072_a_2.nii.gz,What segment contains the nodule?,Apicoposterior segment
train_7801_a_1.nii.gz,Where are the nonspecific nodules located?,Both lungs.
train_13625_a_2.nii.gz,Which segment of the lung contains the calcified nodules?,Left lung lingular segment.
train_15459_a_1.nii.gz,Which area shows consolidation?,Inferior lingular segment.
train_10899_a_2.nii.gz,Where are the parenchymal nodules located?,Both lungs.
train_9633_a_1.nii.gz,Where is the subpleural nodule found?,Posterior lower lobe.
train_10900_b_1.nii.gz,Where are the fibrotic sequelae located?,Basal segments of lower lobes.
train_1540_a_1.nii.gz,What is observed in the middle lobe of the right lung?,Area of atelectasis.
train_10900_b_2.nii.gz,What position is the atelectatic change located in the left lung?,Inferior lingula.
train_19073_b_2.nii.gz,Which segment of the right lung contains bronchiectatic changes?,Upper lobe posterior segment.
train_15452_a_1.nii.gz,What is the location of the millimetric nodules?,Both lungs
train_19073_a_1.nii.gz,Where is the calcified lymph node located?,Left hilar region
train_13626_a_2.nii.gz,What segment of the right lung shows atelectasis?,Middle lobe medial segment.
train_6865_a_2.nii.gz,Which segment of the lung contains the nodular opacities?,Lower lobe basal segment.
train_7838_a_2.nii.gz,Where is the atelectasis located in the left lung?,Lingular segment
train_7838_a_1.nii.gz,What is the position of the atelectasis in the left lung?,Lingular segment.
train_7842_a_2.nii.gz,Which segment shows atelectatic changes?,Lingular segment
train_11268_a_1.nii.gz,What segment contains the nodule?,Superior lingular segment.
train_7842_a_1.nii.gz,Which lung segment shows atelectatic changes?,Lingular segment.
train_561_a_2.nii.gz,Which segment of the left lung shows ground-glass density increase?,Posterobasal segment
train_10879_a_1.nii.gz,Where are the atelectatic changes observed?,Left lung lingular segment.
train_7835_a_1.nii.gz,What segment of the lung is affected?,Lingular segment.
train_829_a_2.nii.gz,Where is the normal aeration observed?,Both lungs
train_14388_d_2.nii.gz,Which lung regions are clear?,Both lung regions.
train_14389_a_2.nii.gz,What segment of the lung is affected?,Superior segment of lower lobe.
train_7856_a_2.nii.gz,What is the position of the dependent ground glass densities?,Lower lobe posterobasal.
train_6860_a_1.nii.gz,What type of atelectasis is present?,Subsegmental atelectasis.
train_1502_a_1.nii.gz,What region contains the nodules?,Lung fields
train_1843_a_1.nii.gz,Which area shows pleural effusions?,Both hemithorax.
train_14389_a_1.nii.gz,Where is the increase in density located in the right lung?,Superior segment of lower lobe.
train_6864_a_2.nii.gz,What segment of the lung shows the abnormality?,Posterobasal segment.
train_9602_a_2.nii.gz,Which segment of the left lung is affected?,Inferior lingular segment
train_14156_a_4.nii.gz,Which segment of the left lung shows focal sequelae changes?,Lingular segment
train_7813_a_2.nii.gz,Where are the focal ground-glass density increases located?,Lower lobes of both lungs.
train_7813_a_1.nii.gz,Which lobes show focal ground-glass density increases?,Lower lobes of both lungs.
train_10888_a_1.nii.gz,Where is the nodule located in the left lung?,Superior segment of lower lobe.
train_14157_a_2.nii.gz,Which segment of the left lung contains the nodule?,Anterobasal segment.
train_828_a_1.nii.gz,What segment shows atelectatic changes?,Inferior lingular
train_6877_a_1.nii.gz,What is the position of the gallbladder in the image?,Not observed.
train_6873_a_2.nii.gz,What is the location of the calculus?,Lower pole.
train_15426_a_2.nii.gz,Which segment shows atelectasis in the left lung?,Lingular segment
train_9609_a_2.nii.gz,What area shows atelectatic change in the left lung?,Inferior lingular segment.
train_10883_a_1.nii.gz,What is the position of the pleural effusion?,Absent.
train_15432_a_1.nii.gz,Where are the patchy densities more prominent?,Lower lobe posterior
train_7820_a_2.nii.gz,Where are the density increases consistent with atelectasis observed?,Right lung upper lobe posterior segment
train_11248_a_1.nii.gz,What is the condition of the pleural effusion?,Not detected.
train_7683_a_2.nii.gz,What segment contains the 3 mm nodule?,Lower lobe posterobasal.
train_7683_a_1.nii.gz,What segment contains the 3 mm nodule?,Lower lobe posterobasal.
train_838_a_1.nii.gz,Which lungs contain the observed nodules?,Both lungs
train_9678_a_2.nii.gz,Which lymph node regions show lymphadenopathy?,"Left lower paratracheal, subcarinal."
train_10930_a_2.nii.gz,Which segment of the left lung shows atelectasis?,Laterobasal segment.
train_7693_a_2.nii.gz,Where are the nodules observed?,Both lungs
train_950_a_2.nii.gz,Which segment of the lung shows focal density increases?,Posterior segment of right lung upper lobe.
train_1561_a_1.nii.gz,Where is the linear atelectasis located?,Left lung inferior lingular.
train_9686_a_2.nii.gz,Where are the subsegmental atelectatic changes located?,Left lung inferior lingular segment
train_13447_b_2.nii.gz,What is the position of the lymph node?,Right upper paratracheal.
train_7656_a_1.nii.gz,What is the position of the structural distortion?,Right lung middle lobe medial segment.
train_14166_d_2.nii.gz,Where is mild atelectasis present?,Right lung lower lobe superior segment
train_19444_a_1.nii.gz,What segment shows cystic bronchiectasis in the left lung?,Lingular segment
train_7665_a_1.nii.gz,Where is the exophytic cortical cyst found?,Left kidney upper pole
train_13444_a_2.nii.gz,Where are the observed nodules located?,Both lungs.
train_7731_a_1.nii.gz,What is the location of the largest calcific nodule?,"Anterior segment, right upper lobe"
train_19065_a_2.nii.gz,What segment of the left lung shows linear sequelae?,Lingular segment.
train_10911_a_1.nii.gz,Which lobes contain dependent densities?,Posterobasal lower lobes
train_10911_a_2.nii.gz,Where are the dependent densities located?,Posterobasal lower lobes
train_7732_a_2.nii.gz,Where is the 8x6 mm nodule located?,Laterobasal left lung.
train_7734_a_1.nii.gz,Which segment of the left lung shows ground-glass density?,Posterobasal segment.
train_19439_b_1.nii.gz,What is the position of the central venous catheter?,Superior vena cava
train_7725_a_2.nii.gz,What is the position of the nodule in the right lung?,Dorsal subpleural area.
train_1544_a_1.nii.gz,Which segment shows atelectasis?,Lingular segment.
train_7719_b_2.nii.gz,What is observed in the pleural space?,No effusion.
train_15476_a_1.nii.gz,Where is the prominent atelectasis located?,"Basal segments, left lung."
train_7727_a_1.nii.gz,Where are the multiple lymph nodes observed?,Right upper paratracheal
train_15477_a_2.nii.gz,What is observed in the middle lobe of the right lung?,Subsegmental atelectasis.
train_9643_a_2.nii.gz,What is the position of the pleural effusion?,Not detected
train_14368_a_2.nii.gz,What lobe contains the nodules?,Superior upper lobe
train_15465_a_1.nii.gz,Which lungs contain nodules?,Both lungs.
train_14160_a_1.nii.gz,What segment of the lung contains the nodule?,Posterobasal segment.
train_7707_a_2.nii.gz,Which segment of the lung shows consolidation?,Upper lobe of the left lung.
train_7707_a_1.nii.gz,Which segment of the lung shows consolidation?,Upper lobe of the left lung.
train_7706_c_2.nii.gz,What is observed in the lower lobe of the left lung?,Area of atelectasis.
train_14360_e_1.nii.gz,Which segment of the lung shows consolidation?,Left lung lingular segment.
train_7703_b_1.nii.gz,Where is the focal ground glass density located?,"Posterior segment, lower lobe."
train_19061_a_2.nii.gz,Where are the minimal atelectatic changes observed?,Right lung middle lobe and left lung upper lobe lingular segment.
train_1547_a_1.nii.gz,Which adrenal glands show thickening?,Both adrenal glands.
train_10916_a_1.nii.gz,What segment shows atelectasis?,Left inferior lingular segment.
train_19508_a_3.nii.gz,Which lung segments show dependent atelectasis?,Lower lobe basal segments.
train_7712_b_2.nii.gz,Which segments show consolidation in the lower lobes?,Posterobasal segments.
train_953_a_1.nii.gz,Which side shows bilateral gynecomastia?,Both sides
train_14196_a_1.nii.gz,Where is the atelectasis consolidation?,Left lung inferior lingular segment.
train_14242_a_2.nii.gz,What is the position of the larger nodules?,"Lateral segment, left lung lower lobe"
train_14238_a_2.nii.gz,Which segment contains a calcific nodule?,Posterobasal segment of lower lobe.
train_13524_a_2.nii.gz,Which part of the left kidney contains the lesion?,Upper pole posterior.
train_1713_d_2.nii.gz,Which area has the largest lymphadenopathy?,Subcarinal area.
train_1714_a_1.nii.gz,Which segments show dependent atelectasis?,Posterobasal segments
train_18960_a_2.nii.gz,What is the position of the largest lymph node?,Right upper paratracheal area.
train_1713_d_1.nii.gz,Where is the largest lymphadenopathy observed?,Subcarinal area.
train_11121_b_1.nii.gz,Where are the areas of increased density located in the left lung?,Lower lobe anterobasal segment.
train_7075_b_2.nii.gz,What type of atelectasis is present?,Subsegmental atelectasis.
train_15886_a_2.nii.gz,Where is the calcific nodule located?,Lower lobe superior segment.
train_7214_d_2.nii.gz,Where is the atelectasis located?,Lingular segment.
train_18925_a_1.nii.gz,Where are the fibroatelectatic changes located?,"Middle lobe, inferior lingular"
train_13519_a_1.nii.gz,Where is the larger lymphadenopathy observed?,Subcarinal area
train_813_a_2.nii.gz,Where are the irregularly circumscribed masses located?,"Posterobasal segment, right lung."
train_14235_a_1.nii.gz,What is present in the lower lobe of the right lung?,Subsegmental atelectasis.
train_18925_a_2.nii.gz,Which segment of the left lung shows fibroatelectatic changes?,Inferior lingular segment
train_15785_a_1.nii.gz,What is observed in the right lung lower lobe?,Subsegmental atelectasis
train_7255_a_1.nii.gz,What is the position of the hypodense lesion in the spleen?,Centrally located
train_15741_a_2.nii.gz,Where is the atelectasis specifically found?,Lingular segment
train_7280_c_2.nii.gz,What is the location of the nodule in the right lung?,Posterior segment
train_11088_a_1.nii.gz,Where is the pericardial effusion observed?,Not observed
train_15898_a_1.nii.gz,Which lobes show more prominent emphysematous changes?,Upper lobes
train_19722_a_1.nii.gz,Where are the pleuroparenchymal changes located?,Upper lobe apical segments.
train_14192_a_1.nii.gz,Which segment of the right lung is affected?,Posterobasal segment.
train_19696_a_1.nii.gz,Which lobe contains a calcific nodule?,Posterior right lower lobe
train_9855_d_1.nii.gz,Where is the hypodense lesion located in the adrenal gland?,Superior left adrenal gland.
train_18923_c_2.nii.gz,What is the location of the largest lymph node?,Subcarinal region
train_1711_b_1.nii.gz,What is the location of the fat-density lesion?,Left diaphragmatic crus
train_811_a_1.nii.gz,What is the position of the ground glass densities?,Posterior lower lobes.
train_1761_a_1.nii.gz,Where are the ground glass areas located?,Lower lobe basal segments.
train_1708_d_2.nii.gz,Where is the nodular mass located in the lung?,Upper lobe apical segment.
train_9854_a_1.nii.gz,What area shows focal consolidation?,Left lung inferior lingular segment
train_7265_a_2.nii.gz,Which segment shows increased density consistent with atelectasis?,Inferior lingular segment
train_9854_a_2.nii.gz,Which segment shows focal consolidation?,Inferior lingular.
train_866_a_1.nii.gz,Which hemithorax shows pleural effusion-thickening?,Neither hemithorax.
train_15845_a_1.nii.gz,Which lobes show atelectasis?,"Right middle lobe, left lingula"
train_7142_a_2.nii.gz,Where is the bronchiectasis specifically located?,"Anterior segment, right upper lobe."
train_19520_a_1.nii.gz,Where is the atelectasis located?,Lingula inferior segment.
train_865_a_2.nii.gz,Where is the nonspecific nodule located?,Apical right lung
train_1743_a_1.nii.gz,What is the location of the nonspecific mediastinal lymph node?,Right upper paratracheal area.
train_11152_a_2.nii.gz,Which segment shows ground glass appearances in the left lung?,Lingular segment
train_7135_a_2.nii.gz,Which bronchus is invaded by the mass lesion?,Right main bronchus.
train_14214_d_2.nii.gz,Where are the fibrotic changes located?,Upper lobe apex.
train_9899_a_2.nii.gz,Where is the subsegmental atelectasis located?,Anterior lower lobe
train_9902_a_2.nii.gz,Which segment contains the nonspecific nodule?,"Anterior segment, left upper lobe."
train_7145_a_2.nii.gz,Which segment of the left lung lower lobe contains consolidation?,Superior segment.
train_10083_a_1.nii.gz,Where are the subpleural nodules located in the right lung?,Upper lobe posterior segment.
train_18932_a_1.nii.gz,Where are the atelectatic changes specifically noted?,Lower lobe posterobasal segment
train_7116_a_1.nii.gz,What areas show focal consolidation?,Not detected.
train_14208_a_1.nii.gz,What is observed in both hemithorax?,No pleural effusion
train_9911_a_1.nii.gz,What segments of the left lung lower lobe are affected?,Anteromedial and lateral segments.
train_14133_a_2.nii.gz,What is the location of the largest lymph node?,Right inferior paratracheal.
train_14200_a_2.nii.gz,Which lung segments show atelectasis?,Right upper lobe anterior segment and left upper lobe lingular segment.
train_7187_b_2.nii.gz,Where are the consolidations located in the left lung?,Lingula.
train_7091_a_2.nii.gz,What segment of the right lung shows atelectasis changes?,Lower lobe laterobasal.
train_15811_a_1.nii.gz,Which lung segment contains the parenchymal nodule?,Left lung lingula.
train_873_b_2.nii.gz,Which lung segment shows consolidation?,Inferior lingular segment
train_7211_a_2.nii.gz,What segment of the lung contains the nodule?,Posterobasal segment
train_11132_a_1.nii.gz,What is the condition of the thoracic aorta?,No dilatation
train_9888_c_2.nii.gz,Which side has the catheter?,Right anterior chest wall.
train_9924_a_1.nii.gz,Where is the lymph node located?,Left upper paratracheal area.
train_818_a_2.nii.gz,What is observed in both lungs?,Bilateral pleural effusion.
train_1658_a_2.nii.gz,What type of bronchial change is present?,Cylindrical bronchiectasis
train_14181_a_2.nii.gz,What segment of the left lung shows consolidation?,Posterobasal segment
train_7439_a_1.nii.gz,What type of plaques are observed in the upper lobes?,Calcified pleural plaques.
train_1656_a_2.nii.gz,Which hemithorax shows pleural effusion-thickening?,Neither hemithorax.
train_7451_a_2.nii.gz,Where are the parenchymal nodules located?,Lung lower lobe
train_14300_a_1.nii.gz,Where is the largest lesion located in the right lung?,Lower lobe mediobasal segment.
train_518_f_2.nii.gz,Which segment shows linear atelectatic changes?,Left lung lingular segment
train_18910_b_4.nii.gz,What is the position of the lymphadenomegaly?,Right upper paratracheal.
train_11043_a_1.nii.gz,What fractures are present?,Right rib fractures
train_825_a_2.nii.gz,What is the location of the nodule in the right lung?,Posterior segment
train_7408_a_1.nii.gz,Where are the linear atelectatic changes observed?,Posterobasal lower lobes
train_9786_b_1.nii.gz,Which organ shows steatosis?,Liver
train_14297_c_1.nii.gz,Where is the largest lymphadenomegaly located?,Subcarinal area.
train_7424_a_1.nii.gz,Where are the symmetrical hemithoraxes located?,Both sides of thorax.
train_14297_c_2.nii.gz,Where is the largest lymphadenomegaly located?,Subcarinal area.
train_7423_a_2.nii.gz,Which segment shows subsegmental atelectasis?,"Laterobasal segment, right lower lobe."
train_14297_b_1.nii.gz,Which bronchus shows significant luminal narrowing?,Left main bronchus.
train_7423_a_1.nii.gz,What segment shows subsegmental atelectasis?,"Laterobasal segment, lower lobe."
train_11009_c_1.nii.gz,Which segment shows a consolidative area?,Lingular segment
train_14309_c_1.nii.gz,What is the position of the central venous catheter?,Right atrium.
train_9976_a_1.nii.gz,What is the position of the largest subpleural nodule?,"Apical level, left lung upper lobe."
train_15605_b_1.nii.gz,Which lung segment shows pneumonic consolidation?,"Superior segment, left lower lobe."
train_9768_c_2.nii.gz,What is observed in the anterior segment of the left lung upper lobe?,Peribronchial thickening
train_1651_a_1.nii.gz,Where are the consolidations located?,Lower lobe superior segments
train_18910_a_2.nii.gz,Which segment of the lung shows bronchiectasis?,Lingular segment
train_7464_a_2.nii.gz,Which segments of the left lung show peripheral subpleural changes?,Lateral and posterobasal segments.
train_15632_a_2.nii.gz,What is the position of the largest metastatic mass?,Mediobasal segment of left lung lower lobe.
train_518_i_1.nii.gz,What is the position of the newly emerged infiltration area?,Right lung middle lobe lateral segment.
train_15635_a_1.nii.gz,Where are the linear passive atelectatic changes observed?,Left lung inferior lingular segment.
train_18999_a_1.nii.gz,Where are the fibrotic changes located?,Upper lobe apex
train_18910_b_1.nii.gz,What is the location of the largest lymph node?,Right upper paratracheal.
train_518_h_1.nii.gz,What is the location of the newly emerging infiltration?,Left lung lingular segment.
train_11020_a_1.nii.gz,What area shows focal consolidation?,Posterior upper lobe.
train_1648_a_1.nii.gz,What segment shows atelectasis?,Left lung inferior lingular.
train_14177_a_2.nii.gz,Which lung lobe shows pleuroparenchymal fibrotic sequelae bands?,Apical upper lobe
train_1792_a_2.nii.gz,Which segment of the left lung shows atelectatic changes?,Superior lingular segment.
train_1792_a_1.nii.gz,Which lung segment shows atelectatic changes?,Superior lingular segment.
train_14097_a_1.nii.gz,Which lung lobes show atelectasis?,Right upper and lower lobes.
train_7337_a_5.nii.gz,What segment of the liver contains the largest hypodense lesion?,Left lobe lateral segment.
train_1773_a_1.nii.gz,What is the position of the pleural effusion?,Not detected.
train_10116_a_1.nii.gz,What is the location of the hypodense nodular lesion?,Upper pole of right kidney
train_7347_a_1.nii.gz,Which lung segment shows atelectasis?,Left lung lingular segment.
train_15688_f_1.nii.gz,What area shows atelectasis?,Basal segments of the lower lobe.
train_7040_b_2.nii.gz,Which segment of the right lung lower lobe is affected?,Superior segment.
train_7040_b_1.nii.gz,Which segment of the left lung lower lobe is affected?,Laterobasal segment.
train_19695_b_2.nii.gz,Which segment contains the subpleural parenchymal nodule?,Right lung lower lobe laterobasal segment.
train_9837_a_1.nii.gz,Where is the linear fibroatelectasis located?,Left lung inferior lingular segment
train_15717_a_1.nii.gz,What is observed in the right pleural space?,Free pleural effusion.
train_1701_a_1.nii.gz,Which lung lobes show atelectatic changes?,Right middle lobe and lower lobes.
train_9829_a_5.nii.gz,Which segment of the left lung shows consolidation with air bronchograms?,Posterobasal segment
train_14104_b_1.nii.gz,Where is the dilatation noted?,Main pulmonary artery
train_9800_a_1.nii.gz,What is the condition of the trachea and main bronchi?,Clear lumens.
train_18912_a_1.nii.gz,What is the location of the subpleural striations?,Lower lobe posterobasal segments.
train_14107_a_2.nii.gz,What is the condition of the lung parenchyma?,Normal aeration.
train_1677_a_2.nii.gz,What region contains the largest lymphadenopathy?,Subcarinal area
train_802_a_1.nii.gz,Where is the lymph node located?,Right upper paratracheal.
train_15933_a_1.nii.gz,What is the location of the ground glass densities?,Peripheral and subpleural.
train_1677_a_1.nii.gz,What area has the largest lymphadenopathy?,Subcarinal area
train_7395_c_1.nii.gz,What area shows subpleural ground glass opacity?,"Superior segment, right lung lower lobe."
train_11205_a_2.nii.gz,What segment shows vascular enlargement?,"Basal segment, right lung lower lobe."
train_1775_a_2.nii.gz,Where is the malignant nodule located?,Superior lingular segment.
train_13544_a_1.nii.gz,Where is the reticulonodular density increase located?,"Left lung, lower lobe"
train_7359_a_1.nii.gz,Where is the calcified pleural plaque observed?,Right diaphragmatic pleura.
train_11064_a_1.nii.gz,What segment contains the nodule in the left lung?,Posterobasal segment
train_15682_a_1.nii.gz,Where are the fibrotic changes located?,Upper lobe apex
train_7377_a_2.nii.gz,What segment of the lung contains the nodule?,Lateral basal segment.
train_19692_a_2.nii.gz,Which hemithorax shows pleural effusion-thickening?,Neither hemithorax.
train_11057_a_1.nii.gz,What is the position of the bronchiectasis?,Lower lobe posterolateral segments.
train_13866_a_1.nii.gz,Where are nodular ground-glass densities observed?,Lower lobes of both lungs
train_19366_a_1.nii.gz,Which segment of the left lung is affected?,Upper lobe lingular
train_10546_a_2.nii.gz,What is the location of the hypodense lesions?,Left lobe of liver
train_9271_d_1.nii.gz,Which segment shows linear atelectasis?,Inferior lingular segment
train_8688_a_2.nii.gz,What area shows consolidation in the right lung?,Middle lobe medial segment.
train_8675_b_1.nii.gz,What areas show atelectasis?,"Right middle lobe, left lingula"
train_9273_b_2.nii.gz,Where is the enlarged lymph node located?,Right lower paratracheal area.
train_9273_a_2.nii.gz,Where is the enlarged lymph node located?,Right lower paratracheal area.
train_13863_a_2.nii.gz,Which segment contains the subpleural nodule?,Left lung laterobasal segment.
train_14911_a_2.nii.gz,Which lung segment shows linear atelectasis?,Right middle lobe medial segment.
train_14941_a_2.nii.gz,Which segment of the right lung shows abnormality?,Anterior segment of upper lobe.
train_14942_a_1.nii.gz,Which segment of the lung shows consolidation?,Left lung lingular
train_10573_a_1.nii.gz,Which lobe contains the largest nodule?,Middle lobe of the right lung.
train_1281_c_2.nii.gz,What is the position of the smaller nodule relative to the larger nodule?,Medial
train_9278_b_1.nii.gz,Which organ shows a decrease in density consistent with steatosis?,Liver.
train_1281_b_2.nii.gz,What is the position of the calcified nodule?,Peripheral location.
train_9279_a_1.nii.gz,Where is the fissure-based nodule located?,"Basal segment, left lung."
train_14580_a_2.nii.gz,What segment contains the observed nodule?,Apicoposterior segment.
train_10309_a_1.nii.gz,Where is the pleural effusion most prominent?,Left pleura.
train_8660_a_1.nii.gz,Which lung shows pleuroparenchymal fibroatelectasis changes?,Middle lobe of the right lung.
train_14604_a_2.nii.gz,What is the location of the largest lymph node?,Right upper paratracheal area.
train_1260_a_1.nii.gz,What is observed in the right pleural space?,Free pleural effusion
train_14605_a_2.nii.gz,Where is the calcific nodule located?,Right thyroid lobe.
train_1261_b_2.nii.gz,Where is the large aneurysm found?,Descending thoracic aorta.
train_14877_a_1.nii.gz,Where are the mild atelectatic changes located?,Left lung inferior lingula
train_8770_a_1.nii.gz,Where are the implants located?,Both breasts
train_9237_a_2.nii.gz,Which segment of the left lung contains a nodule?,Posterior basal segment.
train_10505_a_2.nii.gz,Where are the dependent atelectatic changes observed?,Posterior lower lobes
train_1267_a_2.nii.gz,Where is the consolidation area located?,Lower lobe medial segment.
train_1267_a_4.nii.gz,What area shows consolidation?,Mediobasal segment of left lung.
train_14594_c_1.nii.gz,Which segment contains the largest nodule?,Left lung lower lobe laterobasal segment.
train_1105_a_1.nii.gz,Where is the larger lesion located in the right lung?,Lower lobe posterobasal segment.
train_13877_a_1.nii.gz,Where is the ground glass appearance located?,Left lung lingular segment.
train_14888_a_1.nii.gz,Where is the ectasia located?,Ascending aorta
train_8740_a_1.nii.gz,Which segment of the left lung is affected?,Upper lobe lingular segment.
train_8518_a_2.nii.gz,What is the location of the hypodense fluid density lesion?,Right kidney upper pole.
train_14014_c_1.nii.gz,Where are the mild atelectatic changes observed?,Inferior lingula
train_8545_a_1.nii.gz,Which segment of the left lung shows consolidation?,Lower lobe superior segment
train_10605_a_2.nii.gz,Where is the liver lesion situated?,Left lobe lateral segment.
train_8531_c_1.nii.gz,Where is the catheter extending?,Superior vena cava.
train_13823_a_2.nii.gz,Which segment of the left lung contains the observed nodule?,Apicoposterior segment.
train_8536_a_1.nii.gz,Where is a nodule located in the right lung?,Upper lobe posterior segment.
train_13806_a_1.nii.gz,Where are the nodular ground glass densities primarily located?,Bilateral lung lower lobes
train_15021_a_1.nii.gz,What area shows atelectatic changes?,Inferior lingula.
train_14018_a_1.nii.gz,What segment contains the largest parenchymal nodule?,Left lower lobe laterobasal
train_19382_a_1.nii.gz,Where is the nodule located in the left lung?,Apicoposterior segment
train_15021_a_2.nii.gz,Where are the atelectatic changes located?,Inferior lingula
train_8493_a_1.nii.gz,Where are the ground glass consolidations located?,Lung lower lobes.
train_19221_a_1.nii.gz,What is the position of the largest lymphadenopathy?,Subcarinal area.
train_13811_a_1.nii.gz,Which lobes show abnormalities?,"Right middle, both lower"
train_8493_a_2.nii.gz,Where are the focal nodular consolidations located?,Lung lower lobes
train_19221_a_2.nii.gz,Where is the largest lymphadenopathy observed?,Subcarinal area.
train_1070_a_1.nii.gz,What is the location of the patchy densities?,Peripheral lung regions
train_8607_b_1.nii.gz,Which bronchus is associated with the mass lesion?,Right lower lobe bronchus.
train_14011_a_1.nii.gz,Where is the calcified nodule found in the left lung?,Anterior segment of upper lobe.
train_19603_a_1.nii.gz,Which segment of the right lung lower lobe has consolidations?,Posterior segment.
train_14564_a_2.nii.gz,Where is the hypodense lesion in the spleen?,"Upper pole, posterior"
train_13842_b_2.nii.gz,Where are the nodular ground-glass densities located?,Peripheral subpleural areas.
train_1299_a_2.nii.gz,What part of the lungs shows consolidation?,Posterior lower lobes
train_9293_a_2.nii.gz,Which lung segments show subsegmental atelectasis?,Left lower lobe posterobasal segments.
train_1088_a_1.nii.gz,Where is the largest lymphadenopathy located?,Right lower paratracheal area.
train_10578_a_1.nii.gz,What segment of the left lung shows consolidation?,Posterobasal segment
train_662_c_2.nii.gz,Where is the most developed consolidation area?,Upper lobe of left lung.
train_9296_a_2.nii.gz,Which segment shows compression atelectasis?,Posterior segment of the left lung lower lobe.
train_662_c_1.nii.gz,Where is the aneurysmatic dilatation noted?,Descending aorta.
train_19374_a_2.nii.gz,Where are the bronchiectatic changes in the left lung?,Inferior lingula
train_10600_a_1.nii.gz,Where are the fibroatelectatic changes observed?,Left lung inferior lingular segment
train_14993_b_2.nii.gz,What is the position of the central venous catheter?,Superior vena cava.
train_9311_a_1.nii.gz,Which lobe shows the most prominent ground glass areas?,Lower lobe of right lung
train_13837_a_1.nii.gz,Where is the hypodense nodule located?,Left thyroid lobe.
train_8581_a_2.nii.gz,Where is the slight increase in parenchymal density located?,Basal segment of right lung.
train_660_b_2.nii.gz,Which lobe contains the bronchopneumonic infiltration?,Lower lobe superior segment.
train_19374_a_1.nii.gz,What segments show atelectatic changes?,"Middle lobe, lingula"
train_8571_a_2.nii.gz,What region contains nodules in the left lower lobe?,Posterobasal region
train_8569_a_1.nii.gz,What area shows subsegmental atelectasis?,Left lung inferior lingular segment.
train_10591_a_2.nii.gz,Which lung lobe exhibits more prominent atelectatic changes?,Left lingula
train_10427_a_2.nii.gz,Which lung segment contains the bleb formation?,Right lung lower lobe laterobasal segment
train_9142_a_2.nii.gz,Which segment of the left lung shows fibrotic changes?,Anterior basal segment.
train_19575_a_1.nii.gz,Which lung segments show prominent cystic bronchiectasis?,"Right upper lobe, left lingular segment"
train_8992_a_3.nii.gz,What is the location of the hypodense fluid density lesion?,Left kidney upper pole.
train_9142_a_1.nii.gz,Which segment of the left lung shows fibrotic changes?,Anterior basal segment.
train_8981_a_2.nii.gz,Where is the increase in pleuroparenchymal density noted?,Left lung inferior lingular segment
train_14761_a_2.nii.gz,What is observed in the left kidney?,Two calculi.
train_1170_a_1.nii.gz,Where is the calculi located?,Right kidney middle zone
train_8998_a_1.nii.gz,Where is the hepatic lesion situated?,Left lobe of liver.
train_19304_a_1.nii.gz,What is the location of the hypodense stable lesion?,Left lobe of liver.
train_8952_a_2.nii.gz,What segment of the right lung is most prominently affected?,Lower lobe posterobasal segment.
train_1139_a_1.nii.gz,What is the condition of the trachea?,Midline
train_10364_a_2.nii.gz,What is the position of the suspicious consolidation area?,Left lung lingula inferior.
train_14770_a_2.nii.gz,Which vessel shows fusiform dilation?,Ascending aorta
train_13921_a_2.nii.gz,What is observed in the upper lobe of the left lung?,Thick band-shaped atelectasis.
train_13929_a_2.nii.gz,Where are the areas of consolidation located?,Upper lobe posterior segment
train_8969_a_2.nii.gz,Where are the passive atelectatic changes located?,"Right middle lobe, left inferior lingula."
train_1188_b_1.nii.gz,Where is the central venous catheter positioned?,Right atrium.
train_9148_a_2.nii.gz,Which lung segments show passive-linear atelectatic changes?,"Middle lobe, inferior lingular segment"
train_8969_a_1.nii.gz,What is the condition of the lymph nodes?,No enlargement detected
train_9082_a_1.nii.gz,Which segment contains the largest nodule in the left lung?,Lower lobe posterobasal segment.
train_9080_a_1.nii.gz,What is the location of the largest lymph node?,Right lower paratracheal.
train_10392_b_1.nii.gz,Where are the fibrotic densities more prominent?,Right lung lower lobes
train_9088_a_1.nii.gz,Which lymph nodes are observed?,None detected
train_10392_a_2.nii.gz,What is the location of the largest lymph node?,Upper paratracheal region
train_1157_a_1.nii.gz,Where are the cavitary lesions located in the right lung?,Upper lobe posterior segment
train_9076_a_2.nii.gz,Which area of the lung contains the nodule?,Anterior segment lateral subpleural.
train_19315_a_1.nii.gz,Where is the calcific nodule located?,Left lung apex
train_10379_a_2.nii.gz,Where are the linear atelectatic changes located?,"Middle lobe, inferior lingular segment"
train_9073_a_1.nii.gz,What segment contains the subpleural nodule?,Apicoposterior segment.
train_9115_b_1.nii.gz,Where are the calcified nodules located?,Superior segment of lower lobe
train_9075_a_1.nii.gz,Where is the lymph node located?,Right upper paratracheal.
train_9115_b_2.nii.gz,What is the location of the calcified nodules?,"Superior segment, right lung"
train_10387_a_2.nii.gz,Where is the effusion observed?,Both pleural spaces
train_10384_a_1.nii.gz,Which hemithorax shows pleural effusion-thickening?,Neither hemithorax.
train_9093_a_2.nii.gz,Where is the stable nodule located?,Anterior upper lobe
train_9091_a_1.nii.gz,Which region contains the largest lymph node?,Subcarinal region
train_1153_a_1.nii.gz,What is the condition of the pleural effusion in both hemithorax?,Not detected.
train_719_a_1.nii.gz,Which lymph nodes are detected?,No lymph nodes
train_14674_b_2.nii.gz,What is the position of the splenomegaly?,Left upper quadrant.
train_19307_b_1.nii.gz,What is the location of the largest lymphadenopathy?,Right paratracheal area.
train_1163_d_2.nii.gz,Where is the hypodense lesion located in the kidney?,Upper pole
train_1146_d_1.nii.gz,What area is obstructed by the malignant mass?,Right lung lower lobe bronchi.
train_1163_a_1.nii.gz,What segment shows consolidations in the right lung?,Middle lobe lateral segment
train_14679_a_2.nii.gz,Where is the consolidation in the right lung?,Middle lobe medial segment
train_13954_b_2.nii.gz,What is the status of pleural effusion?,Not observed.
train_13954_a_2.nii.gz,What is the location of the high-density mass lesion?,Medial crus of left adrenal gland.
train_10379_a_1.nii.gz,Where are the linear atelectatic changes located?,"Middle lobe, inferior lingular segment"
train_13953_a_1.nii.gz,What is the position of the atelectatic changes?,Left inferior lingular
train_1163_a_2.nii.gz,Which segment of the right lung has consolidations?,Middle lobe lateral segment.
train_690_a_2.nii.gz,What is the location of the hypodense nodule?,Right thyroid lobe.
train_1229_a_1.nii.gz,Where are the consolidation areas located?,Lower lobe basal segments
train_8836_a_1.nii.gz,Which segment contains a 7 mm nodule?,Left lung lower lobe laterobasal segment.
train_8838_a_2.nii.gz,Which fissure is adjacent to the observed lesion?,Horizontal fissure.
train_14626_a_1.nii.gz,What is the position of the solid lesion in the left lung?,Medial segment of lower lobe.
train_10348_a_2.nii.gz,Where are the hypodense lesions located?,"Liver, right lobe"
train_9194_a_1.nii.gz,Which segment of the left lung contains a nodule?,Inferior lingular
train_13988_b_2.nii.gz,Where is the 2 mm diameter subpleural nodule located?,Lower lobe superior segment.
train_8851_a_2.nii.gz,What is the condition of the thoracic aorta?,No dilatation
train_9197_a_2.nii.gz,What is observed in the middle lobe of the right lung?,Subsegmental atelectasis.
train_8797_a_2.nii.gz,Which lung lobes show abnormalities?,"Right, left upper lobe"
train_8796_a_2.nii.gz,What is the location of the largest pulmonary nodule?,Peripheral subpleural
train_9228_a_2.nii.gz,What is the location of the hypodense nodular lesion?,Upper pole of right kidney.
train_8793_b_2.nii.gz,Where are the opacities primarily observed?,Bilateral lungs.
train_8817_a_2.nii.gz,Which segment of the left lung lower lobe contains the opacity?,Posterior segment.
train_9224_a_1.nii.gz,Where are the parenchymal sequelae located?,"Right middle lobe, left inferior lingular"
train_1207_a_2.nii.gz,Which segment of the left lung shows consolidation?,Lower lobe basal.
train_19289_a_1.nii.gz,Where are the lymphadenopathies located?,Mediastinum and hilar regions.
train_8924_b_2.nii.gz,"Where is the fibrotic, nonfunctional parenchyma observed?",Upper lobe of the right lung.
train_10451_a_2.nii.gz,Which segment of the left lung has atelectasis?,Laterobasal segment.
train_14790_a_2.nii.gz,Where are the implants observed?,Both breasts
train_14636_a_1.nii.gz,What segment shows atelectatic changes in the left lung?,Inferior lingular
train_8925_a_2.nii.gz,What type of atelectasis is observed?,Subsegmental atelectasis
train_1196_b_1.nii.gz,Where is the pleuroparenchymal fibroatelectasis observed?,Lower lobe basal segments.
train_9170_a_2.nii.gz,What is the position of the stable larger lymphadenopathy?,Subcarinal area
train_9170_b_2.nii.gz,What is the position of the largest lymphadenopathy?,Subcarinal region.
train_19337_b_2.nii.gz,What is the condition of the trachea and bronchi?,Both are open.
train_10360_b_2.nii.gz,Where are the metastatic mass lesions located?,Left and right adrenal glands.
train_8909_a_1.nii.gz,Where is the calculus found?,Upper pole of right kidney
train_1128_a_2.nii.gz,Where is the consolidative area located in the left lung?,Lower lobe posterobasal.
train_8880_a_2.nii.gz,Which segment shows focal consolidation?,Inferior lingular.
train_8885_a_2.nii.gz,Which segment of the left lung has linear subsegmental atelectasis?,Lingula inferior segment.
train_14629_b_2.nii.gz,Which lobe contains the focal nodular ground-glass density?,Lower left lobe.
train_698_a_2.nii.gz,What is the condition of pleural effusion?,Not detected
train_19284_a_1.nii.gz,Which direction is the scoliosis facing?,Left-facing
train_1329_b_1.nii.gz,What type of density is observed in the right lung lower lobe?,Ground-glass density.
train_8070_a_1.nii.gz,Which lobes show volume loss?,Right middle and upper lobes
train_14436_a_2.nii.gz,Where are the mild atelectatic changes observed?,Left lung inferior lingula
train_10778_a_2.nii.gz,Which main bronchi are open?,Both main bronchi.
train_1441_a_1.nii.gz,What segment shows atelectasis?,Lingula inferior segment
train_19136_b_1.nii.gz,Where are the ground glass density increases located in the left lung?,Lower lobe laterobasal.
train_8073_a_1.nii.gz,What is the position of the hypodense lesion?,"Lateral segment, left lobe."
train_1442_a_2.nii.gz,Where are the lymphadenopathies located?,Left supraclavicular fossa.
train_8074_a_1.nii.gz,What segments of the lungs are affected?,Upper lobe anterior segments
train_1455_a_2.nii.gz,Where are the atelectasis areas located?,"Left lung, inferior ligular segment"
train_15309_b_1.nii.gz,Which lung segment shows a focal ground-glass area?,Anterior segment of left lung upper lobe.
train_1454_a_2.nii.gz,What area is the nodule in the right lung located?,Anterior subpleural area
train_8047_a_1.nii.gz,Where is the nonspecific hypodense lesion located?,Right lobe of liver
train_1456_a_1.nii.gz,Where are the calcified lymph nodes located?,Subcarinal area
train_1457_a_1.nii.gz,Which lung segments are affected?,Lower lobe basal segments.
train_15321_a_1.nii.gz,Where is the nonspecific parenchymal nodule located?,"Mediobasal segment, lower lobe."
train_8031_a_2.nii.gz,Which lobe shows signs of infective pathology?,Middle lobe of the right lung.
train_997_a_2.nii.gz,Where is the previous pneumonic consolidation area located?,Lower lobe of left lung
train_14433_a_1.nii.gz,Where is the pericardial effusion observed?,Not observed.
train_9531_b_2.nii.gz,Which segment of the left lung has focal consolidation?,Laterobasal segment.
train_15240_a_2.nii.gz,What segment contains the calcified nodules?,Upper lobe apicoposterior segment.
train_8134_a_1.nii.gz,Where is the hypodense lesion located in the liver?,Right lobe posterior segment.
train_9478_a_2.nii.gz,Which lung lobes show bronchiectasis?,"Right middle lobe, both lower lobes."
train_10744_k_1.nii.gz,Which segment shows focal consolidation?,Superior segment of left lung lower lobe.
train_9479_a_2.nii.gz,What segment of the left lung shows atelectasis?,Apicoposterior segment.
train_9484_a_1.nii.gz,Where are the minimal bronchiectasis observed?,"Upper lobe, right"
train_9481_a_2.nii.gz,Which segment shows peripheral patchy consolidation?,Left lung inferior lingular segment
train_14443_a_2.nii.gz,Which lung shows linear atelectasis?,Middle lobe of the right lung.
train_10758_a_1.nii.gz,Where are the parenchymal nodules located?,Left lung inferior lingular segment
train_1438_e_1.nii.gz,What is the position of the prominent lymph nodes?,Left supraclavicular area.
train_15268_a_1.nii.gz,What area is affected in the left lung?,Inferior lingula.
train_13710_b_1.nii.gz,What is the distribution of the infiltrates?,Bilateral.
train_1008_a_1.nii.gz,Where is the ectasia observed?,Ascending aorta.
train_10845_a_1.nii.gz,Where is the nonspecific hypodense lesion located?,Lateral right lobe of liver
train_14067_c_1.nii.gz,Where is the nodule with calcifications located?,Left lung lingula
train_14067_b_2.nii.gz,Where is the stable mass located?,Lingula inferior segment
train_10844_a_1.nii.gz,Where is the mass located?,Anterior mediastinum.
train_1486_b_2.nii.gz,Which effusion is more prominent?,Right pleural effusion
train_19661_a_1.nii.gz,Which segment of the left lung has a nonspecific nodule?,Lower lobe posterobasal segment.
train_7905_a_2.nii.gz,Where are the nodular lesions located?,Left hilar region.
train_7904_b_1.nii.gz,Which segment contains the largest nodule on the left lung?,Lower lobe anterobasal segment.
train_9586_a_1.nii.gz,Which segment of the lung lower lobe is affected?,Basal segment
train_7902_a_2.nii.gz,What is the condition of the thoracic aorta?,No dilatation
|