Spaces:
Running
Running
File size: 175,169 Bytes
9754890 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 |
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/Users/satoc/miniforge3/envs/gradio/lib/python3.12/site-packages/sentence_transformers/cross_encoder/CrossEncoder.py:13: TqdmExperimentalWarning: Using `tqdm.autonotebook.tqdm` in notebook mode. Use `tqdm.tqdm` instead to force console mode (e.g. in jupyter console)\n",
" from tqdm.autonotebook import tqdm, trange\n"
]
}
],
"source": [
"from OpenAITools.JRCTTools import DfPostProcess, get_matched_df\n",
"from sentence_transformers import SentenceTransformer, util\n",
"import pandas as pd"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/Users/satoc/miniforge3/envs/gradio/lib/python3.12/site-packages/transformers/tokenization_utils_base.py:1617: FutureWarning: `clean_up_tokenization_spaces` was not set. It will be set to `True` by default. This behavior will be deprecated in transformers v4.45, and will be then set to `False` by default. For more details check this issue: https://github.com/huggingface/transformers/issues/31884\n",
" warnings.warn(\n"
]
}
],
"source": [
"exclusive_words = [\"triple negative\", \"double positive\",\"Malignant\",\"recurrent\",\"IDH wild-type\", \"High-Grade\", \"Low-grade\"]\n",
"csv_loc = '../ClinicalTrialCSV/JRCT20241215Cancer.csv'\n",
"df = pd.read_csv(csv_loc, index_col=0)\n",
"# モデルのロード\n",
"model = SentenceTransformer('pritamdeka/S-PubMedBert-MS-MARCO')\n"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"#processed_df = DfPostProcess(exclusive_words, model, csv_loc=csv_loc)\n",
"processed_df = DfPostProcess(exclusive_words, model, dataframe=df)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"processed_df.to_csv(\"../ClinicalTrialCSV/JRCT20241215CancerPost.csv\")"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [],
"source": [
"def get_matched_df(basedf, query, model, threshold=0.5):\n",
" # queryをベクトル化(テンソル化)しCPUへ移動\n",
" query_vec = model.encode(query, convert_to_tensor=True).cpu()\n",
"\n",
" matched_indices = []\n",
" for idx, target_vec_str in enumerate(basedf['TargetVec']):\n",
" # CSVから読み込んだ時点でTargetVecはPythonリストを文字列化したものになっているため、\n",
" # ここでliteral_evalでリストに戻します。\n",
" if isinstance(target_vec_str, str):\n",
" # target_vec_strは\"[[...], [...]]\"のようなリスト形式\n",
" target_list = ast.literal_eval(target_vec_str) # リストに変換\n",
" target_vecs = torch.tensor(target_list) # リストからTensorへ\n",
" else:\n",
" # 万が一既にTensorの場合はそのまま使用\n",
" target_vecs = target_vec_str\n",
"\n",
" # 必要であればCPUへ移動(通常はすでにCPU上のはず)\n",
" \"\"\"if target_vecs[0].is_cuda:\n",
" target_vecs = target_vecs.cpu()\"\"\"\n",
"\n",
" # コサイン類似度を計算\n",
" cosine_scores = util.cos_sim(query_vec, target_vecs).squeeze()\n",
"\n",
" # thresholdを超えるスコアが1つでもあればマッチと判断\n",
" if (cosine_scores >= threshold).any():\n",
" matched_indices.append(idx)\n",
"\n",
" # 条件を満たした行を抽出\n",
" matched_df = basedf.iloc[matched_indices]\n",
" return matched_df"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[[-0.12602144479751587,\n",
" -0.7141546607017517,\n",
" -0.4860573410987854,\n",
" -0.6787610650062561,\n",
" -0.5019499659538269,\n",
" -0.13430769741535187,\n",
" -0.6577554941177368,\n",
" 0.6076976656913757,\n",
" 0.12889647483825684,\n",
" 0.46750736236572266,\n",
" 0.018368367105722427,\n",
" 0.43061959743499756,\n",
" 0.1905517727136612,\n",
" -0.32873567938804626,\n",
" -0.43094030022621155,\n",
" -0.21434563398361206,\n",
" 0.07665695995092392,\n",
" 0.27581971883773804,\n",
" 0.5334398150444031,\n",
" 0.1360682100057602,\n",
" 0.42274555563926697,\n",
" 0.310781329870224,\n",
" -0.09085263311862946,\n",
" -0.13402250409126282,\n",
" -0.7091479301452637,\n",
" 0.3295823633670807,\n",
" -0.017893081530928612,\n",
" 0.14529234170913696,\n",
" 0.33790770173072815,\n",
" -0.5387213230133057,\n",
" 0.1965356171131134,\n",
" 0.43226656317710876,\n",
" 0.08384066075086594,\n",
" 1.2179083824157715,\n",
" -0.1406896710395813,\n",
" -0.19285115599632263,\n",
" 0.2328663468360901,\n",
" -0.2901802659034729,\n",
" 0.21684598922729492,\n",
" 0.08382049202919006,\n",
" 0.8460990190505981,\n",
" -0.24980926513671875,\n",
" 0.25551164150238037,\n",
" 0.2103319764137268,\n",
" 0.15624524652957916,\n",
" 0.22409290075302124,\n",
" 0.40557602047920227,\n",
" -0.3770213723182678,\n",
" 0.20077230036258698,\n",
" -0.6148147583007812,\n",
" -0.09054853767156601,\n",
" -0.21558518707752228,\n",
" 0.660815954208374,\n",
" 0.5446515083312988,\n",
" -0.4986187517642975,\n",
" -0.2815835773944855,\n",
" 0.1792205423116684,\n",
" 0.22410951554775238,\n",
" -0.7459888458251953,\n",
" 0.1693430244922638,\n",
" -0.016773631796240807,\n",
" 0.6000563502311707,\n",
" 0.06864045560359955,\n",
" 0.2390291392803192,\n",
" 0.12970894575119019,\n",
" 0.2297009378671646,\n",
" -0.4995357096195221,\n",
" -0.33177852630615234,\n",
" -0.4573627710342407,\n",
" -0.06518586724996567,\n",
" 0.03891660273075104,\n",
" 0.17271095514297485,\n",
" 0.12027536332607269,\n",
" -0.10431554913520813,\n",
" 0.19360071420669556,\n",
" -0.33982399106025696,\n",
" -0.00645984522998333,\n",
" -0.3594757318496704,\n",
" -0.11395157873630524,\n",
" -0.18740680813789368,\n",
" -0.2704046666622162,\n",
" 0.12293929606676102,\n",
" -0.09605947136878967,\n",
" -0.10634169727563858,\n",
" -0.06050420552492142,\n",
" -0.2133704572916031,\n",
" 0.30162614583969116,\n",
" 0.04430658370256424,\n",
" 0.09314816445112228,\n",
" 0.1548132449388504,\n",
" -0.02835201285779476,\n",
" 0.039710190147161484,\n",
" -0.44119298458099365,\n",
" -0.2537086009979248,\n",
" 0.2379680722951889,\n",
" -0.17252890765666962,\n",
" 0.3960283100605011,\n",
" -0.17634695768356323,\n",
" -0.08040083199739456,\n",
" -0.1298833042383194,\n",
" 0.04181212559342384,\n",
" 0.09067272394895554,\n",
" 0.038354337215423584,\n",
" 0.18320509791374207,\n",
" -0.5645931959152222,\n",
" -0.5657212734222412,\n",
" 0.14629441499710083,\n",
" -0.30270087718963623,\n",
" -0.6864641904830933,\n",
" 0.04715975746512413,\n",
" -0.3644023537635803,\n",
" -0.32979172468185425,\n",
" 0.1014089584350586,\n",
" -0.526332676410675,\n",
" -0.013059106655418873,\n",
" -0.28596898913383484,\n",
" 0.05446254834532738,\n",
" -0.25270017981529236,\n",
" -0.19637764990329742,\n",
" 0.47938019037246704,\n",
" 0.1177106574177742,\n",
" -0.3588416278362274,\n",
" 0.22560517489910126,\n",
" -0.005159219726920128,\n",
" 0.11563891917467117,\n",
" 0.0043479506857693195,\n",
" 0.3798690438270569,\n",
" -0.1336328685283661,\n",
" 0.401653915643692,\n",
" 0.1997891366481781,\n",
" 0.04152151569724083,\n",
" -0.06718429923057556,\n",
" -0.26847168803215027,\n",
" -0.12703749537467957,\n",
" -0.4307255744934082,\n",
" 0.1849222481250763,\n",
" 0.21112705767154694,\n",
" -0.14073066413402557,\n",
" 0.1918361783027649,\n",
" -0.06121741980314255,\n",
" -0.01670803874731064,\n",
" -0.0723605677485466,\n",
" -0.4453851878643036,\n",
" -0.0702662318944931,\n",
" -0.03498619794845581,\n",
" -0.03536796197295189,\n",
" -0.11984459310770035,\n",
" -0.09918621182441711,\n",
" -0.5489485859870911,\n",
" 0.02854590304195881,\n",
" -0.6871364116668701,\n",
" -0.5113005042076111,\n",
" 0.47055870294570923,\n",
" -0.2758708596229553,\n",
" 0.04426101595163345,\n",
" 0.06668119877576828,\n",
" 0.1975831538438797,\n",
" -0.05194515734910965,\n",
" -0.014332271181046963,\n",
" 0.34682825207710266,\n",
" 0.830260157585144,\n",
" -0.0906871035695076,\n",
" 0.19789999723434448,\n",
" -0.458773672580719,\n",
" -0.11396896839141846,\n",
" 0.1294064223766327,\n",
" -0.08783095329999924,\n",
" -0.2488825023174286,\n",
" -0.07718512415885925,\n",
" 0.00714835524559021,\n",
" -0.10039379447698593,\n",
" -0.28280022740364075,\n",
" 0.07932525873184204,\n",
" -0.4092657268047333,\n",
" 0.1945122927427292,\n",
" -0.7011146545410156,\n",
" 0.04783907160162926,\n",
" 0.2724194824695587,\n",
" -0.19740448892116547,\n",
" -0.11292748898267746,\n",
" 0.04419387876987457,\n",
" -1.2466992139816284,\n",
" 0.0545806884765625,\n",
" -0.285482257604599,\n",
" 0.20300622284412384,\n",
" -0.27049651741981506,\n",
" 0.30075809359550476,\n",
" 0.17970803380012512,\n",
" 0.13615088164806366,\n",
" -0.03503970801830292,\n",
" 0.3314637541770935,\n",
" -0.12426257133483887,\n",
" 0.2102392613887787,\n",
" 0.4342147409915924,\n",
" 0.06444328278303146,\n",
" 0.10012660175561905,\n",
" 0.38557788729667664,\n",
" 0.5523271560668945,\n",
" 0.05513232201337814,\n",
" 0.003449599025771022,\n",
" -0.5921303629875183,\n",
" 0.21603728830814362,\n",
" 0.12925566732883453,\n",
" 0.43849560618400574,\n",
" 0.1070593073964119,\n",
" 0.2530350089073181,\n",
" -0.29785165190696716,\n",
" 0.017411328852176666,\n",
" 0.10014281421899796,\n",
" -0.2432931810617447,\n",
" -0.04419923201203346,\n",
" 0.11925174295902252,\n",
" -0.5888891220092773,\n",
" -0.22216542065143585,\n",
" -0.19013060629367828,\n",
" 0.19721995294094086,\n",
" -0.22614914178848267,\n",
" -0.1556583046913147,\n",
" 0.4855418801307678,\n",
" 0.23194153606891632,\n",
" -0.022312866523861885,\n",
" 0.14078770577907562,\n",
" 0.1696862131357193,\n",
" -0.3648751974105835,\n",
" 0.0754263773560524,\n",
" 0.08876100927591324,\n",
" -0.25089913606643677,\n",
" 0.07604232430458069,\n",
" -0.40176573395729065,\n",
" -0.283502459526062,\n",
" 0.1998007446527481,\n",
" -0.6933411359786987,\n",
" 0.5429620742797852,\n",
" 0.46431881189346313,\n",
" -0.1672714650630951,\n",
" -0.2780211269855499,\n",
" -0.6028540730476379,\n",
" 0.025176597759127617,\n",
" -0.31208255887031555,\n",
" 0.2623409032821655,\n",
" -0.28749552369117737,\n",
" -0.42228177189826965,\n",
" -0.5806496739387512,\n",
" 0.0467679463326931,\n",
" 0.18168124556541443,\n",
" 0.2843245267868042,\n",
" 0.15282505750656128,\n",
" 1.0263004302978516,\n",
" 0.19057077169418335,\n",
" 0.3111707270145416,\n",
" -0.20582912862300873,\n",
" -0.09190928936004639,\n",
" 0.32176291942596436,\n",
" 0.01169245783239603,\n",
" -0.30767062306404114,\n",
" 0.15014736354351044,\n",
" -0.11223019659519196,\n",
" -0.3615647554397583,\n",
" 0.1490207016468048,\n",
" -0.288573294878006,\n",
" -0.23007450997829437,\n",
" -0.19590577483177185,\n",
" 0.34845107793807983,\n",
" 0.33362528681755066,\n",
" -0.4242759943008423,\n",
" 0.1223439872264862,\n",
" 0.138687863945961,\n",
" -0.26181715726852417,\n",
" -0.18719792366027832,\n",
" 0.2683289051055908,\n",
" -0.36537885665893555,\n",
" 0.4969222843647003,\n",
" 0.5520139336585999,\n",
" -0.3807309865951538,\n",
" -0.5320466160774231,\n",
" -0.428510457277298,\n",
" -0.17233173549175262,\n",
" -0.45984601974487305,\n",
" 0.16499164700508118,\n",
" -0.96857750415802,\n",
" -0.06510382890701294,\n",
" -0.25435128808021545,\n",
" 0.11488322168588638,\n",
" 0.050752513110637665,\n",
" 0.13854660093784332,\n",
" 0.13035327196121216,\n",
" 0.13104279339313507,\n",
" -0.16508759558200836,\n",
" -0.31847965717315674,\n",
" -0.6493499279022217,\n",
" 0.16290873289108276,\n",
" 0.13201597332954407,\n",
" -0.36207315325737,\n",
" 0.3510308861732483,\n",
" 0.18211208283901215,\n",
" 0.006193806882947683,\n",
" 0.02034868486225605,\n",
" 0.2610360383987427,\n",
" 0.08036158978939056,\n",
" -0.06207280606031418,\n",
" -0.1869772970676422,\n",
" -0.07909541577100754,\n",
" -0.3966165781021118,\n",
" -0.22777584195137024,\n",
" 0.12282141298055649,\n",
" 0.31047964096069336,\n",
" 0.25585898756980896,\n",
" 0.9724617004394531,\n",
" -0.1868322640657425,\n",
" -0.48708289861679077,\n",
" 0.044405996799468994,\n",
" 0.8022868037223816,\n",
" -0.2681969106197357,\n",
" -0.05838184803724289,\n",
" -0.09741927683353424,\n",
" -1.1750959157943726,\n",
" -0.23988325893878937,\n",
" -0.2250550091266632,\n",
" -0.20485372841358185,\n",
" -0.2177574634552002,\n",
" 0.04695509374141693,\n",
" -0.017833106219768524,\n",
" -0.004558755084872246,\n",
" -0.1409299522638321,\n",
" -0.4174005091190338,\n",
" 0.1863528937101364,\n",
" 0.42617613077163696,\n",
" -0.04078112170100212,\n",
" 0.1566355973482132,\n",
" -0.21063385903835297,\n",
" -0.08970245718955994,\n",
" -0.03911541402339935,\n",
" -0.2710658311843872,\n",
" -0.4018775522708893,\n",
" 0.011371608823537827,\n",
" 0.12112695723772049,\n",
" 0.4758349061012268,\n",
" 0.13304799795150757,\n",
" 0.0671299546957016,\n",
" -0.4526594877243042,\n",
" 0.48682913184165955,\n",
" -0.3403550982475281,\n",
" -0.1615578979253769,\n",
" 0.39011895656585693,\n",
" -0.3032895624637604,\n",
" -0.597567617893219,\n",
" 0.43292319774627686,\n",
" -0.18735116720199585,\n",
" 0.06438340246677399,\n",
" 0.28467050194740295,\n",
" 0.132755845785141,\n",
" -0.13792654871940613,\n",
" -0.44805780053138733,\n",
" -0.056477613747119904,\n",
" 0.5293381810188293,\n",
" 0.6345031261444092,\n",
" 0.5352311730384827,\n",
" -0.40237200260162354,\n",
" 0.3529936969280243,\n",
" 0.5364596843719482,\n",
" -0.23888863623142242,\n",
" 0.3601911962032318,\n",
" 0.01700914092361927,\n",
" 0.07204718887805939,\n",
" -0.19037729501724243,\n",
" 0.24906820058822632,\n",
" 0.31772956252098083,\n",
" -0.4152489900588989,\n",
" 0.2575426697731018,\n",
" -0.013344109058380127,\n",
" 0.15195627510547638,\n",
" -0.05490539222955704,\n",
" -0.14369237422943115,\n",
" 0.45117247104644775,\n",
" 0.16562730073928833,\n",
" -0.2515348196029663,\n",
" -0.3636992871761322,\n",
" 0.5099271535873413,\n",
" -0.23936790227890015,\n",
" -0.36827754974365234,\n",
" 0.2266562283039093,\n",
" -0.03396214544773102,\n",
" 0.21759441494941711,\n",
" -0.10454607754945755,\n",
" -0.1942852884531021,\n",
" -0.16547748446464539,\n",
" 0.06321174651384354,\n",
" 0.8520941734313965,\n",
" -0.010652079246938229,\n",
" -0.2622360587120056,\n",
" 0.10559138655662537,\n",
" -0.22415775060653687,\n",
" -0.28376129269599915,\n",
" 0.7073342800140381,\n",
" -0.18223486840724945,\n",
" -0.2636104226112366,\n",
" 0.39141833782196045,\n",
" -0.4653652012348175,\n",
" 0.19876977801322937,\n",
" 0.16182416677474976,\n",
" -0.17091339826583862,\n",
" -0.026396654546260834,\n",
" -0.047233641147613525,\n",
" 0.08662894368171692,\n",
" 0.22704461216926575,\n",
" -0.3040776252746582,\n",
" 0.17515778541564941,\n",
" 0.313981294631958,\n",
" -0.2190503180027008,\n",
" 0.11662120372056961,\n",
" 0.30494627356529236,\n",
" 0.11921829730272293,\n",
" -0.29367896914482117,\n",
" -0.19361670315265656,\n",
" 0.2056964486837387,\n",
" 0.28309500217437744,\n",
" -0.2080502212047577,\n",
" 0.2720191776752472,\n",
" -0.18716448545455933,\n",
" -0.3920838534832001,\n",
" 0.7225678563117981,\n",
" 0.4177919626235962,\n",
" 0.7789713740348816,\n",
" 0.41907012462615967,\n",
" -11.641731262207031,\n",
" 0.3660218119621277,\n",
" 0.5530075430870056,\n",
" -0.16211949288845062,\n",
" -0.05637197941541672,\n",
" 0.22002443671226501,\n",
" 0.23758891224861145,\n",
" -0.47760412096977234,\n",
" 0.19608861207962036,\n",
" -0.259152889251709,\n",
" -0.43364423513412476,\n",
" -0.25423362851142883,\n",
" -0.05357019603252411,\n",
" 0.12492852658033371,\n",
" -0.15426324307918549,\n",
" -0.007385904435068369,\n",
" 0.06343364715576172,\n",
" -0.8095794320106506,\n",
" 0.19390791654586792,\n",
" -0.08980251103639603,\n",
" 0.3759259581565857,\n",
" 0.011823058128356934,\n",
" -0.08320900797843933,\n",
" 0.17621400952339172,\n",
" -0.36094775795936584,\n",
" -0.27691423892974854,\n",
" 0.20501713454723358,\n",
" 0.20407667756080627,\n",
" 0.27105948328971863,\n",
" 0.1331809163093567,\n",
" -0.052927978336811066,\n",
" 0.03757071495056152,\n",
" -0.3216475248336792,\n",
" 0.03687451779842377,\n",
" -0.32478830218315125,\n",
" -0.39639824628829956,\n",
" -0.08463717997074127,\n",
" 0.003661362687125802,\n",
" 0.16066569089889526,\n",
" -0.0451054573059082,\n",
" -0.46703222393989563,\n",
" 0.03154708817601204,\n",
" -0.3668876886367798,\n",
" 0.22743283212184906,\n",
" 0.24960078299045563,\n",
" 0.6049240827560425,\n",
" 0.6655563116073608,\n",
" 0.9040587544441223,\n",
" 0.13431811332702637,\n",
" 0.22309833765029907,\n",
" 0.030080832540988922,\n",
" -0.7836287021636963,\n",
" 0.17607314884662628,\n",
" -0.6450658440589905,\n",
" 0.3657878637313843,\n",
" 0.12382756173610687,\n",
" 0.6386221647262573,\n",
" -0.9202437996864319,\n",
" 0.06069759652018547,\n",
" -0.5555225014686584,\n",
" -0.22793759405612946,\n",
" 0.5118421912193298,\n",
" -0.001684104441665113,\n",
" 0.23792573809623718,\n",
" -0.30380621552467346,\n",
" -0.10223044455051422,\n",
" 0.2398999035358429,\n",
" 0.00042391609167680144,\n",
" 0.18785013258457184,\n",
" -0.10286397486925125,\n",
" 0.2314961701631546,\n",
" -0.2988714873790741,\n",
" 0.6257789134979248,\n",
" 0.2241252213716507,\n",
" -0.8578519821166992,\n",
" 0.1720920354127884,\n",
" 0.23349176347255707,\n",
" -0.1295863389968872,\n",
" 1.5785470008850098,\n",
" 0.05885341390967369,\n",
" -0.13793013989925385,\n",
" 0.06914228945970535,\n",
" 0.0008069131872616708,\n",
" -0.75132155418396,\n",
" -0.44711220264434814,\n",
" 0.13937492668628693,\n",
" 0.057183682918548584,\n",
" 0.41267135739326477,\n",
" 0.0033610595855861902,\n",
" 0.4132635295391083,\n",
" -0.18512599170207977,\n",
" -0.4599449336528778,\n",
" -0.06225401908159256,\n",
" 0.051035862416028976,\n",
" 0.1492413878440857,\n",
" 0.6035064458847046,\n",
" -0.7949504256248474,\n",
" -0.04336424171924591,\n",
" 0.040069565176963806,\n",
" 0.10059989988803864,\n",
" -0.5937477946281433,\n",
" 0.017200792208313942,\n",
" -0.21330690383911133,\n",
" -0.4625603258609772,\n",
" 0.49063703417778015,\n",
" -0.03941044956445694,\n",
" 0.26431310176849365,\n",
" -0.3457089960575104,\n",
" -0.29630887508392334,\n",
" 0.2616633176803589,\n",
" -0.47394976019859314,\n",
" 0.20047037303447723,\n",
" 0.26562023162841797,\n",
" 0.038273975253105164,\n",
" -0.10693095624446869,\n",
" 0.06388095021247864,\n",
" 0.21666431427001953,\n",
" 0.5651407837867737,\n",
" -0.617942750453949,\n",
" -0.3628433048725128,\n",
" -0.16021524369716644,\n",
" 0.2522251307964325,\n",
" 0.1426587700843811,\n",
" 0.1527710258960724,\n",
" -0.38561126589775085,\n",
" 0.3938286006450653,\n",
" -0.6636739373207092,\n",
" -0.024683451279997826,\n",
" 0.04174550995230675,\n",
" 0.20186032354831696,\n",
" 0.2848939895629883,\n",
" 0.10539589822292328,\n",
" 0.14261603355407715,\n",
" 0.2575880289077759,\n",
" -0.37592369318008423,\n",
" -0.5571041107177734,\n",
" -0.7221404314041138,\n",
" -0.28993210196495056,\n",
" 0.16914679110050201,\n",
" -0.3400459587574005,\n",
" -0.059686362743377686,\n",
" -0.17866116762161255,\n",
" -0.17740628123283386,\n",
" -0.017083436250686646,\n",
" 0.30778852105140686,\n",
" -0.15124095976352692,\n",
" 0.5517131090164185,\n",
" 0.24106137454509735,\n",
" -0.15253561735153198,\n",
" -0.03405691683292389,\n",
" -0.17470857501029968,\n",
" -0.307629257440567,\n",
" -0.08136006444692612,\n",
" 0.07343447208404541,\n",
" -0.03699152544140816,\n",
" -0.60802161693573,\n",
" -0.3886663615703583,\n",
" 0.019294461235404015,\n",
" 0.05182376131415367,\n",
" 0.2529626190662384,\n",
" 0.12911827862262726,\n",
" 0.006090935785323381,\n",
" -0.143777534365654,\n",
" -0.16727063059806824,\n",
" 0.4231288731098175,\n",
" 0.3111613094806671,\n",
" -0.008014354854822159,\n",
" -0.1578742414712906,\n",
" -0.3802776336669922,\n",
" 0.026808248832821846,\n",
" 0.00902531947940588,\n",
" 0.20443004369735718,\n",
" 0.45525598526000977,\n",
" -0.15057595074176788,\n",
" -0.320708692073822,\n",
" -0.22298690676689148,\n",
" -0.3138014078140259,\n",
" 0.9430319666862488,\n",
" -0.09270063042640686,\n",
" -0.5397879481315613,\n",
" 0.15933360159397125,\n",
" 0.5853502750396729,\n",
" -0.1411401331424713,\n",
" -0.16852116584777832,\n",
" 0.041057661175727844,\n",
" 0.04863010346889496,\n",
" -0.28179752826690674,\n",
" -0.4492214024066925,\n",
" 0.44329798221588135,\n",
" 0.09168578684329987,\n",
" 0.1944640427827835,\n",
" 0.5672486424446106,\n",
" 0.06213292106986046,\n",
" -0.17098897695541382,\n",
" 0.49922192096710205,\n",
" 0.1532013714313507,\n",
" -0.521971583366394,\n",
" -0.04557052627205849,\n",
" -0.566899836063385,\n",
" 0.13631096482276917,\n",
" 0.2048439383506775,\n",
" -0.08758935332298279,\n",
" 0.44949638843536377,\n",
" 0.11763448268175125,\n",
" -0.07289949804544449,\n",
" 0.05881036818027496,\n",
" 0.0875275582075119,\n",
" 0.9216785430908203,\n",
" 0.0036582748871296644,\n",
" 0.17673027515411377,\n",
" 0.4978952407836914,\n",
" 0.18155363202095032,\n",
" -0.26638272404670715,\n",
" 0.4387916028499603,\n",
" 0.27743399143218994,\n",
" 0.3531687557697296,\n",
" 0.3635578155517578,\n",
" -0.2282429039478302,\n",
" -0.25657063722610474,\n",
" -0.20252855122089386,\n",
" 0.18979160487651825,\n",
" 0.5512166619300842,\n",
" -0.5728986263275146,\n",
" -0.6579872369766235,\n",
" -0.13151712715625763,\n",
" 0.5779194831848145,\n",
" -0.24567089974880219,\n",
" 0.3982071876525879,\n",
" -0.1831027865409851,\n",
" 0.3432382345199585,\n",
" 0.5585726499557495,\n",
" -0.7810022830963135,\n",
" -0.03768403083086014,\n",
" 0.04190274700522423,\n",
" 0.17182129621505737,\n",
" -0.08290223032236099,\n",
" -0.3106067478656769,\n",
" -0.02757103368639946,\n",
" -0.20305363833904266,\n",
" -0.17085212469100952,\n",
" 0.44926583766937256,\n",
" 0.2651204466819763,\n",
" -0.7063924074172974,\n",
" 0.0040161218494176865,\n",
" 0.538738489151001,\n",
" -0.7175710201263428,\n",
" 0.00266255927272141,\n",
" -0.367984414100647,\n",
" 0.1352824717760086,\n",
" 0.4294840097427368,\n",
" 0.012930288910865784,\n",
" -0.1591913104057312,\n",
" 0.029734637588262558,\n",
" -0.26147210597991943,\n",
" -0.5985291004180908,\n",
" 0.16545331478118896,\n",
" 0.7523907423019409,\n",
" -0.11937597393989563,\n",
" 0.29320940375328064,\n",
" -0.1285240352153778,\n",
" -0.3446337878704071,\n",
" -0.3038196265697479,\n",
" -0.6602084636688232,\n",
" -0.17042358219623566,\n",
" -0.03485802188515663,\n",
" -0.038960982114076614,\n",
" -0.04650453105568886,\n",
" -0.11615480482578278,\n",
" -0.2969321608543396,\n",
" 0.4172949194908142,\n",
" -0.23840096592903137,\n",
" 0.549351692199707,\n",
" 0.48940181732177734,\n",
" 0.40984830260276794,\n",
" 0.032258838415145874,\n",
" -0.02910117246210575,\n",
" -0.26369336247444153,\n",
" -0.026652680709958076,\n",
" 0.06347940862178802,\n",
" 0.556433379650116,\n",
" -0.2075355052947998,\n",
" -0.5438015460968018,\n",
" 0.26629185676574707,\n",
" -0.012004186399281025,\n",
" -0.45762553811073303,\n",
" 0.08487716317176819,\n",
" -0.6645241975784302,\n",
" 0.24914710223674774,\n",
" -0.003804960288107395,\n",
" -0.11379166692495346,\n",
" 0.26097190380096436,\n",
" 0.23348967730998993,\n",
" 0.11794446408748627,\n",
" -0.3582167625427246,\n",
" 0.35632628202438354,\n",
" 0.33869490027427673,\n",
" -0.004989998880773783,\n",
" 0.5828813314437866,\n",
" 0.013686640188097954,\n",
" 0.27335697412490845,\n",
" -0.08144529908895493,\n",
" 0.3100639581680298,\n",
" -0.9879754185676575,\n",
" -0.16503331065177917,\n",
" -0.15192830562591553,\n",
" -0.10439898073673248,\n",
" -0.3457978367805481,\n",
" -0.2984788715839386,\n",
" 0.3824712038040161,\n",
" 0.3030012249946594,\n",
" 0.6237614750862122,\n",
" 0.3150714337825775,\n",
" -0.25217998027801514,\n",
" -0.8148496150970459,\n",
" -0.2404962182044983,\n",
" 0.028981877490878105,\n",
" 0.18406447768211365,\n",
" -0.2693490982055664,\n",
" 0.09202884137630463,\n",
" -0.13908571004867554,\n",
" 0.5293334126472473,\n",
" -0.6449658870697021,\n",
" -0.42141273617744446,\n",
" 0.1133817583322525,\n",
" 0.2779797315597534,\n",
" -0.29404231905937195,\n",
" 0.7621667385101318,\n",
" -0.27009135484695435,\n",
" 0.01250946894288063,\n",
" 0.1036948561668396,\n",
" 0.177698016166687,\n",
" 0.2230219841003418,\n",
" 0.6738936901092529,\n",
" 0.08511170744895935,\n",
" -0.7695906758308411,\n",
" -0.09056327491998672,\n",
" -0.017167508602142334,\n",
" -0.2241983413696289,\n",
" 0.20083363354206085,\n",
" -0.5374873280525208,\n",
" 0.19177475571632385,\n",
" 0.2337803840637207,\n",
" 0.6204757690429688,\n",
" 0.4827491044998169],\n",
" [-0.0648207738995552,\n",
" -0.5601714849472046,\n",
" -0.7288309931755066,\n",
" -0.5139883756637573,\n",
" -0.4731457531452179,\n",
" -0.28251105546951294,\n",
" -0.637114405632019,\n",
" 0.3680819272994995,\n",
" 0.045674167573451996,\n",
" 0.6082571148872375,\n",
" 0.3300197124481201,\n",
" 0.5521803498268127,\n",
" 0.06800225377082825,\n",
" 0.306252658367157,\n",
" -0.5155851244926453,\n",
" -0.09731762856245041,\n",
" -0.018736526370048523,\n",
" 0.16821962594985962,\n",
" 0.07122861593961716,\n",
" 0.40810292959213257,\n",
" 0.6084005832672119,\n",
" 0.4005392789840698,\n",
" 0.025223687291145325,\n",
" 0.29978662729263306,\n",
" -0.41458040475845337,\n",
" 0.4650879502296448,\n",
" -0.2117035835981369,\n",
" 0.12217026203870773,\n",
" -0.055797163397073746,\n",
" -0.5042157173156738,\n",
" 0.037849001586437225,\n",
" 0.41748836636543274,\n",
" 0.019253989681601524,\n",
" 0.8930042386054993,\n",
" -0.2438955157995224,\n",
" -0.1834959238767624,\n",
" 0.16205483675003052,\n",
" -0.11209163069725037,\n",
" 0.3852382302284241,\n",
" -0.4638136029243469,\n",
" 0.5172094106674194,\n",
" 0.037708789110183716,\n",
" 0.11516875773668289,\n",
" 0.3036099672317505,\n",
" 0.48244917392730713,\n",
" 0.1837286651134491,\n",
" 0.5318113565444946,\n",
" -0.6997917890548706,\n",
" 0.05923162400722504,\n",
" -0.5341982841491699,\n",
" -0.2732718586921692,\n",
" -0.08089789748191833,\n",
" 0.2940991520881653,\n",
" 0.22292102873325348,\n",
" -0.5785672664642334,\n",
" -0.32521000504493713,\n",
" 0.10255138576030731,\n",
" 0.33704066276550293,\n",
" -0.841282844543457,\n",
" 0.14152061939239502,\n",
" -0.3370279371738434,\n",
" 0.49215564131736755,\n",
" 0.0914132297039032,\n",
" 0.12332753092050552,\n",
" -0.1110205352306366,\n",
" 0.41455915570259094,\n",
" -0.009024033322930336,\n",
" -0.029561961069703102,\n",
" -0.373939573764801,\n",
" -0.1807539314031601,\n",
" 0.03587811067700386,\n",
" -0.06871557235717773,\n",
" 0.17617470026016235,\n",
" -0.41548997163772583,\n",
" 0.33639347553253174,\n",
" -0.23223456740379333,\n",
" 0.5465441346168518,\n",
" -0.34286656975746155,\n",
" -0.6612752079963684,\n",
" -0.2320355474948883,\n",
" 0.07182411849498749,\n",
" 0.3852163553237915,\n",
" -0.2342645674943924,\n",
" 0.16110815107822418,\n",
" -0.2423216700553894,\n",
" 0.03703731298446655,\n",
" 0.19558677077293396,\n",
" 0.2644686698913574,\n",
" 0.1460569053888321,\n",
" -0.15462523698806763,\n",
" 0.44600820541381836,\n",
" 0.26356780529022217,\n",
" -0.3230559825897217,\n",
" -0.38004231452941895,\n",
" 0.3209015130996704,\n",
" 0.1794116497039795,\n",
" 0.17752106487751007,\n",
" 0.09836413711309433,\n",
" -0.1797885298728943,\n",
" -0.253633975982666,\n",
" 0.046680301427841187,\n",
" 0.057394400238990784,\n",
" -0.03841375559568405,\n",
" 0.24965603649616241,\n",
" -0.6948146820068359,\n",
" -0.4154902696609497,\n",
" 0.0656731128692627,\n",
" 0.11332261562347412,\n",
" -0.8106739521026611,\n",
" -0.34622541069984436,\n",
" -0.21989001333713531,\n",
" -0.4824276268482208,\n",
" 0.4051637351512909,\n",
" -0.45185530185699463,\n",
" -0.0946708470582962,\n",
" -0.05469135195016861,\n",
" -0.06589457392692566,\n",
" 0.09993898868560791,\n",
" -0.34284570813179016,\n",
" 0.49983060359954834,\n",
" 0.0033212900161743164,\n",
" -0.4304232597351074,\n",
" 0.07889989018440247,\n",
" -0.007459308952093124,\n",
" 0.4239715039730072,\n",
" -0.25756675004959106,\n",
" 0.31488096714019775,\n",
" -0.1677330583333969,\n",
" 0.045180223882198334,\n",
" 0.2772008180618286,\n",
" 0.15235473215579987,\n",
" -0.01372990570962429,\n",
" -0.6354173421859741,\n",
" -0.18613581359386444,\n",
" 0.23087207973003387,\n",
" 0.09513431042432785,\n",
" 0.16636204719543457,\n",
" -0.43349266052246094,\n",
" -0.2332514226436615,\n",
" -0.18484531342983246,\n",
" 0.14579933881759644,\n",
" 0.09585676342248917,\n",
" -0.09921260178089142,\n",
" 0.03247637301683426,\n",
" 0.10520228743553162,\n",
" -0.11674012243747711,\n",
" -0.15933912992477417,\n",
" -0.0646573007106781,\n",
" -0.6095514297485352,\n",
" -0.2394079566001892,\n",
" -0.4380556344985962,\n",
" -0.6490615010261536,\n",
" -0.1216881275177002,\n",
" -0.10711225122213364,\n",
" 0.005344092845916748,\n",
" -0.07490742951631546,\n",
" 0.49208566546440125,\n",
" 0.06548193097114563,\n",
" -0.3599317669868469,\n",
" 0.2353283166885376,\n",
" 0.775847315788269,\n",
" 0.25445646047592163,\n",
" 0.5107861757278442,\n",
" -0.6225501298904419,\n",
" -0.01086548250168562,\n",
" 0.21795065701007843,\n",
" -0.12066733837127686,\n",
" -0.030595697462558746,\n",
" -0.18923433125019073,\n",
" 0.15062354505062103,\n",
" -0.030235039070248604,\n",
" -0.40581798553466797,\n",
" 0.08334098756313324,\n",
" -0.5997238755226135,\n",
" -0.058350011706352234,\n",
" -0.8276466727256775,\n",
" 0.02780280075967312,\n",
" -0.07400233298540115,\n",
" -0.08103956282138824,\n",
" 0.07881395518779755,\n",
" 0.12619081139564514,\n",
" -1.8515106439590454,\n",
" 0.255576491355896,\n",
" -0.23254168033599854,\n",
" -0.14251506328582764,\n",
" -0.2413632869720459,\n",
" 0.5213344693183899,\n",
" 0.05684032291173935,\n",
" 0.4777739644050598,\n",
" 0.1354936957359314,\n",
" -0.03192663937807083,\n",
" -0.18077749013900757,\n",
" 0.012649256736040115,\n",
" 0.1781580150127411,\n",
" 0.04796797037124634,\n",
" 0.4883567988872528,\n",
" 0.5344078540802002,\n",
" 0.07517336308956146,\n",
" 0.08413839340209961,\n",
" 0.31767338514328003,\n",
" -0.743497371673584,\n",
" 0.17360059916973114,\n",
" -0.22620046138763428,\n",
" 0.22686609625816345,\n",
" 0.36993861198425293,\n",
" 0.35775822401046753,\n",
" -0.06123759597539902,\n",
" 0.010145988315343857,\n",
" 0.11476285010576248,\n",
" 0.07592245936393738,\n",
" -0.21769657731056213,\n",
" -0.3001062273979187,\n",
" -0.25711023807525635,\n",
" 0.13648103177547455,\n",
" 0.03000476025044918,\n",
" 0.8125519156455994,\n",
" -0.152043879032135,\n",
" 0.04189813882112503,\n",
" 0.5781794786453247,\n",
" 0.03763951361179352,\n",
" -0.08327850699424744,\n",
" -0.12445957958698273,\n",
" 0.1949543058872223,\n",
" -0.3381288945674896,\n",
" -0.2722013294696808,\n",
" 0.4955138862133026,\n",
" -0.3355175852775574,\n",
" 0.07248717546463013,\n",
" -0.4575760066509247,\n",
" -0.31398797035217285,\n",
" -0.0008178539574146271,\n",
" -0.8956255912780762,\n",
" 0.27715617418289185,\n",
" 0.4035504460334778,\n",
" -0.22540199756622314,\n",
" -0.2852040231227875,\n",
" -0.03450009226799011,\n",
" 0.33577316999435425,\n",
" -0.3088703453540802,\n",
" 0.22889649868011475,\n",
" -0.4270733892917633,\n",
" -0.5053249001502991,\n",
" -0.757560133934021,\n",
" 0.16323056817054749,\n",
" 0.010226674377918243,\n",
" 0.2734118103981018,\n",
" -0.1591734141111374,\n",
" 0.981870174407959,\n",
" 0.6131259202957153,\n",
" 0.5586094856262207,\n",
" -0.12946833670139313,\n",
" -0.31953078508377075,\n",
" 0.560726523399353,\n",
" -0.0866241380572319,\n",
" -0.3244170546531677,\n",
" -0.02256407029926777,\n",
" -0.11558128893375397,\n",
" -0.21292121708393097,\n",
" 0.34426623582839966,\n",
" -0.2670328617095947,\n",
" -0.24119582772254944,\n",
" 0.052858199924230576,\n",
" 0.5299605131149292,\n",
" 0.6631982326507568,\n",
" -0.42634499073028564,\n",
" 0.6780688762664795,\n",
" 0.2936837077140808,\n",
" -0.3862270712852478,\n",
" -0.07484430074691772,\n",
" 0.1535547971725464,\n",
" -0.2611032724380493,\n",
" 0.27674567699432373,\n",
" -0.059578921645879745,\n",
" -0.8115700483322144,\n",
" -0.6202974319458008,\n",
" -0.3042308986186981,\n",
" 0.188609778881073,\n",
" -0.33004552125930786,\n",
" 0.19185827672481537,\n",
" -0.853655993938446,\n",
" -0.4640299379825592,\n",
" 0.11844523996114731,\n",
" -0.1921979784965515,\n",
" -0.06618788093328476,\n",
" -0.39657968282699585,\n",
" 0.1034577339887619,\n",
" 0.21126484870910645,\n",
" -0.148246169090271,\n",
" -0.2692546248435974,\n",
" -0.8055323362350464,\n",
" -0.062444817274808884,\n",
" 0.11359157413244247,\n",
" -0.13458779454231262,\n",
" 0.44756215810775757,\n",
" 0.41652458906173706,\n",
" 0.015673615038394928,\n",
" 0.3474903702735901,\n",
" -0.021153444424271584,\n",
" 0.03428415209054947,\n",
" -0.18457946181297302,\n",
" 0.006560284644365311,\n",
" -0.20493485033512115,\n",
" 0.171548992395401,\n",
" -0.23722919821739197,\n",
" 0.32418501377105713,\n",
" 0.1796925663948059,\n",
" 0.0831204354763031,\n",
" 1.0461218357086182,\n",
" -0.44392696022987366,\n",
" -0.6576195359230042,\n",
" -0.01919076219201088,\n",
" 0.9212107062339783,\n",
" -0.29571494460105896,\n",
" -0.18320304155349731,\n",
" -0.13580387830734253,\n",
" -1.132625699043274,\n",
" -0.35940423607826233,\n",
" -0.4618679881095886,\n",
" -0.28561869263648987,\n",
" -0.4031994640827179,\n",
" 0.16965016722679138,\n",
" -0.21715861558914185,\n",
" -0.08229604363441467,\n",
" -0.32676589488983154,\n",
" -0.3232302665710449,\n",
" 0.24049870669841766,\n",
" 0.6021530628204346,\n",
" 0.04347743093967438,\n",
" -0.209060400724411,\n",
" -0.16313791275024414,\n",
" 0.06496522575616837,\n",
" 0.03967851400375366,\n",
" -0.40864652395248413,\n",
" -0.33976274728775024,\n",
" -0.046027202159166336,\n",
" -0.005188635550439358,\n",
" 0.058880776166915894,\n",
" 0.0321168527007103,\n",
" -0.1447698175907135,\n",
" 0.06925049424171448,\n",
" 0.6364021897315979,\n",
" -0.5102192163467407,\n",
" -0.45495641231536865,\n",
" 0.03499821200966835,\n",
" -0.278734028339386,\n",
" -0.10810155421495438,\n",
" 0.15126237273216248,\n",
" -0.6254886984825134,\n",
" 0.06641495227813721,\n",
" 0.20479699969291687,\n",
" 0.09947545826435089,\n",
" -0.046382784843444824,\n",
" -0.16405516862869263,\n",
" -0.20540368556976318,\n",
" 0.7233040928840637,\n",
" 0.4036218523979187,\n",
" 0.21826907992362976,\n",
" -0.37668341398239136,\n",
" 0.5499210953712463,\n",
" 0.4996236264705658,\n",
" -0.9802402257919312,\n",
" 0.18088358640670776,\n",
" -0.13211362063884735,\n",
" -0.19271007180213928,\n",
" 0.12388142943382263,\n",
" 0.3094484508037567,\n",
" 0.1659678816795349,\n",
" -0.366643488407135,\n",
" 0.07096423208713531,\n",
" -0.15936002135276794,\n",
" 0.31332695484161377,\n",
" -0.19862031936645508,\n",
" -0.17975430190563202,\n",
" 0.18212074041366577,\n",
" 0.05612201243638992,\n",
" 0.18402206897735596,\n",
" -0.40293896198272705,\n",
" 0.30953249335289,\n",
" -0.27336716651916504,\n",
" -0.6357355117797852,\n",
" -0.03547372668981552,\n",
" 0.047501325607299805,\n",
" -0.08326595276594162,\n",
" -0.22636382281780243,\n",
" -0.37057560682296753,\n",
" -0.27068036794662476,\n",
" 0.4042843282222748,\n",
" 0.5013402700424194,\n",
" 0.20244529843330383,\n",
" -0.3212963044643402,\n",
" 0.19525206089019775,\n",
" 0.1234760656952858,\n",
" -0.1585262417793274,\n",
" 0.2271120548248291,\n",
" -0.1468270719051361,\n",
" -0.38590526580810547,\n",
" 0.432914674282074,\n",
" -0.05158238857984543,\n",
" 0.2372186928987503,\n",
" 0.6058276295661926,\n",
" -0.3005836606025696,\n",
" -0.2626449167728424,\n",
" 0.039258815348148346,\n",
" -0.03686431422829628,\n",
" 0.24807152152061462,\n",
" -0.2818634510040283,\n",
" 0.2577167749404907,\n",
" 0.029732175171375275,\n",
" -0.04551811143755913,\n",
" -0.06772096455097198,\n",
" -0.3636494576931,\n",
" 0.612147331237793,\n",
" -0.09285692870616913,\n",
" -0.0957474410533905,\n",
" -0.5014721155166626,\n",
" -0.022913319990038872,\n",
" -0.1571536511182785,\n",
" 0.38392674922943115,\n",
" -0.19102169573307037,\n",
" -0.178020641207695,\n",
" 0.3653925657272339,\n",
" 0.38549429178237915,\n",
" 0.49311503767967224,\n",
" 0.27068066596984863,\n",
" -11.438440322875977,\n",
" 0.265405535697937,\n",
" 0.6868913769721985,\n",
" -0.47423380613327026,\n",
" -0.02113715186715126,\n",
" 0.22601419687271118,\n",
" 0.08371030539274216,\n",
" -0.1378926932811737,\n",
" 0.05923555791378021,\n",
" -0.15881142020225525,\n",
" -0.31119203567504883,\n",
" 0.03607290983200073,\n",
" 0.10358021408319473,\n",
" 0.2742474377155304,\n",
" -0.39641568064689636,\n",
" -0.19558432698249817,\n",
" 0.04090259224176407,\n",
" -0.9703243970870972,\n",
" 0.12681318819522858,\n",
" 0.06491967290639877,\n",
" 0.8553196787834167,\n",
" -0.12866777181625366,\n",
" 0.25796207785606384,\n",
" 0.337567001581192,\n",
" -0.29014015197753906,\n",
" -0.36393624544143677,\n",
" -0.2707810401916504,\n",
" -0.08124517649412155,\n",
" 0.026068065315485,\n",
" 0.3546096384525299,\n",
" -0.040593840181827545,\n",
" 0.21715696156024933,\n",
" 0.12802958488464355,\n",
" 0.10805999487638474,\n",
" -0.1963319480419159,\n",
" -0.4844217896461487,\n",
" -0.2525525689125061,\n",
" -0.07286226749420166,\n",
" 0.16315433382987976,\n",
" 0.010944589972496033,\n",
" -0.12852692604064941,\n",
" 0.07498784363269806,\n",
" -0.4273608922958374,\n",
" 0.5708109140396118,\n",
" 0.30974268913269043,\n",
" 0.5141735076904297,\n",
" 1.400611400604248,\n",
" 0.5714818239212036,\n",
" 0.08540098369121552,\n",
" -0.2631087005138397,\n",
" -0.08227705210447311,\n",
" -0.975861132144928,\n",
" 0.2231377363204956,\n",
" -0.6155647039413452,\n",
" 0.05882048234343529,\n",
" 0.045945532619953156,\n",
" 0.7060705423355103,\n",
" -0.45815882086753845,\n",
" -0.3684438467025757,\n",
" -0.024645671248435974,\n",
" -0.21441614627838135,\n",
" 0.0889449343085289,\n",
" -0.08071427792310715,\n",
" 0.24810537695884705,\n",
" -0.1880117803812027,\n",
" 0.0005564335733652115,\n",
" 0.3779721260070801,\n",
" -0.4376388192176819,\n",
" -0.013606859371066093,\n",
" -0.012510553002357483,\n",
" -0.1893647462129593,\n",
" -0.09841714799404144,\n",
" 0.026030059903860092,\n",
" 0.3332041800022125,\n",
" -0.32220393419265747,\n",
" 0.2432144582271576,\n",
" -0.05701013281941414,\n",
" -0.15700644254684448,\n",
" 1.1199297904968262,\n",
" 0.1361091285943985,\n",
" -0.23364485800266266,\n",
" 0.3050157427787781,\n",
" -0.11909164488315582,\n",
" -0.08420044928789139,\n",
" -0.7593413591384888,\n",
" -0.32534050941467285,\n",
" -0.02736438438296318,\n",
" 0.23913171887397766,\n",
" 0.6435930728912354,\n",
" 0.5005511045455933,\n",
" -0.17646817862987518,\n",
" -0.47160661220550537,\n",
" -0.06511819362640381,\n",
" 0.17870119214057922,\n",
" 0.299577534198761,\n",
" 0.7200746536254883,\n",
" -0.6301978230476379,\n",
" 0.2990838289260864,\n",
" 0.11465991288423538,\n",
" -0.06254388391971588,\n",
" -0.4227169156074524,\n",
" -0.2667514681816101,\n",
" -0.2950814366340637,\n",
" -0.4849179983139038,\n",
" 0.1882718801498413,\n",
" -0.047298070043325424,\n",
" -0.08788923919200897,\n",
" -0.07749020308256149,\n",
" 0.07980240881443024,\n",
" 0.1676902323961258,\n",
" -0.43001675605773926,\n",
" 0.10876041650772095,\n",
" 0.31447896361351013,\n",
" 0.21034005284309387,\n",
" -0.35815557837486267,\n",
" 0.08125007152557373,\n",
" 0.35249337553977966,\n",
" 0.7837635278701782,\n",
" -0.19917169213294983,\n",
" -0.5146862268447876,\n",
" -0.23403358459472656,\n",
" -0.11862634122371674,\n",
" 0.5254921317100525,\n",
" 0.2999652624130249,\n",
" -0.29253557324409485,\n",
" 0.20723821222782135,\n",
" -0.620477557182312,\n",
" -0.09542164951562881,\n",
" -0.30094778537750244,\n",
" 0.25948548316955566,\n",
" 0.6408584117889404,\n",
" -0.06120781600475311,\n",
" 0.2342914342880249,\n",
" 0.5121847987174988,\n",
" -0.39649030566215515,\n",
" -0.43187931180000305,\n",
" -0.7640522718429565,\n",
" 0.10868971049785614,\n",
" -0.08106020838022232,\n",
" -0.47930338978767395,\n",
" 0.06537271291017532,\n",
" -0.045851580798625946,\n",
" -0.08188006281852722,\n",
" -0.2261401116847992,\n",
" 0.3529761731624603,\n",
" -0.03479409217834473,\n",
" 0.4194261133670807,\n",
" 0.3706766963005066,\n",
" 0.06349517405033112,\n",
" 0.12139858305454254,\n",
" -0.1318378746509552,\n",
" -0.2584220767021179,\n",
" -0.25302600860595703,\n",
" -0.33064478635787964,\n",
" -0.37714534997940063,\n",
" -0.33775410056114197,\n",
" -0.23941975831985474,\n",
" 0.10932222008705139,\n",
" 0.20073655247688293,\n",
" -0.5071535110473633,\n",
" 0.22392942011356354,\n",
" 0.1010560542345047,\n",
" -0.06148980185389519,\n",
" 0.044548794627189636,\n",
" 0.2454114854335785,\n",
" 0.27230435609817505,\n",
" 0.05290666222572327,\n",
" -0.43692275881767273,\n",
" -0.035133183002471924,\n",
" -0.10074728727340698,\n",
" 0.17913556098937988,\n",
" 0.292396605014801,\n",
" -0.09999293088912964,\n",
" -0.13579578697681427,\n",
" -0.5724308490753174,\n",
" -0.21040667593479156,\n",
" -0.015836264938116074,\n",
" 1.3064208030700684,\n",
" -0.241350919008255,\n",
" -0.07703058421611786,\n",
" -0.10136708617210388,\n",
" 0.19711162149906158,\n",
" -0.3450890779495239,\n",
" -0.011513306759297848,\n",
" 0.024603920057415962,\n",
" 0.16431620717048645,\n",
" -0.10188685357570648,\n",
" -0.09061741828918457,\n",
" 0.4485245645046234,\n",
" -0.02197575382888317,\n",
" 0.4040101170539856,\n",
" 0.4373551905155182,\n",
" 0.05429357290267944,\n",
" -0.24955637753009796,\n",
" 0.09778079390525818,\n",
" -0.023112528026103973,\n",
" -0.2564523220062256,\n",
" -0.04881411790847778,\n",
" -0.3872672915458679,\n",
" -0.18996059894561768,\n",
" 0.2313660830259323,\n",
" -0.3196879029273987,\n",
" 0.01194029301404953,\n",
" -0.30296480655670166,\n",
" 0.05421692878007889,\n",
" -0.03408701717853546,\n",
" 0.22841864824295044,\n",
" 1.578257441520691,\n",
" -0.11940783262252808,\n",
" 0.25298744440078735,\n",
" 0.6720185279846191,\n",
" 0.2424883097410202,\n",
" -0.03629959374666214,\n",
" 0.3927643895149231,\n",
" 0.06107558310031891,\n",
" 0.4442882835865021,\n",
" 0.38407596945762634,\n",
" -0.09007307142019272,\n",
" -0.6413401365280151,\n",
" -0.16962572932243347,\n",
" 0.14727723598480225,\n",
" 0.3275677263736725,\n",
" -0.5065059661865234,\n",
" -0.6375719308853149,\n",
" -0.23505157232284546,\n",
" 0.4058622121810913,\n",
" 0.18389572203159332,\n",
" 0.37686675786972046,\n",
" -0.32331132888793945,\n",
" 0.5201140642166138,\n",
" 0.4749390482902527,\n",
" -0.6028018593788147,\n",
" 0.10936233401298523,\n",
" -0.251738965511322,\n",
" 0.31019115447998047,\n",
" 0.08005710691213608,\n",
" -0.4996483027935028,\n",
" -0.011521167121827602,\n",
" 0.19609302282333374,\n",
" -0.4344659447669983,\n",
" 0.23813682794570923,\n",
" 0.5019975900650024,\n",
" -0.4126373529434204,\n",
" 0.03648647665977478,\n",
" 0.5433768033981323,\n",
" -0.5457215309143066,\n",
" -0.041738808155059814,\n",
" 0.1550254225730896,\n",
" -0.08583180606365204,\n",
" 0.45809757709503174,\n",
" -0.015234923921525478,\n",
" -0.5531338453292847,\n",
" 0.24054360389709473,\n",
" -0.1707010567188263,\n",
" -0.780963122844696,\n",
" 0.346110999584198,\n",
" 0.5906148552894592,\n",
" 0.050411637872457504,\n",
" 0.03500477597117424,\n",
" 0.3088997006416321,\n",
" -0.3215941786766052,\n",
" 0.19330814480781555,\n",
" -0.21450290083885193,\n",
" -0.1169026792049408,\n",
" -0.00898793712258339,\n",
" -0.1577148139476776,\n",
" 0.1529499888420105,\n",
" -0.18210813403129578,\n",
" 0.36814114451408386,\n",
" 0.21429923176765442,\n",
" -0.4126664996147156,\n",
" 0.35362422466278076,\n",
" 0.5028055906295776,\n",
" 0.4638359546661377,\n",
" -0.10652841627597809,\n",
" -0.4493403434753418,\n",
" 0.014997248537838459,\n",
" 0.25783294439315796,\n",
" -0.24792209267616272,\n",
" 0.4804432988166809,\n",
" -0.17324310541152954,\n",
" -0.3305455446243286,\n",
" 0.2857770621776581,\n",
" 0.0969945639371872,\n",
" -0.3740934133529663,\n",
" 0.17485804855823517,\n",
" -0.35059189796447754,\n",
" 0.05099032446742058,\n",
" -0.13675779104232788,\n",
" -0.30312976241111755,\n",
" 0.5954789519309998,\n",
" 0.24418190121650696,\n",
" -0.016593964770436287,\n",
" -0.4114746153354645,\n",
" 0.1797628402709961,\n",
" 0.44978392124176025,\n",
" -0.015300022438168526,\n",
" 0.7455285787582397,\n",
" 0.18756693601608276,\n",
" 0.5239377617835999,\n",
" -0.16932351887226105,\n",
" 0.17063747346401215,\n",
" -0.5783197283744812,\n",
" -0.24582026898860931,\n",
" 0.11113040894269943,\n",
" -0.14729738235473633,\n",
" -0.313827246427536,\n",
" -0.4038233160972595,\n",
" 0.27344217896461487,\n",
" 0.25614219903945923,\n",
" 0.6502538323402405,\n",
" 0.30207359790802,\n",
" -0.014790041372179985,\n",
" -0.8559430837631226,\n",
" -0.1104782223701477,\n",
" 0.16447167098522186,\n",
" -0.052042119204998016,\n",
" -0.01432079542428255,\n",
" 0.34737399220466614,\n",
" -0.23760202527046204,\n",
" 0.2641652524471283,\n",
" -0.5803239941596985,\n",
" -0.10549790412187576,\n",
" -0.014833975583314896,\n",
" 0.21913912892341614,\n",
" -0.13154374063014984,\n",
" 0.4490673243999481,\n",
" -0.24762031435966492,\n",
" 0.13647863268852234,\n",
" 0.06070892885327339,\n",
" 0.03165220841765404,\n",
" 0.2995430827140808,\n",
" 0.943413496017456,\n",
" 0.01654817909002304,\n",
" -0.8203943967819214,\n",
" 0.11616985499858856,\n",
" 0.3305555582046509,\n",
" -0.2783198356628418,\n",
" -0.20304813981056213,\n",
" -0.8533036708831787,\n",
" 0.19350579380989075,\n",
" 0.05387571081519127,\n",
" 0.6868716478347778,\n",
" 0.49180224537849426]]"
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"processed_df['TargetVec'][0]"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>JRCT ID</th>\n",
" <th>NCT No</th>\n",
" <th>JapicCTI No</th>\n",
" <th>Title</th>\n",
" <th>TargetJ</th>\n",
" <th>Target</th>\n",
" <th>TargetEnglish</th>\n",
" <th>研究・治験の目的</th>\n",
" <th>試験等のフェーズ</th>\n",
" <th>試験の種類</th>\n",
" <th>...</th>\n",
" <th>Inclusion Criteria</th>\n",
" <th>Exclusion Criteria</th>\n",
" <th>Age Minimum</th>\n",
" <th>Age Maximum</th>\n",
" <th>Gender</th>\n",
" <th>Discontinuation Criteria</th>\n",
" <th>Keyword</th>\n",
" <th>Intervention(s)</th>\n",
" <th>TargetWord</th>\n",
" <th>TargetVec</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>31</th>\n",
" <td>jRCT2061240081</td>\n",
" <td>NCT06393374</td>\n",
" <td>NaN</td>\n",
" <td>術前薬物療法後の手術時に病理学的完全奏効を達成していないトリプルネガティブ乳癌患者を対象に、...</td>\n",
" <td>トリプルネガティブ乳癌</td>\n",
" <td>トリプルネガティブ乳癌</td>\n",
" <td>Triple negative breast cancer</td>\n",
" <td>術前薬物療法後の手術時に病理学的完全奏効を達成していないトリプルネガティブ乳癌患者を対象に、...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>-Has centrally confirmed TNBC, as defined by t...</td>\n",
" <td>-Has a known germline breast cancer gene (BRCA...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>-Arm 1: MK-2870 4mg/kg intravenous (IV) every ...</td>\n",
" <td>[Triple Negative, Breast Cancer]</td>\n",
" <td>[[-0.21876227855682373, -0.4577382504940033, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32</th>\n",
" <td>jRCT2031240476</td>\n",
" <td>NCT06312176</td>\n",
" <td>NaN</td>\n",
" <td>ホルモン受容体陽性・ヒト上皮成長因子受容体2陰性(HR+/HER2-)の切除不能な局所進行又...</td>\n",
" <td>HR+/HER2-の切除不能局所進行又は転移性乳癌の患者</td>\n",
" <td>HR+/HER2-の切除不能局所進行又は転移性乳癌の患者</td>\n",
" <td>HR+/HER2 unresectable locally advanced or meta...</td>\n",
" <td>HR+/HER2-の切除不能な局所進行又は転移性乳癌患者を対象にMK-2870の単剤及びペム...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>-Has unresectable locally advanced or metastat...</td>\n",
" <td>-Has breast cancer amenable to treatment with ...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Arm A:MK-2870 Participants receive 4 mg/kg of ...</td>\n",
" <td>[Hr+/Her2 Unresectable Locally Advanced, Metas...</td>\n",
" <td>[[0.04888693988323212, -0.7584289908409119, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>157</th>\n",
" <td>jRCT2052240059</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>遺伝子HSD17B4高メチル化を有するHER2陽性ER陰性乳癌における非手術療法の有用性を評...</td>\n",
" <td>乳がん</td>\n",
" <td>乳がん</td>\n",
" <td>Breast cancer</td>\n",
" <td>HSD17B4高メチル化(HSD17B4 hypermethylation:HH)を有するH...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>1. Histologically confirmed invasive breast ca...</td>\n",
" <td>1. History of other malignancy within the last...</td>\n",
" <td>20age old over</td>\n",
" <td>No limit</td>\n",
" <td>Female</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Omitting breast surgery after preoperative che...</td>\n",
" <td>[Breast Cancer]</td>\n",
" <td>[[-0.09860841184854507, -0.629493236541748, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>170</th>\n",
" <td>jRCT2031240096</td>\n",
" <td>NCT06380751</td>\n",
" <td>NaN</td>\n",
" <td>本治験の主要目的は、BRCA1、BRCA2 又は PALB2 変異を有し、HR 陽性、HER...</td>\n",
" <td>進行乳癌</td>\n",
" <td>進行乳癌</td>\n",
" <td>Advanced Breast Cancer</td>\n",
" <td>Treatment</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Adult females, pre/peri-menopausal and/or po...</td>\n",
" <td>- Participants with history of MDS/AML or with...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Experimental: Arm 1: saruparib (AZD5305) plus ...</td>\n",
" <td>[Advanced Breast Cancer]</td>\n",
" <td>[[-0.21163925528526306, -0.5019860863685608, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>209</th>\n",
" <td>jRCT2031230750</td>\n",
" <td>NCT06188559</td>\n",
" <td>NaN</td>\n",
" <td>治療歴のある HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌の被験者を対象に,...</td>\n",
" <td>HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌</td>\n",
" <td>HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌</td>\n",
" <td>HER2-positive or HER2-low unresectable or meta...</td>\n",
" <td>治療</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>(1) Male or female, aged >=18 years at the tim...</td>\n",
" <td>(1) Presence of brain or subdural metastases, ...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Generic Name:NA Study Treatment in dose optimi...</td>\n",
" <td>[Her2-Positive, Her2-Low Unresectable, Metasta...</td>\n",
" <td>[[-0.08892004191875458, -0.8978654146194458, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>215</th>\n",
" <td>jRCT2031230723</td>\n",
" <td>NCT06112379</td>\n",
" <td>NaN</td>\n",
" <td>未治療のトリプルネガティブ又はホルモン受容体低発現/HER2陰性乳癌の成人患者を対象として、...</td>\n",
" <td>乳癌</td>\n",
" <td>乳癌</td>\n",
" <td>Breast Cancer</td>\n",
" <td>未治療のトリプルネガティブ又はホルモン受容体低発現/HER2陰性乳癌の成人患者を対象として、...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>1. Participant must be >= 18 years at the time...</td>\n",
" <td>1. As judged by the investigator, any evidence...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>- Experimental arm: Dato-DXd plus durvalumab n...</td>\n",
" <td>[Breast Cancer]</td>\n",
" <td>[[-0.09860841184854507, -0.629493236541748, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>224</th>\n",
" <td>jRCT2051230196</td>\n",
" <td>NCT06105632</td>\n",
" <td>NaN</td>\n",
" <td>CDK4/6 阻害薬による前治療で進行したホルモン受容体陽性HER2 陰性の進行または転移乳...</td>\n",
" <td>ホルモン受容体(HR)陽性ヒト上皮増殖因子受容体2(HER2)陰性の進行または転移乳癌</td>\n",
" <td>ホルモン受容体(HR)陽性ヒト上皮増殖因子受容体2(HER2)陰性の進行または転移乳癌</td>\n",
" <td>HR-positive, HER2-negative Advanced or Metasta...</td>\n",
" <td>CDK4/6阻害薬による前治療で進行したHR陽性HER2陰性の進行または転移乳癌患者を対象に...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>* Histological confirmation of breast cancer w...</td>\n",
" <td>* Any medical or psychiatric condition that ma...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Arm A (Experimental Arm) PF-07220060 plus Fulv...</td>\n",
" <td>[Hr-Positive, Her2-Negative Advanced, Metastat...</td>\n",
" <td>[[-0.083187997341156, -0.7571865916252136, -0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>234</th>\n",
" <td>jRCT2031230677</td>\n",
" <td>NCT06206837</td>\n",
" <td>NaN</td>\n",
" <td>18歳以上のER陽性/HER2陰性の進行または転移乳癌患者を対象として,経口タンパク質分解誘...</td>\n",
" <td>エストロゲン受容体陽性/ヒト上皮増殖因子受容体 2 陰性の進行または転移乳癌</td>\n",
" <td>エストロゲン受容体陽性/ヒト上皮増殖因子受容体 2 陰性の進行または転移乳癌</td>\n",
" <td>ER+/HER2- advanced or metastatic breast cancer</td>\n",
" <td>進行乳癌患者を対象として,vepdegestrantとPF-07220060を併用投与したと...</td>\n",
" <td>1-2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Inclusion Criteria: * Histological or cytologi...</td>\n",
" <td>Exclusion Criteria: * visceral crisis at risk ...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Drug: vepdegestrant Daily oral dosages of vepd...</td>\n",
" <td>[Er+/Her2- Advanced, Metastatic Breast Cancer]</td>\n",
" <td>[[-0.154923215508461, -0.39443543553352356, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>240</th>\n",
" <td>jRCT2061230102</td>\n",
" <td>NCT06103864</td>\n",
" <td>NaN</td>\n",
" <td>Programmed death-ligand(PD-L1)陽性の局所再発手術不能又は転移性...</td>\n",
" <td>乳癌</td>\n",
" <td>乳癌</td>\n",
" <td>Breast Cancer</td>\n",
" <td>PD-L1陽性の局所再発手術不能または転移性TNBC患者を対象に、デュルバルマブ併用または非...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Histologically or cytologically documented loc...</td>\n",
" <td>As judged by investigator, severe or uncontrol...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Arm 1: Dato-DXd + durvalumab Arm 2: Investigat...</td>\n",
" <td>[Breast Cancer]</td>\n",
" <td>[[-0.09860841184854507, -0.629493236541748, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>307</th>\n",
" <td>jRCT2061230074</td>\n",
" <td>NCT05952557</td>\n",
" <td>NaN</td>\n",
" <td>根治的局所治療(化学療法の併用または非併用)を受けて疾患の兆候のない、再発リスクが中間~高リ...</td>\n",
" <td>乳がん、早期乳がん</td>\n",
" <td>乳がん、早期乳がん</td>\n",
" <td>Breast Cancer, Early Breast Cancer</td>\n",
" <td>Treatment</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Women and Men; 18 years or more at the time ...</td>\n",
" <td>- Inoperable locally advanced or metastatic br...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>arm A: continue with SoC ET as directed by inv...</td>\n",
" <td>[Breast Cancer, Early Breast Cancer]</td>\n",
" <td>[[-0.09860841184854507, -0.629493236541748, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>342</th>\n",
" <td>jRCT2051230094</td>\n",
" <td>NCT05794906</td>\n",
" <td>NaN</td>\n",
" <td>前立腺癌の高リスク生化学的再発(BCR)患者を対象としたアンドロゲン遮断療法(ADT)を併用...</td>\n",
" <td>前立腺癌</td>\n",
" <td>前立腺癌</td>\n",
" <td>prostate cancer</td>\n",
" <td>BAY 1841788(darolutamide)とADTの24ヵ月間併用投与によって、プラ...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Histologically or cytologically confirmed ad...</td>\n",
" <td>- Pathological finding consistent with small c...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Male</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Drug: Darolutamide (BAY1841788, Nubeqa) Coated...</td>\n",
" <td>[Prostate Cancer]</td>\n",
" <td>[[0.020208006724715233, -0.7650324106216431, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>351</th>\n",
" <td>jRCT2031230279</td>\n",
" <td>NCT05862285</td>\n",
" <td>NaN</td>\n",
" <td>GENENTECH社及び/又はF.HOFFMANN-LA ROCHE LTDが依頼した試験に...</td>\n",
" <td>癌</td>\n",
" <td>癌</td>\n",
" <td>Cancer</td>\n",
" <td>本継続投与試験の目的は,親治験から移行する時点でまだ治験治療を受けており,その地域でその治療...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Eligible for continuing Roche IMP-based ther...</td>\n",
" <td>- Meet any of the study treatment discontinuat...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Ipatasertib: Ipatasertib will be administered ...</td>\n",
" <td>[Cancer]</td>\n",
" <td>[[-0.21449315547943115, -0.7045395374298096, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>385</th>\n",
" <td>jRCT2031230121</td>\n",
" <td>NCT04557449</td>\n",
" <td>NaN</td>\n",
" <td>進行固形がん患者を対象として,PF-07220060 の単剤投与および併用投与の安全性,忍容...</td>\n",
" <td>進行または転移性の乳癌,前立腺癌,およびその他の固形癌</td>\n",
" <td>進行または転移性の乳癌,前立腺癌,およびその他の固形癌</td>\n",
" <td>advanced or metastatic BC, prostate cancer or ...</td>\n",
" <td>パート1(用量漸増,食事の影響,DDIの評価パート) 1A: PF-07220060のMTD...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Disease * Part 1A/1D/1E: HR+HER2-BC, HR+HER2+B...</td>\n",
" <td>* Part 1D: participants who have had a gastrec...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>* Part 1A/1D/1E: PF-07220060 (CDK4 inhibitor) ...</td>\n",
" <td>[Advanced, Metastatic Bc, Prostate Cancer, Oth...</td>\n",
" <td>[[-0.4654146134853363, -0.4114530086517334, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>388</th>\n",
" <td>jRCT2031230109</td>\n",
" <td>NCT05514054</td>\n",
" <td>NaN</td>\n",
" <td>EMBER-4:2~5年間の術後内分泌療法による前治療歴を有する再発高リスクのER+、HER...</td>\n",
" <td>乳癌</td>\n",
" <td>乳癌</td>\n",
" <td>Breast Neoplasms</td>\n",
" <td>早期乳癌患者を対象としたimlunestrantと標準的な内分泌療法の比較試験</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>-Have a diagnosis of ER+, HER2- early-stage, r...</td>\n",
" <td>-Have any evidence of metastatic disease (incl...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>-Drug: Imlunestrant Administered orally. Other...</td>\n",
" <td>[Breast Neoplasms]</td>\n",
" <td>[[-0.3341570198535919, -0.6972700953483582, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>391</th>\n",
" <td>jRCT2031230090</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>MELK阻害剤OTS167POにおける転移性・進行性乳がん患者を対象とした安全性、忍容性およ...</td>\n",
" <td>再発・難治性の局所進行性・転移性乳がん及びトリプルネガティブ乳がん</td>\n",
" <td>再発・難治性の局所進行性・転移性乳がん及びトリプルネガティブ乳がん</td>\n",
" <td>Relapsed/Refractory Locally Advanced or Metast...</td>\n",
" <td>再発・難治性の局所進行性または転移性乳がん患者に対して、OTS167を経口カプセルで投与する...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Dose Escalation and Dose Expansion Cohorts 1. ...</td>\n",
" <td>Dose Escalation and Expansion Cohorts 1. Women...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Female</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>This is a Phase I dose escalation/expansion mu...</td>\n",
" <td>[Relapsed/Refract, Y Locally Advanced, Metasta...</td>\n",
" <td>[[-0.015294715762138367, -0.4993850290775299, ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>392</th>\n",
" <td>jRCT2031230096</td>\n",
" <td>NCT05774951</td>\n",
" <td>NaN</td>\n",
" <td>根治的局所領域療法(化学療法の併用または非併用)および標準補助内分泌療法(ET)を少なくとも...</td>\n",
" <td>乳がん、早期乳がん</td>\n",
" <td>乳がん、早期乳がん</td>\n",
" <td>Breast Cancer, Early Breast Cancer</td>\n",
" <td>Treatment</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Women and Men, greater than or equal to 18 y...</td>\n",
" <td>- Inoperable locally advanced or metastatic br...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>arm A: continue with SoC ET as directed by inv...</td>\n",
" <td>[Breast Cancer, Early Breast Cancer]</td>\n",
" <td>[[-0.09860841184854507, -0.629493236541748, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>402</th>\n",
" <td>jRCT2061230009</td>\n",
" <td>NCT05485766</td>\n",
" <td>NaN</td>\n",
" <td>gBRCA1/2遺伝子変異を有するトリプルネガティブ原発乳がんに対するプラチナ製剤、PARP...</td>\n",
" <td>トリプルネガティブ乳がん</td>\n",
" <td>トリプルネガティブ乳がん</td>\n",
" <td>Triple Negative Breast Neoplasms</td>\n",
" <td>術前療法としてgBRCA変異陽性手術可能または局所進行TNBCに対してペムブロリズマブ+パク...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>1)Male/female subjects who are at least 18 yea...</td>\n",
" <td>1) Subjects who has a positive urine pregnancy...</td>\n",
" <td>18age old exceed</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>Triple Negative Breast Cancer, Breast Neoplasm...</td>\n",
" <td>Drug: Pembrolizumab 200 mg fixed dose, IV, eve...</td>\n",
" <td>[Triple Negative, Breast Neoplasms]</td>\n",
" <td>[[-0.21876227855682373, -0.4577382504940033, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>463</th>\n",
" <td>jRCT2061220087</td>\n",
" <td>NCT05629585</td>\n",
" <td>NaN</td>\n",
" <td>術前薬物療法後の外科的切除時に乳房及び/又は腋窩リンパ節に浸潤性残存病変を有するステージI~...</td>\n",
" <td>乳癌</td>\n",
" <td>乳癌</td>\n",
" <td>Breast Cancer</td>\n",
" <td>術前薬物療法後の外科的切除時に乳房および/または腋窩リンパ節に浸潤性残存病変を有するI~II...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Participant must be >= 18 years at the time of...</td>\n",
" <td>Stage IV (metastatic) TNBC. History of prior i...</td>\n",
" <td>18age old over</td>\n",
" <td>130age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Arm 1: Dato-DXd 6 mg/kg IV Q3W x 8 cycles + Du...</td>\n",
" <td>[Breast Cancer]</td>\n",
" <td>[[-0.09860841184854507, -0.629493236541748, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>515</th>\n",
" <td>jRCT2031220276</td>\n",
" <td>NCT05307705</td>\n",
" <td>NaN</td>\n",
" <td>PIK3CA H1047R変異を有する進行乳がん患者及びその他の固形がん患者を対象としたLO...</td>\n",
" <td>乳がん</td>\n",
" <td>乳がん</td>\n",
" <td>Breast Cancer</td>\n",
" <td>LOXO-783 の単独投与及び他の抗がん剤との併用投与における 第 2 相試験の推奨用量、...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>-Have advanced breast cancer or another solid ...</td>\n",
" <td>-Medical Conditions -Colorectal cancer -Endome...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>-Drug: LOXO-783 Oral Other Name: LY3849524 -Dr...</td>\n",
" <td>[Breast Cancer]</td>\n",
" <td>[[-0.09860841184854507, -0.629493236541748, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>555</th>\n",
" <td>jRCT2031220034</td>\n",
" <td>NCT04862663</td>\n",
" <td>NaN</td>\n",
" <td>局所進行(切除不能)又は転移性のホルモン受容体陽性/ヒト上皮細胞成長因子受容体2 陰性乳癌を...</td>\n",
" <td>局所進行(切除不能)又は転移性乳癌</td>\n",
" <td>局所進行(切除不能)又は転移性乳癌</td>\n",
" <td>Locally Advanced (Inoperable) or Metastatic Br...</td>\n",
" <td>Treatment</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Key inclusion criteria for both phases: 1. Adu...</td>\n",
" <td>Key exclusion criteria for both phases: 1. His...</td>\n",
" <td>18age old over</td>\n",
" <td>99age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Capivasertib: PO BD 4 days on /3 days off per ...</td>\n",
" <td>[Locally Advanced (Inoperable), Metastatic Bre...</td>\n",
" <td>[[-0.15552400052547455, -0.8326742053031921, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>590</th>\n",
" <td>jRCT2031210585</td>\n",
" <td>NCT05123482</td>\n",
" <td>NaN</td>\n",
" <td>進行又は転移性固形がん患者を対象としたAZD8205の単独療法及び他の抗がん剤との併用療法に...</td>\n",
" <td>乳癌、胆道癌、卵巣癌、子宮内膜癌</td>\n",
" <td>乳癌、胆道癌、卵巣癌、子宮内膜癌</td>\n",
" <td>Breast Cancer, Biliary Tract Carcinoma, Ovaria...</td>\n",
" <td>進行又は転移性固形がんに対する治療法候補としての新規化合物AZD8205の研究</td>\n",
" <td>1-2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Age18 years or more - Relapsed/metastatic so...</td>\n",
" <td>- Treatment with any of the following: 1. Nitr...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Sub-study1 AZD8205 Monotherapy AZD8205 is an a...</td>\n",
" <td>[Breast Cancer, Biliary Tract Carcinoma, Ovari...</td>\n",
" <td>[[-0.09860852360725403, -0.6294932961463928, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>593</th>\n",
" <td>jRCT2031210560</td>\n",
" <td>NCT05061823</td>\n",
" <td>NaN</td>\n",
" <td>複数のBintrafusp alfa(M7824)臨床試験の被験者を対象に長期データを収集す...</td>\n",
" <td>固形癌</td>\n",
" <td>固形癌</td>\n",
" <td>Cancer</td>\n",
" <td>本治験は、実施中のbintrafusp alfaの親試験( (NCT02517398, NC...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Participants who are currently enrolled in a...</td>\n",
" <td>- Participants who are pregnant or currently i...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Participants who are continuing treatment with...</td>\n",
" <td>[Cancer]</td>\n",
" <td>[[-0.21449315547943115, -0.7045395374298096, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>600</th>\n",
" <td>jRCT2041210123</td>\n",
" <td>NCT05114746</td>\n",
" <td>NaN</td>\n",
" <td>進行性PSMA陽性転移性去勢抵抗性前立腺がん(mCRPC)を有する患者を対象に177Lu-P...</td>\n",
" <td>前立腺癌</td>\n",
" <td>前立腺癌</td>\n",
" <td>Prostate Cancer</td>\n",
" <td>本治験の目的は、進行性PSMA陽性mCRPCの日本人患者に177Lu-PSMA-617を投与...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- ECOG performance status: 1. Post-taxane popu...</td>\n",
" <td>- Previous treatment with any of the following...</td>\n",
" <td>20age old over</td>\n",
" <td>No limit</td>\n",
" <td>Male</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Radiation: 177Lu-PSMA-617 administered intrave...</td>\n",
" <td>[Prostate Cancer]</td>\n",
" <td>[[0.020208006724715233, -0.7650324106216431, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>629</th>\n",
" <td>jRCT2052210099</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>乳がんを有する成人女性及び健康成人女性を対象とした乳房用マイクロ波画像診断装置IGS-000...</td>\n",
" <td>乳がん</td>\n",
" <td>乳がん</td>\n",
" <td>Breast cancer</td>\n",
" <td>本治験の目的は,乳がん又はその疑いのある者,並びに乳がん又はその疑いがない者を対象に乳房画像...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Breast cancer (including suspected) (1) One of...</td>\n",
" <td>(1) There is trauma with bleeding on the breas...</td>\n",
" <td>20age old over</td>\n",
" <td>No limit</td>\n",
" <td>Female</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>The test using IGS-0001 will be performed twic...</td>\n",
" <td>[Breast Cancer]</td>\n",
" <td>[[-0.09860841184854507, -0.629493236541748, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>691</th>\n",
" <td>jRCT2031200384</td>\n",
" <td>NCT04221542</td>\n",
" <td>NaN</td>\n",
" <td>転移性去勢抵抗性前立腺がん患者を対象としたAMG 509の安全性、忍容性、薬物動態及び有効性...</td>\n",
" <td>前立腺がん</td>\n",
" <td>前立腺がん</td>\n",
" <td>Prostate Cancer</td>\n",
" <td>成人被験者のAMG 509の安全性及び忍容性を評価し、最大耐量(MTD)又は第II 相推奨用...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Parts 1, 2, and 5: Participants with histolo...</td>\n",
" <td>- Pathological finding consistent with pure sm...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Male</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>- Experimental: Part 1: AMG 509 Intravenous (I...</td>\n",
" <td>[Prostate Cancer]</td>\n",
" <td>[[0.020208006724715233, -0.7650324106216431, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>698</th>\n",
" <td>jRCT2071200086</td>\n",
" <td>NCT04640623</td>\n",
" <td>NaN</td>\n",
" <td>膀胱全摘除術に不適格である,又は膀胱全摘除術を選択しなかった,カルメット・ゲラン桿菌(BCG...</td>\n",
" <td>膀胱癌</td>\n",
" <td>膀胱癌</td>\n",
" <td>Bladder Cancer</td>\n",
" <td>試験の目的は、高グレードTa又はT1乳頭状癌の併発の有無を問わない上皮内癌(CIS)患者にT...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Histologically confirmed diagnosis of persis...</td>\n",
" <td>- Histologically confirmed, muscle-invasive, l...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>TAR-200 Cohort 1: TAR-200 and Cetrelimab: TAR-...</td>\n",
" <td>[Bladder Cancer]</td>\n",
" <td>[[-0.206207275390625, -0.5713697671890259, -0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>729</th>\n",
" <td>jRCT2031200057</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>治療抵抗性乳がんを対象としたTDM-812の腫瘍内投与法の安全性評価を目的とした第I相試験</td>\n",
" <td>乳がん</td>\n",
" <td>乳がん</td>\n",
" <td>Breast cancer</td>\n",
" <td>TDM-812の腫瘍内投与の安全性および忍容性を評価し、今後の臨床評価に用いる腫瘍内投与にお...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td><Disease Characteristics> 1)Patients with inop...</td>\n",
" <td>1)Patients correspond to either of the followi...</td>\n",
" <td>20age old over</td>\n",
" <td>No limit</td>\n",
" <td>Female</td>\n",
" <td>NaN</td>\n",
" <td>Breast cancer</td>\n",
" <td>For the target tumor, the dose settled at each...</td>\n",
" <td>[Breast Cancer]</td>\n",
" <td>[[-0.09860841184854507, -0.629493236541748, -0...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>27 rows × 41 columns</p>\n",
"</div>"
],
"text/plain": [
" JRCT ID NCT No JapicCTI No \\\n",
"31 jRCT2061240081 NCT06393374 NaN \n",
"32 jRCT2031240476 NCT06312176 NaN \n",
"157 jRCT2052240059 NaN NaN \n",
"170 jRCT2031240096 NCT06380751 NaN \n",
"209 jRCT2031230750 NCT06188559 NaN \n",
"215 jRCT2031230723 NCT06112379 NaN \n",
"224 jRCT2051230196 NCT06105632 NaN \n",
"234 jRCT2031230677 NCT06206837 NaN \n",
"240 jRCT2061230102 NCT06103864 NaN \n",
"307 jRCT2061230074 NCT05952557 NaN \n",
"342 jRCT2051230094 NCT05794906 NaN \n",
"351 jRCT2031230279 NCT05862285 NaN \n",
"385 jRCT2031230121 NCT04557449 NaN \n",
"388 jRCT2031230109 NCT05514054 NaN \n",
"391 jRCT2031230090 NaN NaN \n",
"392 jRCT2031230096 NCT05774951 NaN \n",
"402 jRCT2061230009 NCT05485766 NaN \n",
"463 jRCT2061220087 NCT05629585 NaN \n",
"515 jRCT2031220276 NCT05307705 NaN \n",
"555 jRCT2031220034 NCT04862663 NaN \n",
"590 jRCT2031210585 NCT05123482 NaN \n",
"593 jRCT2031210560 NCT05061823 NaN \n",
"600 jRCT2041210123 NCT05114746 NaN \n",
"629 jRCT2052210099 NaN NaN \n",
"691 jRCT2031200384 NCT04221542 NaN \n",
"698 jRCT2071200086 NCT04640623 NaN \n",
"729 jRCT2031200057 NaN NaN \n",
"\n",
" Title \\\n",
"31 術前薬物療法後の手術時に病理学的完全奏効を達成していないトリプルネガティブ乳癌患者を対象に、... \n",
"32 ホルモン受容体陽性・ヒト上皮成長因子受容体2陰性(HR+/HER2-)の切除不能な局所進行又... \n",
"157 遺伝子HSD17B4高メチル化を有するHER2陽性ER陰性乳癌における非手術療法の有用性を評... \n",
"170 本治験の主要目的は、BRCA1、BRCA2 又は PALB2 変異を有し、HR 陽性、HER... \n",
"209 治療歴のある HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌の被験者を対象に,... \n",
"215 未治療のトリプルネガティブ又はホルモン受容体低発現/HER2陰性乳癌の成人患者を対象として、... \n",
"224 CDK4/6 阻害薬による前治療で進行したホルモン受容体陽性HER2 陰性の進行または転移乳... \n",
"234 18歳以上のER陽性/HER2陰性の進行または転移乳癌患者を対象として,経口タンパク質分解誘... \n",
"240 Programmed death-ligand(PD-L1)陽性の局所再発手術不能又は転移性... \n",
"307 根治的局所治療(化学療法の併用または非併用)を受けて疾患の兆候のない、再発リスクが中間~高リ... \n",
"342 前立腺癌の高リスク生化学的再発(BCR)患者を対象としたアンドロゲン遮断療法(ADT)を併用... \n",
"351 GENENTECH社及び/又はF.HOFFMANN-LA ROCHE LTDが依頼した試験に... \n",
"385 進行固形がん患者を対象として,PF-07220060 の単剤投与および併用投与の安全性,忍容... \n",
"388 EMBER-4:2~5年間の術後内分泌療法による前治療歴を有する再発高リスクのER+、HER... \n",
"391 MELK阻害剤OTS167POにおける転移性・進行性乳がん患者を対象とした安全性、忍容性およ... \n",
"392 根治的局所領域療法(化学療法の併用または非併用)および標準補助内分泌療法(ET)を少なくとも... \n",
"402 gBRCA1/2遺伝子変異を有するトリプルネガティブ原発乳がんに対するプラチナ製剤、PARP... \n",
"463 術前薬物療法後の外科的切除時に乳房及び/又は腋窩リンパ節に浸潤性残存病変を有するステージI~... \n",
"515 PIK3CA H1047R変異を有する進行乳がん患者及びその他の固形がん患者を対象としたLO... \n",
"555 局所進行(切除不能)又は転移性のホルモン受容体陽性/ヒト上皮細胞成長因子受容体2 陰性乳癌を... \n",
"590 進行又は転移性固形がん患者を対象としたAZD8205の単独療法及び他の抗がん剤との併用療法に... \n",
"593 複数のBintrafusp alfa(M7824)臨床試験の被験者を対象に長期データを収集す... \n",
"600 進行性PSMA陽性転移性去勢抵抗性前立腺がん(mCRPC)を有する患者を対象に177Lu-P... \n",
"629 乳がんを有する成人女性及び健康成人女性を対象とした乳房用マイクロ波画像診断装置IGS-000... \n",
"691 転移性去勢抵抗性前立腺がん患者を対象としたAMG 509の安全性、忍容性、薬物動態及び有効性... \n",
"698 膀胱全摘除術に不適格である,又は膀胱全摘除術を選択しなかった,カルメット・ゲラン桿菌(BCG... \n",
"729 治療抵抗性乳がんを対象としたTDM-812の腫瘍内投与法の安全性評価を目的とした第I相試験 \n",
"\n",
" TargetJ \\\n",
"31 トリプルネガティブ乳癌 \n",
"32 HR+/HER2-の切除不能局所進行又は転移性乳癌の患者 \n",
"157 乳がん \n",
"170 進行乳癌 \n",
"209 HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌 \n",
"215 乳癌 \n",
"224 ホルモン受容体(HR)陽性ヒト上皮増殖因子受容体2(HER2)陰性の進行または転移乳癌 \n",
"234 エストロゲン受容体陽性/ヒト上皮増殖因子受容体 2 陰性の進行または転移乳癌 \n",
"240 乳癌 \n",
"307 乳がん、早期乳がん \n",
"342 前立腺癌 \n",
"351 癌 \n",
"385 進行または転移性の乳癌,前立腺癌,およびその他の固形癌 \n",
"388 乳癌 \n",
"391 再発・難治性の局所進行性・転移性乳がん及びトリプルネガティブ乳がん \n",
"392 乳がん、早期乳がん \n",
"402 トリプルネガティブ乳がん \n",
"463 乳癌 \n",
"515 乳がん \n",
"555 局所進行(切除不能)又は転移性乳癌 \n",
"590 乳癌、胆道癌、卵巣癌、子宮内膜癌 \n",
"593 固形癌 \n",
"600 前立腺癌 \n",
"629 乳がん \n",
"691 前立腺がん \n",
"698 膀胱癌 \n",
"729 乳がん \n",
"\n",
" Target \\\n",
"31 トリプルネガティブ乳癌 \n",
"32 HR+/HER2-の切除不能局所進行又は転移性乳癌の患者 \n",
"157 乳がん \n",
"170 進行乳癌 \n",
"209 HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌 \n",
"215 乳癌 \n",
"224 ホルモン受容体(HR)陽性ヒト上皮増殖因子受容体2(HER2)陰性の進行または転移乳癌 \n",
"234 エストロゲン受容体陽性/ヒト上皮増殖因子受容体 2 陰性の進行または転移乳癌 \n",
"240 乳癌 \n",
"307 乳がん、早期乳がん \n",
"342 前立腺癌 \n",
"351 癌 \n",
"385 進行または転移性の乳癌,前立腺癌,およびその他の固形癌 \n",
"388 乳癌 \n",
"391 再発・難治性の局所進行性・転移性乳がん及びトリプルネガティブ乳がん \n",
"392 乳がん、早期乳がん \n",
"402 トリプルネガティブ乳がん \n",
"463 乳癌 \n",
"515 乳がん \n",
"555 局所進行(切除不能)又は転移性乳癌 \n",
"590 乳癌、胆道癌、卵巣癌、子宮内膜癌 \n",
"593 固形癌 \n",
"600 前立腺癌 \n",
"629 乳がん \n",
"691 前立腺がん \n",
"698 膀胱癌 \n",
"729 乳がん \n",
"\n",
" TargetEnglish \\\n",
"31 Triple negative breast cancer \n",
"32 HR+/HER2 unresectable locally advanced or meta... \n",
"157 Breast cancer \n",
"170 Advanced Breast Cancer \n",
"209 HER2-positive or HER2-low unresectable or meta... \n",
"215 Breast Cancer \n",
"224 HR-positive, HER2-negative Advanced or Metasta... \n",
"234 ER+/HER2- advanced or metastatic breast cancer \n",
"240 Breast Cancer \n",
"307 Breast Cancer, Early Breast Cancer \n",
"342 prostate cancer \n",
"351 Cancer \n",
"385 advanced or metastatic BC, prostate cancer or ... \n",
"388 Breast Neoplasms \n",
"391 Relapsed/Refractory Locally Advanced or Metast... \n",
"392 Breast Cancer, Early Breast Cancer \n",
"402 Triple Negative Breast Neoplasms \n",
"463 Breast Cancer \n",
"515 Breast Cancer \n",
"555 Locally Advanced (Inoperable) or Metastatic Br... \n",
"590 Breast Cancer, Biliary Tract Carcinoma, Ovaria... \n",
"593 Cancer \n",
"600 Prostate Cancer \n",
"629 Breast cancer \n",
"691 Prostate Cancer \n",
"698 Bladder Cancer \n",
"729 Breast cancer \n",
"\n",
" 研究・治験の目的 試験等のフェーズ 試験の種類 ... \\\n",
"31 術前薬物療法後の手術時に病理学的完全奏効を達成していないトリプルネガティブ乳癌患者を対象に、... 3 NaN ... \n",
"32 HR+/HER2-の切除不能な局所進行又は転移性乳癌患者を対象にMK-2870の単剤及びペム... 3 NaN ... \n",
"157 HSD17B4高メチル化(HSD17B4 hypermethylation:HH)を有するH... 2 NaN ... \n",
"170 Treatment 3 NaN ... \n",
"209 治療 2 NaN ... \n",
"215 未治療のトリプルネガティブ又はホルモン受容体低発現/HER2陰性乳癌の成人患者を対象として、... 3 NaN ... \n",
"224 CDK4/6阻害薬による前治療で進行したHR陽性HER2陰性の進行または転移乳癌患者を対象に... 3 NaN ... \n",
"234 進行乳癌患者を対象として,vepdegestrantとPF-07220060を併用投与したと... 1-2 NaN ... \n",
"240 PD-L1陽性の局所再発手術不能または転移性TNBC患者を対象に、デュルバルマブ併用または非... 3 NaN ... \n",
"307 Treatment 3 NaN ... \n",
"342 BAY 1841788(darolutamide)とADTの24ヵ月間併用投与によって、プラ... 3 NaN ... \n",
"351 本継続投与試験の目的は,親治験から移行する時点でまだ治験治療を受けており,その地域でその治療... 3 NaN ... \n",
"385 パート1(用量漸増,食事の影響,DDIの評価パート) 1A: PF-07220060のMTD... 1 NaN ... \n",
"388 早期乳癌患者を対象としたimlunestrantと標準的な内分泌療法の比較試験 3 NaN ... \n",
"391 再発・難治性の局所進行性または転移性乳がん患者に対して、OTS167を経口カプセルで投与する... 1 NaN ... \n",
"392 Treatment 3 NaN ... \n",
"402 術前療法としてgBRCA変異陽性手術可能または局所進行TNBCに対してペムブロリズマブ+パク... 2 NaN ... \n",
"463 術前薬物療法後の外科的切除時に乳房および/または腋窩リンパ節に浸潤性残存病変を有するI~II... 3 NaN ... \n",
"515 LOXO-783 の単独投与及び他の抗がん剤との併用投与における 第 2 相試験の推奨用量、... 1 NaN ... \n",
"555 Treatment 3 NaN ... \n",
"590 進行又は転移性固形がんに対する治療法候補としての新規化合物AZD8205の研究 1-2 NaN ... \n",
"593 本治験は、実施中のbintrafusp alfaの親試験( (NCT02517398, NC... 3 NaN ... \n",
"600 本治験の目的は、進行性PSMA陽性mCRPCの日本人患者に177Lu-PSMA-617を投与... 2 NaN ... \n",
"629 本治験の目的は,乳がん又はその疑いのある者,並びに乳がん又はその疑いがない者を対象に乳房画像... 2 NaN ... \n",
"691 成人被験者のAMG 509の安全性及び忍容性を評価し、最大耐量(MTD)又は第II 相推奨用... 1 NaN ... \n",
"698 試験の目的は、高グレードTa又はT1乳頭状癌の併発の有無を問わない上皮内癌(CIS)患者にT... 2 NaN ... \n",
"729 TDM-812の腫瘍内投与の安全性および忍容性を評価し、今後の臨床評価に用いる腫瘍内投与にお... 1 NaN ... \n",
"\n",
" Inclusion Criteria \\\n",
"31 -Has centrally confirmed TNBC, as defined by t... \n",
"32 -Has unresectable locally advanced or metastat... \n",
"157 1. Histologically confirmed invasive breast ca... \n",
"170 - Adult females, pre/peri-menopausal and/or po... \n",
"209 (1) Male or female, aged >=18 years at the tim... \n",
"215 1. Participant must be >= 18 years at the time... \n",
"224 * Histological confirmation of breast cancer w... \n",
"234 Inclusion Criteria: * Histological or cytologi... \n",
"240 Histologically or cytologically documented loc... \n",
"307 - Women and Men; 18 years or more at the time ... \n",
"342 - Histologically or cytologically confirmed ad... \n",
"351 - Eligible for continuing Roche IMP-based ther... \n",
"385 Disease * Part 1A/1D/1E: HR+HER2-BC, HR+HER2+B... \n",
"388 -Have a diagnosis of ER+, HER2- early-stage, r... \n",
"391 Dose Escalation and Dose Expansion Cohorts 1. ... \n",
"392 - Women and Men, greater than or equal to 18 y... \n",
"402 1)Male/female subjects who are at least 18 yea... \n",
"463 Participant must be >= 18 years at the time of... \n",
"515 -Have advanced breast cancer or another solid ... \n",
"555 Key inclusion criteria for both phases: 1. Adu... \n",
"590 - Age18 years or more - Relapsed/metastatic so... \n",
"593 - Participants who are currently enrolled in a... \n",
"600 - ECOG performance status: 1. Post-taxane popu... \n",
"629 Breast cancer (including suspected) (1) One of... \n",
"691 - Parts 1, 2, and 5: Participants with histolo... \n",
"698 - Histologically confirmed diagnosis of persis... \n",
"729 <Disease Characteristics> 1)Patients with inop... \n",
"\n",
" Exclusion Criteria Age Minimum \\\n",
"31 -Has a known germline breast cancer gene (BRCA... 18age old over \n",
"32 -Has breast cancer amenable to treatment with ... 18age old over \n",
"157 1. History of other malignancy within the last... 20age old over \n",
"170 - Participants with history of MDS/AML or with... 18age old over \n",
"209 (1) Presence of brain or subdural metastases, ... 18age old over \n",
"215 1. As judged by the investigator, any evidence... 18age old over \n",
"224 * Any medical or psychiatric condition that ma... 18age old over \n",
"234 Exclusion Criteria: * visceral crisis at risk ... 18age old over \n",
"240 As judged by investigator, severe or uncontrol... 18age old over \n",
"307 - Inoperable locally advanced or metastatic br... 18age old over \n",
"342 - Pathological finding consistent with small c... 18age old over \n",
"351 - Meet any of the study treatment discontinuat... 18age old over \n",
"385 * Part 1D: participants who have had a gastrec... 18age old over \n",
"388 -Have any evidence of metastatic disease (incl... 18age old over \n",
"391 Dose Escalation and Expansion Cohorts 1. Women... 18age old over \n",
"392 - Inoperable locally advanced or metastatic br... 18age old over \n",
"402 1) Subjects who has a positive urine pregnancy... 18age old exceed \n",
"463 Stage IV (metastatic) TNBC. History of prior i... 18age old over \n",
"515 -Medical Conditions -Colorectal cancer -Endome... 18age old over \n",
"555 Key exclusion criteria for both phases: 1. His... 18age old over \n",
"590 - Treatment with any of the following: 1. Nitr... 18age old over \n",
"593 - Participants who are pregnant or currently i... 18age old over \n",
"600 - Previous treatment with any of the following... 20age old over \n",
"629 (1) There is trauma with bleeding on the breas... 20age old over \n",
"691 - Pathological finding consistent with pure sm... 18age old over \n",
"698 - Histologically confirmed, muscle-invasive, l... 18age old over \n",
"729 1)Patients correspond to either of the followi... 20age old over \n",
"\n",
" Age Maximum Gender Discontinuation Criteria \\\n",
"31 No limit Both NaN \n",
"32 No limit Both NaN \n",
"157 No limit Female NaN \n",
"170 No limit Both NaN \n",
"209 No limit Both NaN \n",
"215 No limit Both NaN \n",
"224 No limit Both NaN \n",
"234 No limit Both NaN \n",
"240 No limit Both NaN \n",
"307 No limit NaN NaN \n",
"342 No limit Male NaN \n",
"351 No limit Both NaN \n",
"385 No limit Both NaN \n",
"388 No limit Both NaN \n",
"391 No limit Female NaN \n",
"392 No limit Both NaN \n",
"402 No limit Both NaN \n",
"463 130age old under Both NaN \n",
"515 No limit Both NaN \n",
"555 99age old under Both NaN \n",
"590 No limit Both NaN \n",
"593 No limit Both NaN \n",
"600 No limit Male NaN \n",
"629 No limit Female NaN \n",
"691 No limit Male NaN \n",
"698 No limit Both NaN \n",
"729 No limit Female NaN \n",
"\n",
" Keyword \\\n",
"31 NaN \n",
"32 NaN \n",
"157 NaN \n",
"170 NaN \n",
"209 NaN \n",
"215 NaN \n",
"224 NaN \n",
"234 NaN \n",
"240 NaN \n",
"307 NaN \n",
"342 NaN \n",
"351 NaN \n",
"385 NaN \n",
"388 NaN \n",
"391 NaN \n",
"392 NaN \n",
"402 Triple Negative Breast Cancer, Breast Neoplasm... \n",
"463 NaN \n",
"515 NaN \n",
"555 NaN \n",
"590 NaN \n",
"593 NaN \n",
"600 NaN \n",
"629 NaN \n",
"691 NaN \n",
"698 NaN \n",
"729 Breast cancer \n",
"\n",
" Intervention(s) \\\n",
"31 -Arm 1: MK-2870 4mg/kg intravenous (IV) every ... \n",
"32 Arm A:MK-2870 Participants receive 4 mg/kg of ... \n",
"157 Omitting breast surgery after preoperative che... \n",
"170 Experimental: Arm 1: saruparib (AZD5305) plus ... \n",
"209 Generic Name:NA Study Treatment in dose optimi... \n",
"215 - Experimental arm: Dato-DXd plus durvalumab n... \n",
"224 Arm A (Experimental Arm) PF-07220060 plus Fulv... \n",
"234 Drug: vepdegestrant Daily oral dosages of vepd... \n",
"240 Arm 1: Dato-DXd + durvalumab Arm 2: Investigat... \n",
"307 arm A: continue with SoC ET as directed by inv... \n",
"342 Drug: Darolutamide (BAY1841788, Nubeqa) Coated... \n",
"351 Ipatasertib: Ipatasertib will be administered ... \n",
"385 * Part 1A/1D/1E: PF-07220060 (CDK4 inhibitor) ... \n",
"388 -Drug: Imlunestrant Administered orally. Other... \n",
"391 This is a Phase I dose escalation/expansion mu... \n",
"392 arm A: continue with SoC ET as directed by inv... \n",
"402 Drug: Pembrolizumab 200 mg fixed dose, IV, eve... \n",
"463 Arm 1: Dato-DXd 6 mg/kg IV Q3W x 8 cycles + Du... \n",
"515 -Drug: LOXO-783 Oral Other Name: LY3849524 -Dr... \n",
"555 Capivasertib: PO BD 4 days on /3 days off per ... \n",
"590 Sub-study1 AZD8205 Monotherapy AZD8205 is an a... \n",
"593 Participants who are continuing treatment with... \n",
"600 Radiation: 177Lu-PSMA-617 administered intrave... \n",
"629 The test using IGS-0001 will be performed twic... \n",
"691 - Experimental: Part 1: AMG 509 Intravenous (I... \n",
"698 TAR-200 Cohort 1: TAR-200 and Cetrelimab: TAR-... \n",
"729 For the target tumor, the dose settled at each... \n",
"\n",
" TargetWord \\\n",
"31 [Triple Negative, Breast Cancer] \n",
"32 [Hr+/Her2 Unresectable Locally Advanced, Metas... \n",
"157 [Breast Cancer] \n",
"170 [Advanced Breast Cancer] \n",
"209 [Her2-Positive, Her2-Low Unresectable, Metasta... \n",
"215 [Breast Cancer] \n",
"224 [Hr-Positive, Her2-Negative Advanced, Metastat... \n",
"234 [Er+/Her2- Advanced, Metastatic Breast Cancer] \n",
"240 [Breast Cancer] \n",
"307 [Breast Cancer, Early Breast Cancer] \n",
"342 [Prostate Cancer] \n",
"351 [Cancer] \n",
"385 [Advanced, Metastatic Bc, Prostate Cancer, Oth... \n",
"388 [Breast Neoplasms] \n",
"391 [Relapsed/Refract, Y Locally Advanced, Metasta... \n",
"392 [Breast Cancer, Early Breast Cancer] \n",
"402 [Triple Negative, Breast Neoplasms] \n",
"463 [Breast Cancer] \n",
"515 [Breast Cancer] \n",
"555 [Locally Advanced (Inoperable), Metastatic Bre... \n",
"590 [Breast Cancer, Biliary Tract Carcinoma, Ovari... \n",
"593 [Cancer] \n",
"600 [Prostate Cancer] \n",
"629 [Breast Cancer] \n",
"691 [Prostate Cancer] \n",
"698 [Bladder Cancer] \n",
"729 [Breast Cancer] \n",
"\n",
" TargetVec \n",
"31 [[-0.21876227855682373, -0.4577382504940033, -... \n",
"32 [[0.04888693988323212, -0.7584289908409119, -0... \n",
"157 [[-0.09860841184854507, -0.629493236541748, -0... \n",
"170 [[-0.21163925528526306, -0.5019860863685608, -... \n",
"209 [[-0.08892004191875458, -0.8978654146194458, -... \n",
"215 [[-0.09860841184854507, -0.629493236541748, -0... \n",
"224 [[-0.083187997341156, -0.7571865916252136, -0.... \n",
"234 [[-0.154923215508461, -0.39443543553352356, -0... \n",
"240 [[-0.09860841184854507, -0.629493236541748, -0... \n",
"307 [[-0.09860841184854507, -0.629493236541748, -0... \n",
"342 [[0.020208006724715233, -0.7650324106216431, -... \n",
"351 [[-0.21449315547943115, -0.7045395374298096, -... \n",
"385 [[-0.4654146134853363, -0.4114530086517334, -0... \n",
"388 [[-0.3341570198535919, -0.6972700953483582, -0... \n",
"391 [[-0.015294715762138367, -0.4993850290775299, ... \n",
"392 [[-0.09860841184854507, -0.629493236541748, -0... \n",
"402 [[-0.21876227855682373, -0.4577382504940033, -... \n",
"463 [[-0.09860841184854507, -0.629493236541748, -0... \n",
"515 [[-0.09860841184854507, -0.629493236541748, -0... \n",
"555 [[-0.15552400052547455, -0.8326742053031921, -... \n",
"590 [[-0.09860852360725403, -0.6294932961463928, -... \n",
"593 [[-0.21449315547943115, -0.7045395374298096, -... \n",
"600 [[0.020208006724715233, -0.7650324106216431, -... \n",
"629 [[-0.09860841184854507, -0.629493236541748, -0... \n",
"691 [[0.020208006724715233, -0.7650324106216431, -... \n",
"698 [[-0.206207275390625, -0.5713697671890259, -0.... \n",
"729 [[-0.09860841184854507, -0.629493236541748, -0... \n",
"\n",
"[27 rows x 41 columns]"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"get_matched_df(processed_df, \"breast cancer\", model, threshold=0.925)"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>JRCT ID</th>\n",
" <th>NCT No</th>\n",
" <th>JapicCTI No</th>\n",
" <th>Title</th>\n",
" <th>TargetJ</th>\n",
" <th>Target</th>\n",
" <th>TargetEnglish</th>\n",
" <th>研究・治験の目的</th>\n",
" <th>試験等のフェーズ</th>\n",
" <th>試験の種類</th>\n",
" <th>...</th>\n",
" <th>Inclusion Criteria</th>\n",
" <th>Exclusion Criteria</th>\n",
" <th>Age Minimum</th>\n",
" <th>Age Maximum</th>\n",
" <th>Gender</th>\n",
" <th>Discontinuation Criteria</th>\n",
" <th>Keyword</th>\n",
" <th>Intervention(s)</th>\n",
" <th>TargetWord</th>\n",
" <th>TargetVec</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>82</th>\n",
" <td>jRCT2051240121</td>\n",
" <td>NCT06413706</td>\n",
" <td>NaN</td>\n",
" <td>放射線療法後の悪性神経膠腫の小児および若年成人を対象に、アベマシクリブ+テモゾロミドとテモゾ...</td>\n",
" <td>悪性神経膠腫</td>\n",
" <td>悪性神経膠腫</td>\n",
" <td>High-Grade Glioma</td>\n",
" <td>放射線療法後の悪性神経膠腫を有する小児および若年成人を対象に、アベマシクリブとテモゾロミドの...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Subjects required to meet all the folloiwng cr...</td>\n",
" <td>Patients who meets any of the following criter...</td>\n",
" <td>No limit</td>\n",
" <td>21age old not</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Drug: Abemaciclib Administered orally Other Na...</td>\n",
" <td>[High-Grade Glioma]</td>\n",
" <td>[[-0.12244764715433121, -0.5778073668479919, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>87</th>\n",
" <td>jRCT2051240119</td>\n",
" <td>NCT03423628</td>\n",
" <td>NaN</td>\n",
" <td>多形性膠芽腫患者及び固形がんの脳転移患者を対象に、放射線療法併用下でAZD1390を漸増投与...</td>\n",
" <td>再発多形性膠芽腫</td>\n",
" <td>再発多形性膠芽腫</td>\n",
" <td>Recurrent Glioblastoma Multiforme</td>\n",
" <td>Treatment</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Provision of formalin-fixed paraffin embedde...</td>\n",
" <td>- Administration of chemotherapy or any invest...</td>\n",
" <td>18age old over</td>\n",
" <td>130age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>AZD1390 + Radiation Therapy Drug: AZD1390 - AZ...</td>\n",
" <td>[Recurrent, Glioblastoma Multif, Me]</td>\n",
" <td>[[-0.2750183045864105, -0.5264511704444885, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>175</th>\n",
" <td>jRCT2031240090</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>再発悪性神経膠腫に対する治療用放射性薬剤64Cu-ATSMの有効性を検証するランダム化比較医...</td>\n",
" <td>悪性神経膠腫</td>\n",
" <td>悪性神経膠腫</td>\n",
" <td>Malignant glioma</td>\n",
" <td>再発・難治性悪性神経膠腫を対象として、64Cu-diacetyl-bis(N4-methyl...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>1) Histologically diagnosed as high grade glio...</td>\n",
" <td>1) Have a history or merger of other malignanc...</td>\n",
" <td>18age old over</td>\n",
" <td>75age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>glioblastoma, grade3/4 astrocytoma, grade3 oli...</td>\n",
" <td>Group A: BPC Therapy Depending on the patient'...</td>\n",
" <td>[Malignant Glioma]</td>\n",
" <td>[[-0.33767956495285034, -0.4648125171661377, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>263</th>\n",
" <td>jRCT2041230136</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>再発膠芽腫に対するTUG1を標的とした核酸医薬医師主導第I相試験</td>\n",
" <td>再発膠芽腫</td>\n",
" <td>再発膠芽腫</td>\n",
" <td>recurrent glioblastoma</td>\n",
" <td>再発膠芽腫患者を対象としてTUG1ASOを投与した場合の投与時の安全性を検討し、至適投与量を...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>(1) Patients with a histological diagnosis of ...</td>\n",
" <td>(1) Patients with extracerebral metastases. (2...</td>\n",
" <td>18age old over</td>\n",
" <td>75age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Dosing frequency: 1 time /week Dose Levels Lev...</td>\n",
" <td>[Recurrent, Glioblastoma]</td>\n",
" <td>[[-0.27501848340034485, -0.5264514088630676, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>361</th>\n",
" <td>jRCT2051230069</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>神経膠腫患者に対するロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併⽤療法の安全...</td>\n",
" <td>神経膠腫</td>\n",
" <td>神経膠腫</td>\n",
" <td>Glioma</td>\n",
" <td>神経膠腫患者におけるロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併用療法の安全...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td><Cohort 1> All of the following items shall be...</td>\n",
" <td><Common to Cohort 1 and Cohort 2> 1) Active mu...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td><cohort1> Lomustine 130 mg/m2 orally every 6 w...</td>\n",
" <td>[Glioma]</td>\n",
" <td>[[-0.21631155908107758, -0.5687925219535828, -...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>401</th>\n",
" <td>jRCT2032230060</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>初発IDH野生型低悪性度神経膠腫に対する交流電場腫瘍治療システムの有効性と安全性を検証する多...</td>\n",
" <td>IDH野生型神経膠腫(グレードⅢ)(退形成性星細胞腫)</td>\n",
" <td>IDH野生型神経膠腫(グレードIII)(退形成性星細胞腫)</td>\n",
" <td>IDH wild-type glioma (grade III) (anaplastic a...</td>\n",
" <td>初発IDH野生型低悪性度神経膠腫を対象に、放射線化学療法後のテモゾロミド維持療法期における交...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>At the time of enrollment, patients will be in...</td>\n",
" <td>Any of the following conditions shall not appl...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>Glioma</td>\n",
" <td>The patient using the product should shave all...</td>\n",
" <td>[Idh Wild-Type Glioma (Grade Iii) (Anaplastic ...</td>\n",
" <td>[[-0.3403506577014923, -0.5657796859741211, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>414</th>\n",
" <td>jRCT2031230007</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>BRAF融合遺伝子陽性の進行・再発の低悪性度神経膠腫または膵癌に対するビニメチニブの第Ⅱ相医...</td>\n",
" <td>低悪性度神経膠腫、膵癌</td>\n",
" <td>低悪性度神経膠腫、膵癌</td>\n",
" <td>Low-grade glioma, pancreatic cancer</td>\n",
" <td>BRAF融合遺伝子または遺伝子再構成陽性の切除不能または再発の低悪性度神経膠腫(コホート A...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Inclusion criteria for both cohort A and B 1) ...</td>\n",
" <td>1) Active double primary cancer (but not (1)-(...</td>\n",
" <td>12age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>BRAF fusion gene, BRAF rearrangement, low-grad...</td>\n",
" <td>Binimetinib is administered 45 mg orally, twic...</td>\n",
" <td>[Low-Grade Glioma, Pancreatic Cancer]</td>\n",
" <td>[[-0.18604964017868042, -0.547483503818512, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>636</th>\n",
" <td>jRCT2031210299</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>再発悪性神経膠腫患者を対象としたDSP-0390の第1相試験</td>\n",
" <td>再発悪性神経膠腫</td>\n",
" <td>再発悪性神経膠腫</td>\n",
" <td>Recurrent High-Grade Glioma</td>\n",
" <td>再発悪性神経膠腫患者を対象にDSP-0390を経口投与したときの安全性、薬物動態、薬力学及び...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>1. Estimated life expectancy >= 3 months 2. Re...</td>\n",
" <td>1. Prior therapy with bevacizumab or other ant...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Patients will receive DSP-0390 orally once dai...</td>\n",
" <td>[Recurrent, High-Grade Glioma]</td>\n",
" <td>[[-0.2750183045864105, -0.5264511704444885, -0...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>712</th>\n",
" <td>jRCT2031200153</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Cellm-001による初発膠芽腫治療効果無作為比較対照試験</td>\n",
" <td>膠芽腫</td>\n",
" <td>膠芽腫</td>\n",
" <td>glioblastoma</td>\n",
" <td>脳腫瘍のうち、初発悪性膠芽腫に対する自家脳腫瘍免疫賦活剤であるCellm-001について、術...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>(1) 18 years old or older and 75 years old or ...</td>\n",
" <td>(1) Systemic administration of corticosteroids...</td>\n",
" <td>18age old over</td>\n",
" <td>75age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Inject the investigational drug (Cellm-001 or ...</td>\n",
" <td>[Glioblastoma]</td>\n",
" <td>[[-0.15113382041454315, -0.5002245306968689, -...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>9 rows × 41 columns</p>\n",
"</div>"
],
"text/plain": [
" JRCT ID NCT No JapicCTI No \\\n",
"82 jRCT2051240121 NCT06413706 NaN \n",
"87 jRCT2051240119 NCT03423628 NaN \n",
"175 jRCT2031240090 NaN NaN \n",
"263 jRCT2041230136 NaN NaN \n",
"361 jRCT2051230069 NaN NaN \n",
"401 jRCT2032230060 NaN NaN \n",
"414 jRCT2031230007 NaN NaN \n",
"636 jRCT2031210299 NaN NaN \n",
"712 jRCT2031200153 NaN NaN \n",
"\n",
" Title \\\n",
"82 放射線療法後の悪性神経膠腫の小児および若年成人を対象に、アベマシクリブ+テモゾロミドとテモゾ... \n",
"87 多形性膠芽腫患者及び固形がんの脳転移患者を対象に、放射線療法併用下でAZD1390を漸増投与... \n",
"175 再発悪性神経膠腫に対する治療用放射性薬剤64Cu-ATSMの有効性を検証するランダム化比較医... \n",
"263 再発膠芽腫に対するTUG1を標的とした核酸医薬医師主導第I相試験 \n",
"361 神経膠腫患者に対するロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併⽤療法の安全... \n",
"401 初発IDH野生型低悪性度神経膠腫に対する交流電場腫瘍治療システムの有効性と安全性を検証する多... \n",
"414 BRAF融合遺伝子陽性の進行・再発の低悪性度神経膠腫または膵癌に対するビニメチニブの第Ⅱ相医... \n",
"636 再発悪性神経膠腫患者を対象としたDSP-0390の第1相試験 \n",
"712 Cellm-001による初発膠芽腫治療効果無作為比較対照試験 \n",
"\n",
" TargetJ Target \\\n",
"82 悪性神経膠腫 悪性神経膠腫 \n",
"87 再発多形性膠芽腫 再発多形性膠芽腫 \n",
"175 悪性神経膠腫 悪性神経膠腫 \n",
"263 再発膠芽腫 再発膠芽腫 \n",
"361 神経膠腫 神経膠腫 \n",
"401 IDH野生型神経膠腫(グレードⅢ)(退形成性星細胞腫) IDH野生型神経膠腫(グレードIII)(退形成性星細胞腫) \n",
"414 低悪性度神経膠腫、膵癌 低悪性度神経膠腫、膵癌 \n",
"636 再発悪性神経膠腫 再発悪性神経膠腫 \n",
"712 膠芽腫 膠芽腫 \n",
"\n",
" TargetEnglish \\\n",
"82 High-Grade Glioma \n",
"87 Recurrent Glioblastoma Multiforme \n",
"175 Malignant glioma \n",
"263 recurrent glioblastoma \n",
"361 Glioma \n",
"401 IDH wild-type glioma (grade III) (anaplastic a... \n",
"414 Low-grade glioma, pancreatic cancer \n",
"636 Recurrent High-Grade Glioma \n",
"712 glioblastoma \n",
"\n",
" 研究・治験の目的 試験等のフェーズ 試験の種類 ... \\\n",
"82 放射線療法後の悪性神経膠腫を有する小児および若年成人を対象に、アベマシクリブとテモゾロミドの... 2 NaN ... \n",
"87 Treatment 1 NaN ... \n",
"175 再発・難治性悪性神経膠腫を対象として、64Cu-diacetyl-bis(N4-methyl... 3 NaN ... \n",
"263 再発膠芽腫患者を対象としてTUG1ASOを投与した場合の投与時の安全性を検討し、至適投与量を... 1 NaN ... \n",
"361 神経膠腫患者におけるロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併用療法の安全... 1 NaN ... \n",
"401 初発IDH野生型低悪性度神経膠腫を対象に、放射線化学療法後のテモゾロミド維持療法期における交... 2 NaN ... \n",
"414 BRAF融合遺伝子または遺伝子再構成陽性の切除不能または再発の低悪性度神経膠腫(コホート A... 2 NaN ... \n",
"636 再発悪性神経膠腫患者を対象にDSP-0390を経口投与したときの安全性、薬物動態、薬力学及び... 1 NaN ... \n",
"712 脳腫瘍のうち、初発悪性膠芽腫に対する自家脳腫瘍免疫賦活剤であるCellm-001について、術... 3 NaN ... \n",
"\n",
" Inclusion Criteria \\\n",
"82 Subjects required to meet all the folloiwng cr... \n",
"87 - Provision of formalin-fixed paraffin embedde... \n",
"175 1) Histologically diagnosed as high grade glio... \n",
"263 (1) Patients with a histological diagnosis of ... \n",
"361 <Cohort 1> All of the following items shall be... \n",
"401 At the time of enrollment, patients will be in... \n",
"414 Inclusion criteria for both cohort A and B 1) ... \n",
"636 1. Estimated life expectancy >= 3 months 2. Re... \n",
"712 (1) 18 years old or older and 75 years old or ... \n",
"\n",
" Exclusion Criteria Age Minimum \\\n",
"82 Patients who meets any of the following criter... No limit \n",
"87 - Administration of chemotherapy or any invest... 18age old over \n",
"175 1) Have a history or merger of other malignanc... 18age old over \n",
"263 (1) Patients with extracerebral metastases. (2... 18age old over \n",
"361 <Common to Cohort 1 and Cohort 2> 1) Active mu... 18age old over \n",
"401 Any of the following conditions shall not appl... 18age old over \n",
"414 1) Active double primary cancer (but not (1)-(... 12age old over \n",
"636 1. Prior therapy with bevacizumab or other ant... 18age old over \n",
"712 (1) Systemic administration of corticosteroids... 18age old over \n",
"\n",
" Age Maximum Gender Discontinuation Criteria \\\n",
"82 21age old not NaN NaN \n",
"87 130age old under Both NaN \n",
"175 75age old under Both NaN \n",
"263 75age old under Both NaN \n",
"361 No limit Both NaN \n",
"401 No limit Both NaN \n",
"414 No limit Both NaN \n",
"636 No limit Both NaN \n",
"712 75age old under Both NaN \n",
"\n",
" Keyword \\\n",
"82 NaN \n",
"87 NaN \n",
"175 glioblastoma, grade3/4 astrocytoma, grade3 oli... \n",
"263 NaN \n",
"361 NaN \n",
"401 Glioma \n",
"414 BRAF fusion gene, BRAF rearrangement, low-grad... \n",
"636 NaN \n",
"712 NaN \n",
"\n",
" Intervention(s) \\\n",
"82 Drug: Abemaciclib Administered orally Other Na... \n",
"87 AZD1390 + Radiation Therapy Drug: AZD1390 - AZ... \n",
"175 Group A: BPC Therapy Depending on the patient'... \n",
"263 Dosing frequency: 1 time /week Dose Levels Lev... \n",
"361 <cohort1> Lomustine 130 mg/m2 orally every 6 w... \n",
"401 The patient using the product should shave all... \n",
"414 Binimetinib is administered 45 mg orally, twic... \n",
"636 Patients will receive DSP-0390 orally once dai... \n",
"712 Inject the investigational drug (Cellm-001 or ... \n",
"\n",
" TargetWord \\\n",
"82 [High-Grade Glioma] \n",
"87 [Recurrent, Glioblastoma Multif, Me] \n",
"175 [Malignant Glioma] \n",
"263 [Recurrent, Glioblastoma] \n",
"361 [Glioma] \n",
"401 [Idh Wild-Type Glioma (Grade Iii) (Anaplastic ... \n",
"414 [Low-Grade Glioma, Pancreatic Cancer] \n",
"636 [Recurrent, High-Grade Glioma] \n",
"712 [Glioblastoma] \n",
"\n",
" TargetVec \n",
"82 [[-0.12244764715433121, -0.5778073668479919, -... \n",
"87 [[-0.2750183045864105, -0.5264511704444885, -0... \n",
"175 [[-0.33767956495285034, -0.4648125171661377, -... \n",
"263 [[-0.27501848340034485, -0.5264514088630676, -... \n",
"361 [[-0.21631155908107758, -0.5687925219535828, -... \n",
"401 [[-0.3403506577014923, -0.5657796859741211, -0... \n",
"414 [[-0.18604964017868042, -0.547483503818512, -0... \n",
"636 [[-0.2750183045864105, -0.5264511704444885, -0... \n",
"712 [[-0.15113382041454315, -0.5002245306968689, -... \n",
"\n",
"[9 rows x 41 columns]"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"get_matched_df(processed_df, \"glioma\", model, threshold=0.92)"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>JRCT ID</th>\n",
" <th>NCT No</th>\n",
" <th>JapicCTI No</th>\n",
" <th>Title</th>\n",
" <th>TargetJ</th>\n",
" <th>Target</th>\n",
" <th>TargetEnglish</th>\n",
" <th>研究・治験の目的</th>\n",
" <th>試験等のフェーズ</th>\n",
" <th>試験の種類</th>\n",
" <th>...</th>\n",
" <th>Inclusion Criteria</th>\n",
" <th>Exclusion Criteria</th>\n",
" <th>Age Minimum</th>\n",
" <th>Age Maximum</th>\n",
" <th>Gender</th>\n",
" <th>Discontinuation Criteria</th>\n",
" <th>Keyword</th>\n",
" <th>Intervention(s)</th>\n",
" <th>TargetWord</th>\n",
" <th>TargetVec</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>82</th>\n",
" <td>jRCT2051240121</td>\n",
" <td>NCT06413706</td>\n",
" <td>NaN</td>\n",
" <td>放射線療法後の悪性神経膠腫の小児および若年成人を対象に、アベマシクリブ+テモゾロミドとテモゾ...</td>\n",
" <td>悪性神経膠腫</td>\n",
" <td>悪性神経膠腫</td>\n",
" <td>High-Grade Glioma</td>\n",
" <td>放射線療法後の悪性神経膠腫を有する小児および若年成人を対象に、アベマシクリブとテモゾロミドの...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Subjects required to meet all the folloiwng cr...</td>\n",
" <td>Patients who meets any of the following criter...</td>\n",
" <td>No limit</td>\n",
" <td>21age old not</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Drug: Abemaciclib Administered orally Other Na...</td>\n",
" <td>[High-Grade Glioma]</td>\n",
" <td>[[tensor(-0.1224), tensor(-0.5778), tensor(-0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>87</th>\n",
" <td>jRCT2051240119</td>\n",
" <td>NCT03423628</td>\n",
" <td>NaN</td>\n",
" <td>多形性膠芽腫患者及び固形がんの脳転移患者を対象に、放射線療法併用下でAZD1390を漸増投与...</td>\n",
" <td>再発多形性膠芽腫</td>\n",
" <td>再発多形性膠芽腫</td>\n",
" <td>Recurrent Glioblastoma Multiforme</td>\n",
" <td>Treatment</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Provision of formalin-fixed paraffin embedde...</td>\n",
" <td>- Administration of chemotherapy or any invest...</td>\n",
" <td>18age old over</td>\n",
" <td>130age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>AZD1390 + Radiation Therapy Drug: AZD1390 - AZ...</td>\n",
" <td>[Recurrent, Glioblastoma Multif, Me]</td>\n",
" <td>[[tensor(-0.2750), tensor(-0.5265), tensor(-0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>175</th>\n",
" <td>jRCT2031240090</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>再発悪性神経膠腫に対する治療用放射性薬剤64Cu-ATSMの有効性を検証するランダム化比較医...</td>\n",
" <td>悪性神経膠腫</td>\n",
" <td>悪性神経膠腫</td>\n",
" <td>Malignant glioma</td>\n",
" <td>再発・難治性悪性神経膠腫を対象として、64Cu-diacetyl-bis(N4-methyl...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>1) Histologically diagnosed as high grade glio...</td>\n",
" <td>1) Have a history or merger of other malignanc...</td>\n",
" <td>18age old over</td>\n",
" <td>75age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>glioblastoma, grade3/4 astrocytoma, grade3 oli...</td>\n",
" <td>Group A: BPC Therapy Depending on the patient'...</td>\n",
" <td>[Malignant Glioma]</td>\n",
" <td>[[tensor(-0.3377), tensor(-0.4648), tensor(-0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>263</th>\n",
" <td>jRCT2041230136</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>再発膠芽腫に対するTUG1を標的とした核酸医薬医師主導第I相試験</td>\n",
" <td>再発膠芽腫</td>\n",
" <td>再発膠芽腫</td>\n",
" <td>recurrent glioblastoma</td>\n",
" <td>再発膠芽腫患者を対象としてTUG1ASOを投与した場合の投与時の安全性を検討し、至適投与量を...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>(1) Patients with a histological diagnosis of ...</td>\n",
" <td>(1) Patients with extracerebral metastases. (2...</td>\n",
" <td>18age old over</td>\n",
" <td>75age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Dosing frequency: 1 time /week Dose Levels Lev...</td>\n",
" <td>[Recurrent, Glioblastoma]</td>\n",
" <td>[[tensor(-0.2750), tensor(-0.5265), tensor(-0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>272</th>\n",
" <td>jRCT2032230554</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>初発膠芽腫に対する新型高出力中性子線源を用いた加速器BNCT装置iBNCT001及びSPM-...</td>\n",
" <td>初発膠芽腫</td>\n",
" <td>初発膠芽腫</td>\n",
" <td>Newly-diagnosed glioblastoma</td>\n",
" <td>治験機器iBNCT001及び治験薬SPM-011を用いたホウ素中性子捕捉療法(BNCT)に、...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>- Karnofsky Performance Status is greater than...</td>\n",
" <td>- Multiple lesions, bilateral lesions, dissemi...</td>\n",
" <td>18age old over</td>\n",
" <td>85age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>boron, neutron, glioblastoma</td>\n",
" <td>- Intravenous administration of investigationa...</td>\n",
" <td>[Newly-Diagnosed Glioblastoma]</td>\n",
" <td>[[tensor(-0.5050), tensor(-0.8343), tensor(-0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>361</th>\n",
" <td>jRCT2051230069</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>神経膠腫患者に対するロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併⽤療法の安全...</td>\n",
" <td>神経膠腫</td>\n",
" <td>神経膠腫</td>\n",
" <td>Glioma</td>\n",
" <td>神経膠腫患者におけるロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併用療法の安全...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td><Cohort 1> All of the following items shall be...</td>\n",
" <td><Common to Cohort 1 and Cohort 2> 1) Active mu...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td><cohort1> Lomustine 130 mg/m2 orally every 6 w...</td>\n",
" <td>[Glioma]</td>\n",
" <td>[[tensor(-0.2163), tensor(-0.5688), tensor(-0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>401</th>\n",
" <td>jRCT2032230060</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>初発IDH野生型低悪性度神経膠腫に対する交流電場腫瘍治療システムの有効性と安全性を検証する多...</td>\n",
" <td>IDH野生型神経膠腫(グレードⅢ)(退形成性星細胞腫)</td>\n",
" <td>IDH野生型神経膠腫(グレードIII)(退形成性星細胞腫)</td>\n",
" <td>IDH wild-type glioma (grade III) (anaplastic a...</td>\n",
" <td>初発IDH野生型低悪性度神経膠腫を対象に、放射線化学療法後のテモゾロミド維持療法期における交...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>At the time of enrollment, patients will be in...</td>\n",
" <td>Any of the following conditions shall not appl...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>Glioma</td>\n",
" <td>The patient using the product should shave all...</td>\n",
" <td>[Idh Wild-Type Glioma (Grade Iii) (Anaplastic ...</td>\n",
" <td>[[tensor(-0.3404), tensor(-0.5658), tensor(-0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>414</th>\n",
" <td>jRCT2031230007</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>BRAF融合遺伝子陽性の進行・再発の低悪性度神経膠腫または膵癌に対するビニメチニブの第Ⅱ相医...</td>\n",
" <td>低悪性度神経膠腫、膵癌</td>\n",
" <td>低悪性度神経膠腫、膵癌</td>\n",
" <td>Low-grade glioma, pancreatic cancer</td>\n",
" <td>BRAF融合遺伝子または遺伝子再構成陽性の切除不能または再発の低悪性度神経膠腫(コホート A...</td>\n",
" <td>2</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>Inclusion criteria for both cohort A and B 1) ...</td>\n",
" <td>1) Active double primary cancer (but not (1)-(...</td>\n",
" <td>12age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>BRAF fusion gene, BRAF rearrangement, low-grad...</td>\n",
" <td>Binimetinib is administered 45 mg orally, twic...</td>\n",
" <td>[Low-Grade Glioma, Pancreatic Cancer]</td>\n",
" <td>[[tensor(-0.1860), tensor(-0.5475), tensor(-0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>636</th>\n",
" <td>jRCT2031210299</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>再発悪性神経膠腫患者を対象としたDSP-0390の第1相試験</td>\n",
" <td>再発悪性神経膠腫</td>\n",
" <td>再発悪性神経膠腫</td>\n",
" <td>Recurrent High-Grade Glioma</td>\n",
" <td>再発悪性神経膠腫患者を対象にDSP-0390を経口投与したときの安全性、薬物動態、薬力学及び...</td>\n",
" <td>1</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>1. Estimated life expectancy >= 3 months 2. Re...</td>\n",
" <td>1. Prior therapy with bevacizumab or other ant...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Patients will receive DSP-0390 orally once dai...</td>\n",
" <td>[Recurrent, High-Grade Glioma]</td>\n",
" <td>[[tensor(-0.2750), tensor(-0.5265), tensor(-0....</td>\n",
" </tr>\n",
" <tr>\n",
" <th>712</th>\n",
" <td>jRCT2031200153</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Cellm-001による初発膠芽腫治療効果無作為比較対照試験</td>\n",
" <td>膠芽腫</td>\n",
" <td>膠芽腫</td>\n",
" <td>glioblastoma</td>\n",
" <td>脳腫瘍のうち、初発悪性膠芽腫に対する自家脳腫瘍免疫賦活剤であるCellm-001について、術...</td>\n",
" <td>3</td>\n",
" <td>NaN</td>\n",
" <td>...</td>\n",
" <td>(1) 18 years old or older and 75 years old or ...</td>\n",
" <td>(1) Systemic administration of corticosteroids...</td>\n",
" <td>18age old over</td>\n",
" <td>75age old under</td>\n",
" <td>Both</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>Inject the investigational drug (Cellm-001 or ...</td>\n",
" <td>[Glioblastoma]</td>\n",
" <td>[[tensor(-0.1511), tensor(-0.5002), tensor(-0....</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>10 rows × 41 columns</p>\n",
"</div>"
],
"text/plain": [
" JRCT ID NCT No JapicCTI No \\\n",
"82 jRCT2051240121 NCT06413706 NaN \n",
"87 jRCT2051240119 NCT03423628 NaN \n",
"175 jRCT2031240090 NaN NaN \n",
"263 jRCT2041230136 NaN NaN \n",
"272 jRCT2032230554 NaN NaN \n",
"361 jRCT2051230069 NaN NaN \n",
"401 jRCT2032230060 NaN NaN \n",
"414 jRCT2031230007 NaN NaN \n",
"636 jRCT2031210299 NaN NaN \n",
"712 jRCT2031200153 NaN NaN \n",
"\n",
" Title \\\n",
"82 放射線療法後の悪性神経膠腫の小児および若年成人を対象に、アベマシクリブ+テモゾロミドとテモゾ... \n",
"87 多形性膠芽腫患者及び固形がんの脳転移患者を対象に、放射線療法併用下でAZD1390を漸増投与... \n",
"175 再発悪性神経膠腫に対する治療用放射性薬剤64Cu-ATSMの有効性を検証するランダム化比較医... \n",
"263 再発膠芽腫に対するTUG1を標的とした核酸医薬医師主導第I相試験 \n",
"272 初発膠芽腫に対する新型高出力中性子線源を用いた加速器BNCT装置iBNCT001及びSPM-... \n",
"361 神経膠腫患者に対するロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併⽤療法の安全... \n",
"401 初発IDH野生型低悪性度神経膠腫に対する交流電場腫瘍治療システムの有効性と安全性を検証する多... \n",
"414 BRAF融合遺伝子陽性の進行・再発の低悪性度神経膠腫または膵癌に対するビニメチニブの第Ⅱ相医... \n",
"636 再発悪性神経膠腫患者を対象としたDSP-0390の第1相試験 \n",
"712 Cellm-001による初発膠芽腫治療効果無作為比較対照試験 \n",
"\n",
" TargetJ Target \\\n",
"82 悪性神経膠腫 悪性神経膠腫 \n",
"87 再発多形性膠芽腫 再発多形性膠芽腫 \n",
"175 悪性神経膠腫 悪性神経膠腫 \n",
"263 再発膠芽腫 再発膠芽腫 \n",
"272 初発膠芽腫 初発膠芽腫 \n",
"361 神経膠腫 神経膠腫 \n",
"401 IDH野生型神経膠腫(グレードⅢ)(退形成性星細胞腫) IDH野生型神経膠腫(グレードIII)(退形成性星細胞腫) \n",
"414 低悪性度神経膠腫、膵癌 低悪性度神経膠腫、膵癌 \n",
"636 再発悪性神経膠腫 再発悪性神経膠腫 \n",
"712 膠芽腫 膠芽腫 \n",
"\n",
" TargetEnglish \\\n",
"82 High-Grade Glioma \n",
"87 Recurrent Glioblastoma Multiforme \n",
"175 Malignant glioma \n",
"263 recurrent glioblastoma \n",
"272 Newly-diagnosed glioblastoma \n",
"361 Glioma \n",
"401 IDH wild-type glioma (grade III) (anaplastic a... \n",
"414 Low-grade glioma, pancreatic cancer \n",
"636 Recurrent High-Grade Glioma \n",
"712 glioblastoma \n",
"\n",
" 研究・治験の目的 試験等のフェーズ 試験の種類 ... \\\n",
"82 放射線療法後の悪性神経膠腫を有する小児および若年成人を対象に、アベマシクリブとテモゾロミドの... 2 NaN ... \n",
"87 Treatment 1 NaN ... \n",
"175 再発・難治性悪性神経膠腫を対象として、64Cu-diacetyl-bis(N4-methyl... 3 NaN ... \n",
"263 再発膠芽腫患者を対象としてTUG1ASOを投与した場合の投与時の安全性を検討し、至適投与量を... 1 NaN ... \n",
"272 治験機器iBNCT001及び治験薬SPM-011を用いたホウ素中性子捕捉療法(BNCT)に、... 1 NaN ... \n",
"361 神経膠腫患者におけるロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併用療法の安全... 1 NaN ... \n",
"401 初発IDH野生型低悪性度神経膠腫を対象に、放射線化学療法後のテモゾロミド維持療法期における交... 2 NaN ... \n",
"414 BRAF融合遺伝子または遺伝子再構成陽性の切除不能または再発の低悪性度神経膠腫(コホート A... 2 NaN ... \n",
"636 再発悪性神経膠腫患者を対象にDSP-0390を経口投与したときの安全性、薬物動態、薬力学及び... 1 NaN ... \n",
"712 脳腫瘍のうち、初発悪性膠芽腫に対する自家脳腫瘍免疫賦活剤であるCellm-001について、術... 3 NaN ... \n",
"\n",
" Inclusion Criteria \\\n",
"82 Subjects required to meet all the folloiwng cr... \n",
"87 - Provision of formalin-fixed paraffin embedde... \n",
"175 1) Histologically diagnosed as high grade glio... \n",
"263 (1) Patients with a histological diagnosis of ... \n",
"272 - Karnofsky Performance Status is greater than... \n",
"361 <Cohort 1> All of the following items shall be... \n",
"401 At the time of enrollment, patients will be in... \n",
"414 Inclusion criteria for both cohort A and B 1) ... \n",
"636 1. Estimated life expectancy >= 3 months 2. Re... \n",
"712 (1) 18 years old or older and 75 years old or ... \n",
"\n",
" Exclusion Criteria Age Minimum \\\n",
"82 Patients who meets any of the following criter... No limit \n",
"87 - Administration of chemotherapy or any invest... 18age old over \n",
"175 1) Have a history or merger of other malignanc... 18age old over \n",
"263 (1) Patients with extracerebral metastases. (2... 18age old over \n",
"272 - Multiple lesions, bilateral lesions, dissemi... 18age old over \n",
"361 <Common to Cohort 1 and Cohort 2> 1) Active mu... 18age old over \n",
"401 Any of the following conditions shall not appl... 18age old over \n",
"414 1) Active double primary cancer (but not (1)-(... 12age old over \n",
"636 1. Prior therapy with bevacizumab or other ant... 18age old over \n",
"712 (1) Systemic administration of corticosteroids... 18age old over \n",
"\n",
" Age Maximum Gender Discontinuation Criteria \\\n",
"82 21age old not NaN NaN \n",
"87 130age old under Both NaN \n",
"175 75age old under Both NaN \n",
"263 75age old under Both NaN \n",
"272 85age old under Both NaN \n",
"361 No limit Both NaN \n",
"401 No limit Both NaN \n",
"414 No limit Both NaN \n",
"636 No limit Both NaN \n",
"712 75age old under Both NaN \n",
"\n",
" Keyword \\\n",
"82 NaN \n",
"87 NaN \n",
"175 glioblastoma, grade3/4 astrocytoma, grade3 oli... \n",
"263 NaN \n",
"272 boron, neutron, glioblastoma \n",
"361 NaN \n",
"401 Glioma \n",
"414 BRAF fusion gene, BRAF rearrangement, low-grad... \n",
"636 NaN \n",
"712 NaN \n",
"\n",
" Intervention(s) \\\n",
"82 Drug: Abemaciclib Administered orally Other Na... \n",
"87 AZD1390 + Radiation Therapy Drug: AZD1390 - AZ... \n",
"175 Group A: BPC Therapy Depending on the patient'... \n",
"263 Dosing frequency: 1 time /week Dose Levels Lev... \n",
"272 - Intravenous administration of investigationa... \n",
"361 <cohort1> Lomustine 130 mg/m2 orally every 6 w... \n",
"401 The patient using the product should shave all... \n",
"414 Binimetinib is administered 45 mg orally, twic... \n",
"636 Patients will receive DSP-0390 orally once dai... \n",
"712 Inject the investigational drug (Cellm-001 or ... \n",
"\n",
" TargetWord \\\n",
"82 [High-Grade Glioma] \n",
"87 [Recurrent, Glioblastoma Multif, Me] \n",
"175 [Malignant Glioma] \n",
"263 [Recurrent, Glioblastoma] \n",
"272 [Newly-Diagnosed Glioblastoma] \n",
"361 [Glioma] \n",
"401 [Idh Wild-Type Glioma (Grade Iii) (Anaplastic ... \n",
"414 [Low-Grade Glioma, Pancreatic Cancer] \n",
"636 [Recurrent, High-Grade Glioma] \n",
"712 [Glioblastoma] \n",
"\n",
" TargetVec \n",
"82 [[tensor(-0.1224), tensor(-0.5778), tensor(-0.... \n",
"87 [[tensor(-0.2750), tensor(-0.5265), tensor(-0.... \n",
"175 [[tensor(-0.3377), tensor(-0.4648), tensor(-0.... \n",
"263 [[tensor(-0.2750), tensor(-0.5265), tensor(-0.... \n",
"272 [[tensor(-0.5050), tensor(-0.8343), tensor(-0.... \n",
"361 [[tensor(-0.2163), tensor(-0.5688), tensor(-0.... \n",
"401 [[tensor(-0.3404), tensor(-0.5658), tensor(-0.... \n",
"414 [[tensor(-0.1860), tensor(-0.5475), tensor(-0.... \n",
"636 [[tensor(-0.2750), tensor(-0.5265), tensor(-0.... \n",
"712 [[tensor(-0.1511), tensor(-0.5002), tensor(-0.... \n",
"\n",
"[10 rows x 41 columns]"
]
},
"execution_count": 28,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"get_matched_df(processed_df, \"glioma\", model, threshold=0.9)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "gradio",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
|