File size: 277,116 Bytes
60780eb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 | [
{
"input": "Patient Amelia Johnson presented with severe abdominal pain at Sacred Heart Hospital on August 29, 2021.",
"output": "Patient <name> presented with severe abdominal pain at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <name> presented with severe abdominal pain at <hospital> on <date>.\nDe-identified: Patient <name> presented with severe abdominal pain at <hospital> on <date>."
},{
"input": "Joshua Stewart was diagnosed with Type 1 diabetes by Dr. Laura Thompson on October 4, 2020.",
"output": "<name> was diagnosed with Type 1 diabetes by Dr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name> was diagnosed with Type 1 diabetes by Dr. <name> on <date>.\nDe-identified: <name> was diagnosed with Type 1 diabetes by Dr. <name> on <date>."
},{
"input": "Prescription refilled for Emma Wilson (patient number 858728) - 100mg Zoloft daily, effective from September 15, 2021.",
"output": "Prescription refilled for <name> (patient number <id>) - 100mg Zoloft daily, effective from <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Prescription refilled for <name> (patient number <id>) - 100mg Zoloft daily, effective from <date>.\nDe-identified: Prescription refilled for <name> (patient number <id>) - 100mg Zoloft daily, effective from <date>."
},{
"input": "Ryan Grant had an appendectomy performed by Dr. Nancy Carter at Fairview Medical Center on November 11, 2023.",
"output": "<name> had an appendectomy performed by Dr. <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had an appendectomy performed by Dr. <name> at <hospital> on <date>.\nDe-identified: <name> had an appendectomy performed by Dr. <name> at <hospital> on <date>."
},{
"input": "Health record for Harry Peterson: PatientID - 987654, Medication: Aspirin, Dosage: 81 mg, Date: February 5, 2022.",
"output": "Health record for <name>: PatientID - <id>, Medication: Aspirin, Dosage: 81 mg, Date: <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Health record for <name>: PatientID - <id>, Medication: Aspirin, Dosage: 81 mg, Date: <date>.\nDe-identified: Health record for <name>: PatientID - <id>, Medication: Aspirin, Dosage: 81 mg, Date: <date>."
},{
"input": "Eleanor Mitchell underwent a knee replacement surgery at Cherry Hill Hospital on April 2, 2022.",
"output": "<name> underwent a knee replacement surgery at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> underwent a knee replacement surgery at <hospital> on <date>.\nDe-identified: <name> underwent a knee replacement surgery at <hospital> on <date>."
},{
"input": "Medical examination for Oliver Turner on January 9, 2023 at the Central Clinic found no significant issues.",
"output": "Medical examination for <name> on <date> at the <hospital> found no significant issues.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: Medical examination for <name> on <date> at the <hospital> found no significant issues.\nDe-identified: Medical examination for <name> on <date> at the <hospital> found no significant issues."
},{
"input": "Patient ID 538295, Isabella Cooper, had thyroid gland ultrasound at Brookside Clinic on September 23, 2019.",
"output": "Patient ID <id>, <name>, had thyroid gland ultrasound at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID <id>, <name>, had thyroid gland ultrasound at <hospital> on <date>.\nDe-identified: Patient ID <id>, <name>, had thyroid gland ultrasound at <hospital> on <date>."
},{
"input": "Sofia Parker's biopsy results from April 30, 2020 indicated a malignant tumor in the right breast.",
"output": "<name>'s biopsy results from <date> indicated a malignant tumor in the right breast.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s biopsy results from <date> indicated a malignant tumor in the right breast.\nDe-identified: <name>'s biopsy results from <date> indicated a malignant tumor in the right breast."
},{
"input": "MRI results from Hill Country Health Center on May 12, 2023 showed lumbar disc herniation for Mr. John Reid.",
"output": "MRI results from <hospital> on <date> showed lumbar disc herniation for Mr. <name>.",
"extracted": [
"<hospital>",
"<date>",
"<name>"
],
"training": "Original: MRI results from <hospital> on <date> showed lumbar disc herniation for Mr. <name>.\nDe-identified: MRI results from <hospital> on <date> showed lumbar disc herniation for Mr. <name>."
},{
"input": "Carl Black underwent a successful kidney transplant at Memorial Hospital on July 25, 2022.",
"output": "<name> underwent a successful kidney transplant at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> underwent a successful kidney transplant at <hospital> on <date>.\nDe-identified: <name> underwent a successful kidney transplant at <hospital> on <date>."
},{
"input": "Patient ID: 395824, Rebecca White, attended a follow-up appointment for her diabetes on November 20, 2023.",
"output": "Patient ID: <id>, <name>, attended a follow-up appointment for her diabetes on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, attended a follow-up appointment for her diabetes on <date>.\nDe-identified: Patient ID: <id>, <name>, attended a follow-up appointment for her diabetes on <date>."
},{
"input": "Richard Johnson, MRN: 134222, has been experiencing persistent migraines for the last 6 months.",
"output": "<name>, MRN: <id>, has been experiencing persistent migraines for the last 6 months.",
"extracted": [
"<name>",
"<id>"
],
"training": "Original: <name>, MRN: <id>, has been experiencing persistent migraines for the last 6 months.\nDe-identified: <name>, MRN: <id>, has been experiencing persistent migraines for the last 6 months."
},{
"input": "At University Hospital on May 9, 2023, Laura McKenzie had a pap smear which came back normal.",
"output": "At <hospital> on <date>, <name> had a pap smear which came back normal.",
"extracted": [
"<hospital>",
"<date>",
"<name>"
],
"training": "Original: At <hospital> on <date>, <name> had a pap smear which came back normal.\nDe-identified: At <hospital> on <date>, <name> had a pap smear which came back normal."
},{
"input": "Janet Brody's X-ray taken on February 27, 2023 revealed a small pneumothorax at Redwood Medical Center.",
"output": "<name>'s X-ray taken on <date> revealed a small pneumothorax at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name>'s X-ray taken on <date> revealed a small pneumothorax at <hospital>.\nDe-identified: <name>'s X-ray taken on <date> revealed a small pneumothorax at <hospital>."
},{
"input": "Edward Green, patient number 987123, was diagnosed with Stage 3 Chronic Kidney Disease on August 8, 2023.",
"output": "<name>, patient number <id>, was diagnosed with Stage 3 Chronic Kidney Disease on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, patient number <id>, was diagnosed with Stage 3 Chronic Kidney Disease on <date>.\nDe-identified: <name>, patient number <id>, was diagnosed with Stage 3 Chronic Kidney Disease on <date>."
},{
"input": "Samantha Rodriguez had her annual eye exam at Grand Medical Clinic on September 5, 2022; her vision was found to be 20/20.",
"output": "<name> had her annual eye exam at <hospital> on <date>; her vision was found to be 20/20.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had her annual eye exam at <hospital> on <date>; her vision was found to be 20/20.\nDe-identified: <name> had her annual eye exam at <hospital> on <date>; her vision was found to be 20/20."
},{
"input": "Jane Patterson's pharmacy dispensed her hypertension medication, Lisinopril 10 mg, on October 15, 2023.",
"output": "<name>'s pharmacy dispensed her hypertension medication, Lisinopril 10 mg, on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s pharmacy dispensed her hypertension medication, Lisinopril 10 mg, on <date>.\nDe-identified: <name>'s pharmacy dispensed her hypertension medication, Lisinopril 10 mg, on <date>."
},{
"input": "Twinbrook Healthcare Center discharged Martha Clark on February 3, 2023 after her recovery from pneumonia.",
"output": "<hospital> discharged <name> on <date> after her recovery from pneumonia.",
"extracted": [
"<hospital>",
"<name>",
"<date>"
],
"training": "Original: <hospital> discharged <name> on <date> after her recovery from pneumonia.\nDe-identified: <hospital> discharged <name> on <date> after her recovery from pneumonia."
},{
"input": "Allen Fisher, born on December 5, 1968, had a colonoscopy at Primrose Medical Institution on July 10, 2023, which showed no evidence of polyps.",
"output": "<name>, born on <date>, had a colonoscopy at <hospital> on <date>, which showed no evidence of polyps.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, born on <date>, had a colonoscopy at <hospital> on <date>, which showed no evidence of polyps.\nDe-identified: <name>, born on <date>, had a colonoscopy at <hospital> on <date>, which showed no evidence of polyps."
},{
"input": "Dr. Johnson requested a bone density test for Karen Smith, which was completed at Boston General Hospital on July 5, 2023.",
"output": "Dr. <name> requested a bone density test for <name>, which was completed at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Dr. <name> requested a bone density test for <name>, which was completed at <hospital> on <date>.\nDe-identified: Dr. <name> requested a bone density test for <name>, which was completed at <hospital> on <date>."
},{
"input": "Migraine medication was prescribed by Dr. Patel to Sarah Thompson on August 23, 2022.",
"output": "Migraine medication was prescribed by Dr. <name> to <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Migraine medication was prescribed by Dr. <name> to <name> on <date>.\nDe-identified: Migraine medication was prescribed by Dr. <name> to <name> on <date>."
},{
"input": "Michael Ellis underwent an appendectomy at New York Presbyterian Hospital on March 27, 2023.",
"output": "<name> underwent an appendectomy at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> underwent an appendectomy at <hospital> on <date>.\nDe-identified: <name> underwent an appendectomy at <hospital> on <date>."
},{
"input": "Patient ID: 423875, Jane Brown, visited the oncologist on February 17, 2022, for a follow-up appointment.",
"output": "Patient ID: <id>, <name>, visited the oncologist on <date> for a follow-up appointment.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, visited the oncologist on <date> for a follow-up appointment.\nDe-identified: Patient ID: <id>, <name>, visited the oncologist on <date> for a follow-up appointment."
},{
"input": "Derek James' blood sugar was 200 mg/dL on April 30, 2023, indicating pre-diabetes.",
"output": "<name>'s blood sugar was 200 mg/dL on <date>, indicating pre-diabetes.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s blood sugar was 200 mg/dL on <date>, indicating pre-diabetes.\nDe-identified: <name>'s blood sugar was 200 mg/dL on <date>, indicating pre-diabetes."
},{
"input": "Allergy test results for Linda Martinez showed positive results for peanuts, taken at St. Luke's Hospital on August 11, 2023.",
"output": "Allergy test results for <name> showed positive results for peanuts, taken at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Allergy test results for <name> showed positive results for peanuts, taken at <hospital> on <date>.\nDe-identified: Allergy test results for <name> showed positive results for peanuts, taken at <hospital> on <date>."
},{
"input": "Dr. Katherine Li recommended a flu vaccine to patient Rebecca Adams on October 1, 2022.",
"output": "Dr. <name> recommended a flu vaccine to patient <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> recommended a flu vaccine to patient <name> on <date>.\nDe-identified: Dr. <name> recommended a flu vaccine to patient <name> on <date>."
},{
"input": "Steven Rodriguez, patient ID 993784, had an elevated white blood cell count on July 22, 2023.",
"output": "<name>, patient ID <id>, had an elevated white blood cell count on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, patient ID <id>, had an elevated white blood cell count on <date>.\nDe-identified: <name>, patient ID <id>, had an elevated white blood cell count on <date>."
},{
"input": "Abigail Wilson, born May 18, 1988, received a referral for a sleep study on June 29, 2023.",
"output": "<name>, born <date>, received a referral for a sleep study on <date>.",
"extracted": [
"<name>",
"<date>",
"<date>"
],
"training": "Original: <name>, born <date>, received a referral for a sleep study on <date>.\nDe-identified: <name>, born <date>, received a referral for a sleep study on <date>."
},{
"input": "Tom Davis' angiogram at Mercy Hospital on April 12, 2023, revealed no significant blockage.",
"output": "<name>'s angiogram at <hospital> on <date> revealed no significant blockage.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s angiogram at <hospital> on <date> revealed no significant blockage.\nDe-identified: <name>'s angiogram at <hospital> on <date> revealed no significant blockage."
},{
"input": "Ryan Wilson underwent a tonsillectomy at Green Valley Medical Center on August 15, 2022.",
"output": "<name> underwent a tonsillectomy at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> underwent a tonsillectomy at <hospital> on <date>.\nDe-identified: <name> underwent a tonsillectomy at <hospital> on <date>."
},{
"input": "Dr. Samantha Lee prescribed Tamiflu to patient Emily Green suffering from influenza on November 20, 2023.",
"output": "Dr. <name> prescribed Tamiflu to patient <name> suffering from influenza on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> prescribed Tamiflu to patient <name> suffering from influenza on <date>.\nDe-identified: Dr. <name> prescribed Tamiflu to patient <name> suffering from influenza on <date>."
},{
"input": "Patient ID: 256387, Harold Smith, had a colonoscopy performed at United Health Center on July 16, 2023, which revealed polyps.",
"output": "Patient ID: <id>, <name>, had a colonoscopy performed at <hospital> on <date>, which revealed polyps.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, had a colonoscopy performed at <hospital> on <date>, which revealed polyps.\nDe-identified: Patient ID: <id>, <name>, had a colonoscopy performed at <hospital> on <date>, which revealed polyps."
},{
"input": "The x-ray of Luciana Gomez's broken arm was taken at Mercy Hospital on September 24, 2022.",
"output": "The x-ray of <name>'s broken arm was taken at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: The x-ray of <name>'s broken arm was taken at <hospital> on <date>.\nDe-identified: The x-ray of <name>'s broken arm was taken at <hospital> on <date>."
},{
"input": "Patient: Kevin Parker, Date of Birth: October 31, 1990, has been diagnosed with Type 1 Diabetes.",
"output": "Patient: <name>, Date of Birth: <date>, has been diagnosed with Type 1 Diabetes.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Patient: <name>, Date of Birth: <date>, has been diagnosed with Type 1 Diabetes.\nDe-identified: Patient: <name>, Date of Birth: <date>, has been diagnosed with Type 1 Diabetes."
},{
"input": "On April 15, 2022, Ella Mason received her first dose of Pfizer's COVID-19 vaccine at Modern Clinic.",
"output": "On <date>, <name> received her first dose of Pfizer's COVID-19 vaccine at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name> received her first dose of Pfizer's COVID-19 vaccine at <hospital>.\nDe-identified: On <date>, <name> received her first dose of Pfizer's COVID-19 vaccine at <hospital>."
},{
"input": "Jane Stewart's medical record number is MRN62819; her eye exam was negative for glaucoma on August 2, 2022.",
"output": "<name>'s medical record number is <id>; her eye exam was negative for glaucoma on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>'s medical record number is <id>; her eye exam was negative for glaucoma on <date>.\nDe-identified: <name>'s medical record number is <id>; her eye exam was negative for glaucoma on <date>."
},{
"input": "Jack White, patient 759202, had his pacemaker battery replaced on July 15, 2023, at City Hospital North.",
"output": "<name>, patient <id>, had his pacemaker battery replaced on <date> at <hospital>.",
"extracted": [
"<name>",
"<id>",
"<date>",
"<hospital>"
],
"training": "Original: <name>, patient <id>, had his pacemaker battery replaced on <date> at <hospital>.\nDe-identified: <name>, patient <id>, had his pacemaker battery replaced on <date> at <hospital>."
},{
"input": "Susan Harris underwent an appendectomy on May 17, 2023, by Dr. Johnathan Adams at Regional Medical Center.",
"output": "<name> underwent an appendectomy on <date> by Dr. <name> at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: <name> underwent an appendectomy on <date> by Dr. <name> at <hospital>.\nDe-identified: <name> underwent an appendectomy on <date> by Dr. <name> at <hospital>."
},{
"input": "Karen Sanchez visited West Clinic on February 19, 2023, for a follow-up consultation after her left knee surgery.",
"output": "<name> visited <hospital> on <date> for a follow-up consultation after her left knee surgery.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> visited <hospital> on <date> for a follow-up consultation after her left knee surgery.\nDe-identified: <name> visited <hospital> on <date> for a follow-up consultation after her left knee surgery."
},{
"input": "Patient ID 234897, Laura Wilson, had a gallbladder ultrasound at Mercy General Hospital on September 2, 2022.",
"output": "Patient ID <id>, <name>, had a gallbladder ultrasound at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID <id>, <name>, had a gallbladder ultrasound at <hospital> on <date>.\nDe-identified: Patient ID <id>, <name>, had a gallbladder ultrasound at <hospital> on <date>."
},{
"input": "Gary Jenkins, born August 17, 1964, experienced a severe allergic reaction after consuming peanuts.",
"output": "<name>, born <date>, experienced a severe allergic reaction after consuming peanuts.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>, born <date>, experienced a severe allergic reaction after consuming peanuts.\nDe-identified: <name>, born <date>, experienced a severe allergic reaction after consuming peanuts."
},{
"input": "Dr. Jonathan Reyes requested an echocardiogram for patient Emily Baker on October 14, 2022.",
"output": "Dr. <name> requested an echocardiogram for patient <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> requested an echocardiogram for patient <name> on <date>.\nDe-identified: Dr. <name> requested an echocardiogram for patient <name> on <date>."
},{
"input": "Hospital Name: Brightview Clinic, Patient: Judy Evans, Insurance Provider: Aetna, Effective Date: June 3, 2022.",
"output": "Hospital Name: <hospital>, Patient: <name>, Insurance Provider: Aetna, Effective Date: <date>.",
"extracted": [
"<hospital>",
"<name>",
"<date>"
],
"training": "Original: Hospital Name: <hospital>, Patient: <name>, Insurance Provider: Aetna, Effective Date: <date>.\nDe-identified: Hospital Name: <hospital>, Patient: <name>, Insurance Provider: Aetna, Effective Date: <date>."
},{
"input": "Danny Garcia's x-ray showed a double lung pneumonia; x-ray was taken on November 5, 2022, at Boston General Hospital.",
"output": "<name>'s x-ray showed a double lung pneumonia; x-ray was taken on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name>'s x-ray showed a double lung pneumonia; x-ray was taken on <date>, at <hospital>.\nDe-identified: <name>'s x-ray showed a double lung pneumonia; x-ray was taken on <date>, at <hospital>."
},{
"input": "Patient 675945, Dr. Samantha Wang noticed signs of jaundice during a clinical examination on July 22, 2022.",
"output": "Patient <id>, Dr. <name> noticed signs of jaundice during a clinical examination on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient <id>, Dr. <name> noticed signs of jaundice during a clinical examination on <date>.\nDe-identified: Patient <id>, Dr. <name> noticed signs of jaundice during a clinical examination on <date>."
},{
"input": "On September 30, 2022, Crystal Johnson started her chemotherapy treatment at Providence Medical Center.",
"output": "On <date>, <name> started her chemotherapy treatment at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name> started her chemotherapy treatment at <hospital>.\nDe-identified: On <date>, <name> started her chemotherapy treatment at <hospital>."
},{
"input": "Allison Stewart had her blood glucose levels checked at Riverside Hospital on May 18, 2022, and they were recorded at 180.",
"output": "<name> had her blood glucose levels checked at <hospital> on <date>, and they were recorded at 180.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had her blood glucose levels checked at <hospital> on <date>, and they were recorded at 180.\nDe-identified: <name> had her blood glucose levels checked at <hospital> on <date>, and they were recorded at 180."
},{
"input": "Health Navigator, Sam Thompson, recommended cardiac rehab to patient Tina Lewis; her heart surgery occurred on October 8, 2022.",
"output": "Health Navigator, <name>, recommended cardiac rehab to patient <name>; her heart surgery occurred on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Health Navigator, <name>, recommended cardiac rehab to patient <name>; her heart surgery occurred on <date>.\nDe-identified: Health Navigator, <name>, recommended cardiac rehab to patient <name>; her heart surgery occurred on <date>."
},{
"input": "Patrick Green, DOB: February 1, 1990, reported shortness of breath during a follow-up appointment at Metroplex Clinic on April 30, 2022.",
"output": "<name>, DOB: <date>, reported shortness of breath during a follow-up appointment at <hospital> on <date>.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, DOB: <date>, reported shortness of breath during a follow-up appointment at <hospital> on <date>.\nDe-identified: <name>, DOB: <date>, reported shortness of breath during a follow-up appointment at <hospital> on <date>."
},{
"input": "Admission Date: September 15, 2020, Discharge Date: October 4, 2020, Doctor: Dr. Samuel Wright, Diagnosed Condition: Congestive Heart Failure.",
"output": "Admission Date: <date>, Discharge Date: <date>, Doctor: Dr. <name>, Diagnosed Condition: Congestive Heart Failure.",
"extracted": [
"<date>",
"<date>",
"<name>"
],
"training": "Original: Admission Date: <date>, Discharge Date: <date>, Doctor: Dr. <name>, Diagnosed Condition: Congestive Heart Failure.\nDe-identified: Admission Date: <date>, Discharge Date: <date>, Doctor: Dr. <name>, Diagnosed Condition: Congestive Heart Failure."
},{
"input": "Nurse Ana Smith informed Kevin James' family of his successful surgery at Saint Petersburg Medical Center on July 20, 2021.",
"output": "Nurse <name> informed <name>'s family of his successful surgery at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Nurse <name> informed <name>'s family of his successful surgery at <hospital> on <date>.\nDe-identified: Nurse <name> informed <name>'s family of his successful surgery at <hospital> on <date>."
},{
"input": "Abby Johnson gave birth to a healthy baby girl on May 14, 2022, at 4:15 PM in the General Hospital Maternity Center.",
"output": "<name> gave birth to a healthy baby girl on <date>, at 4:15 PM in the <hospital> Maternity Center.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> gave birth to a healthy baby girl on <date>, at 4:15 PM in the <hospital> Maternity Center.\nDe-identified: <name> gave birth to a healthy baby girl on <date>, at 4:15 PM in the <hospital> Maternity Center."
},{
"input": "Dr. Jessica Mitchell scheduled follow-up appointments for patients 765321 and 213453 on August 1, 2023.",
"output": "Dr. <name> scheduled follow-up appointments for patients <id> and <id> on <date>.",
"extracted": [
"<name>",
"<id>",
"<id>",
"<date>"
],
"training": "Original: Dr. <name> scheduled follow-up appointments for patients <id> and <id> on <date>.\nDe-identified: Dr. <name> scheduled follow-up appointments for patients <id> and <id> on <date>."
},{
"input": "In the operation report from Metro Hospital, surgeon Dr. Robert Lane documented the successful appendectomy on Tom Watson, on March 2, 2022.",
"output": "In the operation report from <hospital>, surgeon Dr. <name> documented the successful appendectomy on <name>, on <date>.",
"extracted": [
"<hospital>",
"<name>",
"<name>",
"<date>"
],
"training": "Original: In the operation report from <hospital>, surgeon Dr. <name> documented the successful appendectomy on <name>, on <date>.\nDe-identified: In the operation report from <hospital>, surgeon Dr. <name> documented the successful appendectomy on <name>, on <date>."
},{
"input": "Emily Hughes' blood test results, processed on November 3, 2022, showed elevated thyroid levels, indicating a possible thyroid disorder.",
"output": "<name>'s blood test results, processed on <date>, showed elevated thyroid levels, indicating a possible thyroid disorder.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s blood test results, processed on <date>, showed elevated thyroid levels, indicating a possible thyroid disorder.\nDe-identified: <name>'s blood test results, processed on <date>, showed elevated thyroid levels, indicating a possible thyroid disorder."
},{
"input": "Patient ID: 575983, Diagnosed Condition: Bipolar Disorder, Treatment Start Date: September 21, 2022, Treating Physician: Dr. Peter Johnson.",
"output": "Patient ID: <id>, Diagnosed Condition: Bipolar Disorder, Treatment Start Date: <date>, Treating Physician: Dr. <name>.",
"extracted": [
"<id>",
"<date>",
"<name>"
],
"training": "Original: Patient ID: <id>, Diagnosed Condition: Bipolar Disorder, Treatment Start Date: <date>, Treating Physician: Dr. <name>.\nDe-identified: Patient ID: <id>, Diagnosed Condition: Bipolar Disorder, Treatment Start Date: <date>, Treating Physician: Dr. <name>."
},{
"input": "Jack Sanders arrived at Central Healthcare Clinic on April 5, 2022, with symptoms of pneumonia and a high temperature.",
"output": "<name> arrived at <hospital> on <date>, with symptoms of pneumonia and a high temperature.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> arrived at <hospital> on <date>, with symptoms of pneumonia and a high temperature.\nDe-identified: <name> arrived at <hospital> on <date>, with symptoms of pneumonia and a high temperature."
},{
"input": "Dr. Susan Thompson of Lakeside Hospital notified Tamara Williams that her recent HPV test came back negative on December 10, 2021.",
"output": "Dr. <name> of <hospital> notified <name> that her recent HPV test came back negative on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> of <hospital> notified <name> that her recent HPV test came back negative on <date>.\nDe-identified: Dr. <name> of <hospital> notified <name> that her recent HPV test came back negative on <date>."
},{
"input": "On August 18, 2022, Mt. Sierra Medical Center recorded MRI results for Charles Scott indicating Multiple Sclerosis.",
"output": "On <date>, <hospital> recorded MRI results for <name> indicating Multiple Sclerosis.",
"extracted": [
"<date>",
"<hospital>",
"<name>"
],
"training": "Original: On <date>, <hospital> recorded MRI results for <name> indicating Multiple Sclerosis.\nDe-identified: On <date>, <hospital> recorded MRI results for <name> indicating Multiple Sclerosis."
},{
"input": "James Peterson, age 49, was admitted to Hilltop Medical Center with pneumonia on September 20, 2022.",
"output": "<name>, age 49, was admitted to <hospital> with pneumonia on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, age 49, was admitted to <hospital> with pneumonia on <date>.\nDe-identified: <name>, age 49, was admitted to <hospital> with pneumonia on <date>."
},{
"input": "Radiologist Dr. Emily White identified a mass in the chest x-ray taken on August 12, 2022, for patient ID 463281.",
"output": "Radiologist Dr. <name> identified a mass in the chest x-ray taken on <date>, for patient ID <id>.",
"extracted": [
"<name>",
"<date>",
"<id>"
],
"training": "Original: Radiologist Dr. <name> identified a mass in the chest x-ray taken on <date>, for patient ID <id>.\nDe-identified: Radiologist Dr. <name> identified a mass in the chest x-ray taken on <date>, for patient ID <id>."
},{
"input": "On October 30, 2023, patient Kimberly Johnson gave birth to a healthy baby girl at the Central Maternity Hospital.",
"output": "On <date>, patient <name> gave birth to a healthy baby girl at the <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, patient <name> gave birth to a healthy baby girl at the <hospital>.\nDe-identified: On <date>, patient <name> gave birth to a healthy baby girl at the <hospital>."
},{
"input": "Prior authorization forms for patient 223345, Michael Adams, were submitted to his insurance company on May 16, 2023.",
"output": "Prior authorization forms for patient <id>, <name>, were submitted to his insurance company on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Prior authorization forms for patient <id>, <name>, were submitted to his insurance company on <date>.\nDe-identified: Prior authorization forms for patient <id>, <name>, were submitted to his insurance company on <date>."
},{
"input": "Susan Rodriguez attended her follow-up appointment at the New York General Hospital on December 1, 2022.",
"output": "<name> attended her follow-up appointment at the <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> attended her follow-up appointment at the <hospital> on <date>.\nDe-identified: <name> attended her follow-up appointment at the <hospital> on <date>."
},{
"input": "Tumor biopsy for Abby Wright, patient ID 92731, indicated stage IIIA breast cancer on February 11, 2023.",
"output": "Tumor biopsy for <name>, patient ID <id>, indicated stage IIIA breast cancer on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Tumor biopsy for <name>, patient ID <id>, indicated stage IIIA breast cancer on <date>.\nDe-identified: Tumor biopsy for <name>, patient ID <id>, indicated stage IIIA breast cancer on <date>."
},{
"input": "Elvis Grey had an ACL surgery performed by Dr. Martin Anderson at Mercy Hospital on July 25, 2023.",
"output": "<name> had an ACL surgery performed by Dr. <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had an ACL surgery performed by Dr. <name> at <hospital> on <date>.\nDe-identified: <name> had an ACL surgery performed by Dr. <name> at <hospital> on <date>."
},{
"input": "An echocardiogram for patient 582254, Cynthia Lewis, revealed mild mitral valve regurgitation on March 3, 2022.",
"output": "An echocardiogram for patient <id>, <name>, revealed mild mitral valve regurgitation on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: An echocardiogram for patient <id>, <name>, revealed mild mitral valve regurgitation on <date>.\nDe-identified: An echocardiogram for patient <id>, <name>, revealed mild mitral valve regurgitation on <date>."
},{
"input": "Lakewood Health Clinic sent the medical records of Laura Clark to Dr. Alan Stevens on October 10, 2023.",
"output": "<hospital> sent the medical records of <name> to Dr. <name> on <date>.",
"extracted": [
"<hospital>",
"<name>",
"<name>",
"<date>"
],
"training": "Original: <hospital> sent the medical records of <name> to Dr. <name> on <date>.\nDe-identified: <hospital> sent the medical records of <name> to Dr. <name> on <date>."
},{
"input": "Steven Wilson, patient number 902836, has a medical history of hypertension and type 2 diabetes, last checked on January 5, 2023.",
"output": "<name>, patient number <id>, has a medical history of hypertension and type 2 diabetes, last checked on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, patient number <id>, has a medical history of hypertension and type 2 diabetes, last checked on <date>.\nDe-identified: <name>, patient number <id>, has a medical history of hypertension and type 2 diabetes, last checked on <date>."
},{
"input": "Olivia Peterson, DOB: August 22, 1965, showed hypothyroidism symptoms during her visit on September 10, 2023.",
"output": "<name>, DOB: <date>, showed hypothyroidism symptoms during her visit on <date>.",
"extracted": [
"<name>",
"<date>",
"<date>"
],
"training": "Original: <name>, DOB: <date>, showed hypothyroidism symptoms during her visit on <date>.\nDe-identified: <name>, DOB: <date>, showed hypothyroidism symptoms during her visit on <date>."
},{
"input": "On July 3, 2022, Dr. Patel conducted a colonoscopy on patient George Harrison at General City Hospital.",
"output": "On <date>, Dr. <name> conducted a colonoscopy on patient <name> at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, Dr. <name> conducted a colonoscopy on patient <name> at <hospital>.\nDe-identified: On <date>, Dr. <name> conducted a colonoscopy on patient <name> at <hospital>."
},{
"input": "Jacqueline Stone's medical record number 890492 indicates a positive mammogram on February 20, 2021.",
"output": "<name>'s medical record number <id> indicates a positive mammogram on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>'s medical record number <id> indicates a positive mammogram on <date>.\nDe-identified: <name>'s medical record number <id> indicates a positive mammogram on <date>."
},{
"input": "The X-ray of Peter Wallace's leg was taken at Riverside Clinic on October 1, 2023, and revealed a tibia fracture.",
"output": "The X-ray of <name>'s leg was taken at <hospital> on <date>, and revealed a tibia fracture.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: The X-ray of <name>'s leg was taken at <hospital> on <date>, and revealed a tibia fracture.\nDe-identified: The X-ray of <name>'s leg was taken at <hospital> on <date>, and revealed a tibia fracture."
},{
"input": "Dr. Christine Ross referred patient 432812, Kevin Brown, for a sleep study on November 22, 2022.",
"output": "Dr. <name> referred patient <id>, <name>, for a sleep study on <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> referred patient <id>, <name>, for a sleep study on <date>.\nDe-identified: Dr. <name> referred patient <id>, <name>, for a sleep study on <date>."
},{
"input": "On May 9, 2023, patient Rachel Adams received her annual flu shot at Memorial Health Center.",
"output": "On <date>, patient <name> received her annual flu shot at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, patient <name> received her annual flu shot at <hospital>.\nDe-identified: On <date>, patient <name> received her annual flu shot at <hospital>."
},{
"input": "The glucose test result for patient ID: 981023, Nicole Taylor, was 160 mg/dL on June 15, 2022.",
"output": "The glucose test result for patient ID: <id>, <name>, was 160 mg/dL on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: The glucose test result for patient ID: <id>, <name>, was 160 mg/dL on <date>.\nDe-identified: The glucose test result for patient ID: <id>, <name>, was 160 mg/dL on <date>."
},{
"input": "Daniel Martin complained of severe back pain in his appointment at St. Johns Clinic on January 15, 2023.",
"output": "<name> complained of severe back pain in his appointment at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> complained of severe back pain in his appointment at <hospital> on <date>.\nDe-identified: <name> complained of severe back pain in his appointment at <hospital> on <date>."
},{
"input": "Steven Cooper, Patient 455299, was prescribed Lisinopril for hypertension management on December 12, 2022.",
"output": "<name>, Patient <id>, was prescribed Lisinopril for hypertension management on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, Patient <id>, was prescribed Lisinopril for hypertension management on <date>.\nDe-identified: <name>, Patient <id>, was prescribed Lisinopril for hypertension management on <date>."
},{
"input": "Dr. Rebecca Sims diagnosed patient Laura Mitchell with iron-deficiency anemia on February 28, 2023.",
"output": "Dr. <name> diagnosed patient <name> with iron-deficiency anemia on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> diagnosed patient <name> with iron-deficiency anemia on <date>.\nDe-identified: Dr. <name> diagnosed patient <name> with iron-deficiency anemia on <date>."
},{
"input": "Lucille Flanagan was seen by Dr. Samuel Johnson for hypertension evaluation on November 5, 2021.",
"output": "<name> was seen by Dr. <name> for hypertension evaluation on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name> was seen by Dr. <name> for hypertension evaluation on <date>.\nDe-identified: <name> was seen by Dr. <name> for hypertension evaluation on <date>."
},{
"input": "A male patient, Ryan Walker, underwent a surgical procedure at St. John Medical Center on July 15, 2022.",
"output": "A male patient, <name>, underwent a surgical procedure at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: A male patient, <name>, underwent a surgical procedure at <hospital> on <date>.\nDe-identified: A male patient, <name>, underwent a surgical procedure at <hospital> on <date>."
},{
"input": "Dyslipidemia diagnosis confirmed for Karen Wright on September 19, 2022, prescribed 20mg Lipitor.",
"output": "Dyslipidemia diagnosis confirmed for <name> on <date>, prescribed 20mg Lipitor.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Dyslipidemia diagnosis confirmed for <name> on <date>, prescribed 20mg Lipitor.\nDe-identified: Dyslipidemia diagnosis confirmed for <name> on <date>, prescribed 20mg Lipitor."
},{
"input": "Susan Taylor, patient ID: 874628, had a negative result on her mammogram held on August 25, 2022.",
"output": "<name>, patient ID: <id>, had a negative result on her mammogram held on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, patient ID: <id>, had a negative result on her mammogram held on <date>.\nDe-identified: <name>, patient ID: <id>, had a negative result on her mammogram held on <date>."
},{
"input": "Treated for a mild concussion at Littleton General Hospital Emergency Department on October 30, 2022, patient was Peter Bell.",
"output": "Treated for a mild concussion at <hospital> Emergency Department on <date>, patient was <name>.",
"extracted": [
"<hospital>",
"<date>",
"<name>"
],
"training": "Original: Treated for a mild concussion at <hospital> Emergency Department on <date>, patient was <name>.\nDe-identified: Treated for a mild concussion at <hospital> Emergency Department on <date>, patient was <name>."
},{
"input": "Jack Stevenson visited Dr. Lisa Rogers on April 30, 2023, complaining of chronic lower back pain.",
"output": "<name> visited Dr. <name> on <date>, complaining of chronic lower back pain.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name> visited Dr. <name> on <date>, complaining of chronic lower back pain.\nDe-identified: <name> visited Dr. <name> on <date>, complaining of chronic lower back pain."
},{
"input": "Following a heart attack, Nancy Adams attended a cardiac rehabilitation program at White Dove Clinic starting February 1, 2023.",
"output": "Following a heart attack, <name> attended a cardiac rehabilitation program at <clinic> starting <date>.",
"extracted": [
"<name>",
"<clinic>",
"<date>"
],
"training": "Original: Following a heart attack, <name> attended a cardiac rehabilitation program at <clinic> starting <date>.\nDe-identified: Following a heart attack, <name> attended a cardiac rehabilitation program at <clinic> starting <date>."
},{
"input": "Dr. Bradley Cooper performed knee surgery on Timothy Franklin at Mercy General Hospital on March 20, 2023.",
"output": "Dr. <name> performed knee surgery on <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Dr. <name> performed knee surgery on <name> at <hospital> on <date>.\nDe-identified: Dr. <name> performed knee surgery on <name> at <hospital> on <date>."
},{
"input": "A complete blood count (CBC) test was conducted for Elizabeth Clark on May 21, 2023, with results pending.",
"output": "A complete blood count (CBC) test was conducted for <name> on <date>, with results pending.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: A complete blood count (CBC) test was conducted for <name> on <date>, with results pending.\nDe-identified: A complete blood count (CBC) test was conducted for <name> on <date>, with results pending."
},{
"input": "The psychiatrist Dr. Jasmine Brown prescribed 100mg of Sertraline to Jacob Martin for major depressive disorder treatment on June 15, 2023.",
"output": "The psychiatrist Dr. <name> prescribed 100mg of Sertraline to <name> for major depressive disorder treatment on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: The psychiatrist Dr. <name> prescribed 100mg of Sertraline to <name> for major depressive disorder treatment on <date>.\nDe-identified: The psychiatrist Dr. <name> prescribed 100mg of Sertraline to <name> for major depressive disorder treatment on <date>."
},{
"input": "Nancy Wilson's follow-up appointment is scheduled for August 20, 2023, at Green Valley Hospital.",
"output": "<name>'s follow-up appointment is scheduled for <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name>'s follow-up appointment is scheduled for <date>, at <hospital>.\nDe-identified: <name>'s follow-up appointment is scheduled for <date>, at <hospital>."
},{
"input": "Dr. Patel ordered a chest X-ray for James Campbell on November 1, 2023.",
"output": "Dr. <name> ordered a chest X-ray for <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> ordered a chest X-ray for <name> on <date>.\nDe-identified: Dr. <name> ordered a chest X-ray for <name> on <date>."
},{
"input": "New York General Hospital discharged patient Susan Taylor on July 24, 2023, after successful surgery.",
"output": "<hospital> discharged patient <name> on <date>, after successful surgery.",
"extracted": [
"<hospital>",
"<name>",
"<date>"
],
"training": "Original: <hospital> discharged patient <name> on <date>, after successful surgery.\nDe-identified: <hospital> discharged patient <name> on <date>, after successful surgery."
},{
"input": "Brian Lewis, Patient ID: 748214, showed signs of kidney infection during his visit on February 5, 2024.",
"output": "<name>, Patient ID: <id>, showed signs of kidney infection during his visit on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, Patient ID: <id>, showed signs of kidney infection during his visit on <date>.\nDe-identified: <name>, Patient ID: <id>, showed signs of kidney infection during his visit on <date>."
},{
"input": "Medical records for Michael Johnson indicate a history of anemia, with tests conducted on October 30, 2024.",
"output": "Medical records for <name> indicate a history of anemia, with tests conducted on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Medical records for <name> indicate a history of anemia, with tests conducted on <date>.\nDe-identified: Medical records for <name> indicate a history of anemia, with tests conducted on <date>."
},{
"input": "Christine Kelly is an asthma patient and used an inhaler during her physical therapy session on March 12, 2024.",
"output": "<name> is an asthma patient and used an inhaler during her physical therapy session on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name> is an asthma patient and used an inhaler during her physical therapy session on <date>.\nDe-identified: <name> is an asthma patient and used an inhaler during her physical therapy session on <date>."
},{
"input": "Gregory Allen experienced an allergic reaction while at Central City Clinic on September 19, 2024.",
"output": "<name> experienced an allergic reaction while at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> experienced an allergic reaction while at <hospital> on <date>.\nDe-identified: <name> experienced an allergic reaction while at <hospital> on <date>."
},{
"input": "Cynthia Boyd received a measles vaccination at San Francisco Children's Hospital on July 31, 2024.",
"output": "<name> received a measles vaccination at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> received a measles vaccination at <hospital> on <date>.\nDe-identified: <name> received a measles vaccination at <hospital> on <date>."
},{
"input": "Patient 359218, Jenna Sanchez, had a blood glucose level of 160 on her examination on April 15, 2024.",
"output": "Patient <id>, <name>, had a blood glucose level of 160 on her examination on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient <id>, <name>, had a blood glucose level of 160 on her examination on <date>.\nDe-identified: Patient <id>, <name>, had a blood glucose level of 160 on her examination on <date>."
},{
"input": "Kevin Murphy, Date of Birth: August 8, 1968, had a total hip replacement surgery at South Hill Hospital on June 20, 2024.",
"output": "<name>, Date of Birth: <date>, had a total hip replacement surgery at <hospital> on <date>.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, Date of Birth: <date>, had a total hip replacement surgery at <hospital> on <date>.\nDe-identified: <name>, Date of Birth: <date>, had a total hip replacement surgery at <hospital> on <date>."
},{
"input": "Jack Williams visited UCLA Medical Center on October 5, 2022, for his annual physical check-up.",
"output": "<name> visited <hospital> on <date> for his annual physical check-up.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> visited <hospital> on <date> for his annual physical check-up.\nDe-identified: <name> visited <hospital> on <date> for his annual physical check-up."
},{
"input": "Orthopedic surgeon Dr. Laura Harris performed a total knee replacement on Emily Wilson on September 9, 2022.",
"output": "Orthopedic surgeon Dr. <name> performed a total knee replacement on <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Orthopedic surgeon Dr. <name> performed a total knee replacement on <name> on <date>.\nDe-identified: Orthopedic surgeon Dr. <name> performed a total knee replacement on <name> on <date>."
},{
"input": "Patient 213445, Peter Johnson, received a tetanus vaccination at Memorial Hospital on August 19, 2023.",
"output": "Patient <id>, <name>, received a tetanus vaccination at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <id>, <name>, received a tetanus vaccination at <hospital> on <date>.\nDe-identified: Patient <id>, <name>, received a tetanus vaccination at <hospital> on <date>."
},{
"input": "Susan Clark was prescribed Acetaminophen 500mg for fever and pain relief on May 16, 2022.",
"output": "<name> was prescribed Acetaminophen 500mg for fever and pain relief on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name> was prescribed Acetaminophen 500mg for fever and pain relief on <date>.\nDe-identified: <name> was prescribed Acetaminophen 500mg for fever and pain relief on <date>."
},{
"input": "Referral patient 345612, Ryan Cooper, had an EEG test at St. Joseph Hospital on July 1, 2022.",
"output": "Referral patient <id>, <name>, had an EEG test at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Referral patient <id>, <name>, had an EEG test at <hospital> on <date>.\nDe-identified: Referral patient <id>, <name>, had an EEG test at <hospital> on <date>."
},{
"input": "Ultrasound results from Nancy Robertson's check-up on April 26, 2022, showed a healthy liver and kidneys.",
"output": "Ultrasound results from <name>'s check-up on <date> showed a healthy liver and kidneys.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Ultrasound results from <name>'s check-up on <date> showed a healthy liver and kidneys.\nDe-identified: Ultrasound results from <name>'s check-up on <date> showed a healthy liver and kidneys."
},{
"input": "On June 15, 2021, Dr. Christine White examined patient 238748, Linda Morales, and discovered a minor heart murmur.",
"output": "On <date>, Dr. <name> examined patient <id>, <name>, and discovered a minor heart murmur.",
"extracted": [
"<date>",
"<name>",
"<id>",
"<name>"
],
"training": "Original: On <date>, Dr. <name> examined patient <id>, <name>, and discovered a minor heart murmur.\nDe-identified: On <date>, Dr. <name> examined patient <id>, <name>, and discovered a minor heart murmur."
},{
"input": "St. Luke's Hospital discharged Mr. Jackson Johnson following his successful gallbladder surgery on August 30, 2022.",
"output": "<hospital> discharged Mr. <name> following his successful gallbladder surgery on <date>.",
"extracted": [
"<hospital>",
"<name>",
"<date>"
],
"training": "Original: <hospital> discharged Mr. <name> following his successful gallbladder surgery on <date>.\nDe-identified: <hospital> discharged Mr. <name> following his successful gallbladder surgery on <date>."
},{
"input": "Karen Anderson had a follow-up appointment with her cardiologist, Dr. Samuel Lee, on September 20, 2023.",
"output": "<name> had a follow-up appointment with her cardiologist, Dr. <name>, on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name> had a follow-up appointment with her cardiologist, Dr. <name>, on <date>.\nDe-identified: <name> had a follow-up appointment with her cardiologist, Dr. <name>, on <date>."
},{
"input": "On October 27, 2021, patient 125874, Richard Clark, had his first chemotherapy session to treat his colon cancer.",
"output": "On <date>, patient <id>, <name>, had his first chemotherapy session to treat his colon cancer.",
"extracted": [
"<date>",
"<id>",
"<name>"
],
"training": "Original: On <date>, patient <id>, <name>, had his first chemotherapy session to treat his colon cancer.\nDe-identified: On <date>, patient <id>, <name>, had his first chemotherapy session to treat his colon cancer."
},{
"input": "On October 25, 2023, Rebecca Johnson's ultrasound revealed a 6-week pregnancy.",
"output": "On <date>, <name>'s ultrasound revealed a 6-week pregnancy.",
"extracted": [
"<date>",
"<name>"
],
"training": "Original: On <date>, <name>'s ultrasound revealed a 6-week pregnancy.\nDe-identified: On <date>, <name>'s ultrasound revealed a 6-week pregnancy."
},{
"input": "Patient Samantha Williams, ID: 453728439, had an allergic reaction to Penicillin on August 5, 2024.",
"output": "Patient <name>, ID: <id>, had an allergic reaction to Penicillin on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Patient <name>, ID: <id>, had an allergic reaction to Penicillin on <date>.\nDe-identified: Patient <name>, ID: <id>, had an allergic reaction to Penicillin on <date>."
},{
"input": "Kevin Johnson received a Tetanus shot at Riverstone Medical Center on May 23, 2024.",
"output": "<name> received a Tetanus shot at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> received a Tetanus shot at <hospital> on <date>.\nDe-identified: <name> received a Tetanus shot at <hospital> on <date>."
},{
"input": "Cindy Adams, a 62-year-old female, showed signs of arthritis on a photograph taken on September 4, 2023.",
"output": "<name>, a 62-year-old female, showed signs of arthritis on a photograph taken on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>, a 62-year-old female, showed signs of arthritis on a photograph taken on <date>.\nDe-identified: <name>, a 62-year-old female, showed signs of arthritis on a photograph taken on <date>."
},{
"input": "Dr. Karen Patel provided a prescription for Hydrochlorothiazide to patient David Miller on July 13, 2024.",
"output": "Dr. <name> provided a prescription for Hydrochlorothiazide to patient <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> provided a prescription for Hydrochlorothiazide to patient <name> on <date>.\nDe-identified: Dr. <name> provided a prescription for Hydrochlorothiazide to patient <name> on <date>."
},{
"input": "Patient 726384, Eric Jackson, underwent a successful bypass surgery at Westwood Clinic on June 1, 2023.",
"output": "Patient <id>, <name>, underwent a successful bypass surgery at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <id>, <name>, underwent a successful bypass surgery at <hospital> on <date>.\nDe-identified: Patient <id>, <name>, underwent a successful bypass surgery at <hospital> on <date>."
},{
"input": "Sarah Robinson's mental health evaluation was completed by Dr. Nathan Lewis at Crescent Hospital on November 17, 2024.",
"output": "<name>'s mental health evaluation was completed by Dr. <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s mental health evaluation was completed by Dr. <name> at <hospital> on <date>.\nDe-identified: <name>'s mental health evaluation was completed by Dr. <name> at <hospital> on <date>."
},{
"input": "Kelly Clark, a 48-year-old patient, had a blood glucose level of 200 mg/dL on their test taken on February 24, 2024.",
"output": "<name>, a 48-year-old patient, had a blood glucose level of 200 mg/dL on their test taken on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>, a 48-year-old patient, had a blood glucose level of 200 mg/dL on their test taken on <date>.\nDe-identified: <name>, a 48-year-old patient, had a blood glucose level of 200 mg/dL on their test taken on <date>."
},{
"input": "Liver enzymes for Richard Allen, patient number 3928348, were elevated in test results from October 21, 2023.",
"output": "Liver enzymes for <name>, patient number <id>, were elevated in test results from <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Liver enzymes for <name>, patient number <id>, were elevated in test results from <date>.\nDe-identified: Liver enzymes for <name>, patient number <id>, were elevated in test results from <date>."
},{
"input": "Linda Thompson's echocardiogram, performed at Oakwood Medical Center on August 5, 2024, showed mitral valve prolapse.",
"output": "<name>'s echocardiogram, performed at <hospital> on <date>, showed mitral valve prolapse.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s echocardiogram, performed at <hospital> on <date>, showed mitral valve prolapse.\nDe-identified: <name>'s echocardiogram, performed at <hospital> on <date>, showed mitral valve prolapse."
},{
"input": "Jennifer Lee, born July 18, 1987, was diagnosed with iron deficiency anemia during her checkup at Greenridge Clinic.",
"output": "<name>, born <date>, was diagnosed with iron deficiency anemia during her checkup at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name>, born <date>, was diagnosed with iron deficiency anemia during her checkup at <hospital>.\nDe-identified: <name>, born <date>, was diagnosed with iron deficiency anemia during her checkup at <hospital>."
},{
"input": "Michael Lewis was admitted to West Valley Medical Center on August 30, 2022, with a severe case of pneumonia.",
"output": "<name> was admitted to <hospital> on <date>, with a severe case of pneumonia.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> was admitted to <hospital> on <date>, with a severe case of pneumonia.\nDe-identified: <name> was admitted to <hospital> on <date>, with a severe case of pneumonia."
},{
"input": "On October 22, 2022, Rachel Stevens got a flu shot at Hawthorn Medical Centre.",
"output": "On <date>, <name> got a flu shot at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name> got a flu shot at <hospital>.\nDe-identified: On <date>, <name> got a flu shot at <hospital>."
},{
"input": "Ultrasound for patient 249031, Olivia Edwards, showed a 6-week gestation on July 9, 2022.",
"output": "Ultrasound for patient <id>, <name>, showed a 6-week gestation on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Ultrasound for patient <id>, <name>, showed a 6-week gestation on <date>.\nDe-identified: Ultrasound for patient <id>, <name>, showed a 6-week gestation on <date>."
},{
"input": "Carl Johnson underwent an appendectomy on February 12, 2023, at Mercy General Hospital.",
"output": "<name> underwent an appendectomy on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> underwent an appendectomy on <date>, at <hospital>.\nDe-identified: <name> underwent an appendectomy on <date>, at <hospital>."
},{
"input": "Lisa Hartman, patient 738201, was referred to a neurologist for further evaluation of her seizures on August 18, 2022.",
"output": "<name>, patient <id>, was referred to a neurologist for further evaluation of her seizures on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, patient <id>, was referred to a neurologist for further evaluation of her seizures on <date>.\nDe-identified: <name>, patient <id>, was referred to a neurologist for further evaluation of her seizures on <date>."
},{
"input": "Lab report for Anne Johnson, DOB: April 11, 1969, showed elevated CRP levels, submitted on February 15, 2023.",
"output": "Lab report for <name>, DOB: <date>, showed elevated CRP levels, submitted on <date>.",
"extracted": [
"<name>",
"<date>",
"<date>"
],
"training": "Original: Lab report for <name>, DOB: <date>, showed elevated CRP levels, submitted on <date>.\nDe-identified: Lab report for <name>, DOB: <date>, showed elevated CRP levels, submitted on <date>."
},{
"input": "Keith Martin's appointment with his gastroenterologist Dr. Laura Reed at Greenberg Memorial Healthcare on October 3, 2023.",
"output": "<name>'s appointment with his gastroenterologist Dr. <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s appointment with his gastroenterologist Dr. <name> at <hospital> on <date>.\nDe-identified: <name>'s appointment with his gastroenterologist Dr. <name> at <hospital> on <date>."
},{
"input": "David Peterson, patient ID: AJ47201, underwent a colonoscopy on November 6, 2022, revealing the presence of polyps.",
"output": "<name>, patient ID: <id>, underwent a colonoscopy on <date>, revealing the presence of polyps.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, patient ID: <id>, underwent a colonoscopy on <date>, revealing the presence of polyps.\nDe-identified: <name>, patient ID: <id>, underwent a colonoscopy on <date>, revealing the presence of polyps."
},{
"input": "Samantha Clark had a mammogram performed at Vanderbilt Hospital on September 10, 2023, which showed a suspicious mass.",
"output": "<name> had a mammogram performed at <hospital> on <date>, which showed a suspicious mass.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had a mammogram performed at <hospital> on <date>, which showed a suspicious mass.\nDe-identified: <name> had a mammogram performed at <hospital> on <date>, which showed a suspicious mass."
},{
"input": "Jennifer Lee participated in a sleep study at Boston General Hospital on July 5, 2022.",
"output": "<name> participated in a sleep study at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> participated in a sleep study at <hospital> on <date>.\nDe-identified: <name> participated in a sleep study at <hospital> on <date>."
},{
"input": "George Wilson's prescription for Glenwood Medical Center included 20mg of Lisinopril, filled on August 8, 2022.",
"output": "<name>'s prescription for <hospital> included 20mg of Lisinopril, filled on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s prescription for <hospital> included 20mg of Lisinopril, filled on <date>.\nDe-identified: <name>'s prescription for <hospital> included 20mg of Lisinopril, filled on <date>."
},{
"input": "On October 12, 2022, Dr. Laura Martin provided a physical therapy consultation for patient Joshua Thomas.",
"output": "On <date>, Dr. <name> provided a physical therapy consultation for patient <name>.",
"extracted": [
"<date>",
"<name>",
"<name>"
],
"training": "Original: On <date>, Dr. <name> provided a physical therapy consultation for patient <name>.\nDe-identified: On <date>, Dr. <name> provided a physical therapy consultation for patient <name>."
},{
"input": "Patient ID: 565355, Carol Henderson, had a bone density scan performed on December 1, 2022.",
"output": "Patient ID: <id>, <name>, had a bone density scan performed on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, had a bone density scan performed on <date>.\nDe-identified: Patient ID: <id>, <name>, had a bone density scan performed on <date>."
},{
"input": "Jane Smith was discharged from Providence Hospital on April 30, 2022, after recovering from pneumonia.",
"output": "<name> was discharged from <hospital> on <date>, after recovering from pneumonia.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> was discharged from <hospital> on <date>, after recovering from pneumonia.\nDe-identified: <name> was discharged from <hospital> on <date>, after recovering from pneumonia."
},{
"input": "Blood transfusion was given to Kayla Johnson, patient 212345, at Memorial Hospital on September 15, 2022.",
"output": "Blood transfusion was given to <name>, patient <id>, at <hospital> on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: Blood transfusion was given to <name>, patient <id>, at <hospital> on <date>.\nDe-identified: Blood transfusion was given to <name>, patient <id>, at <hospital> on <date>."
},{
"input": "Peter Brown's biopsy results were discussed with Dr. Stefan Nguyen on November 20, 2022.",
"output": "<name>'s biopsy results were discussed with Dr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name>'s biopsy results were discussed with Dr. <name> on <date>.\nDe-identified: <name>'s biopsy results were discussed with Dr. <name> on <date>."
},{
"input": "Sophie Mitchell's allergy testing at Oakwood Clinic was completed on July 18, 2022.",
"output": "<name>'s allergy testing at <hospital> was completed on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s allergy testing at <hospital> was completed on <date>.\nDe-identified: <name>'s allergy testing at <hospital> was completed on <date>."
},{
"input": "Radiology report for Brian Wilson, patient 93402, showed advanced pancreatic cancer on March 30, 2022.",
"output": "Radiology report for <name>, patient <id>, showed advanced pancreatic cancer on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Radiology report for <name>, patient <id>, showed advanced pancreatic cancer on <date>.\nDe-identified: Radiology report for <name>, patient <id>, showed advanced pancreatic cancer on <date>."
},{
"input": "Amelia Robinson underwent surgery on August 18, 2022, and was seen by Dr. Emma Johnson for a follow-up on September 1, 2022.",
"output": "<name> underwent surgery on <date>, and was seen by Dr. <name> for a follow-up on <date>.",
"extracted": [
"<name>",
"<date>",
"<name>",
"<date>"
],
"training": "Original: <name> underwent surgery on <date>, and was seen by Dr. <name> for a follow-up on <date>.\nDe-identified: <name> underwent surgery on <date>, and was seen by Dr. <name> for a follow-up on <date>."
},{
"input": "Jennifer Martin, DOB: 07/18/1985, received her first Pfizer COVID-19 vaccination at Northbrook Clinic on February 1, 2023.",
"output": "<name>, DOB: <date>, received her first Pfizer COVID-19 vaccination at <clinic> on <date>.",
"extracted": [
"<name>",
"<date>",
"<clinic>",
"<date>"
],
"training": "Original: <name>, DOB: <date>, received her first Pfizer COVID-19 vaccination at <clinic> on <date>.\nDe-identified: <name>, DOB: <date>, received her first Pfizer COVID-19 vaccination at <clinic> on <date>."
},{
"input": "Patient ID 439579, Karen Thompson, reported experiencing increased anxiety at her appointment on November 15, 2022.",
"output": "Patient ID <id>, <name>, reported experiencing increased anxiety at her appointment on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient ID <id>, <name>, reported experiencing increased anxiety at her appointment on <date>.\nDe-identified: Patient ID <id>, <name>, reported experiencing increased anxiety at her appointment on <date>."
},{
"input": "Emergency surgery was performed on Matthew Wilson for acute appendicitis at Westside Hospital on July 5, 2023.",
"output": "Emergency surgery was performed on <name> for acute appendicitis at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Emergency surgery was performed on <name> for acute appendicitis at <hospital> on <date>.\nDe-identified: Emergency surgery was performed on <name> for acute appendicitis at <hospital> on <date>."
},{
"input": "Robert James, aged 61, had a routine colonoscopy at HealthOne Clinic on April 9, 2023, showing early polyp formation.",
"output": "<name>, aged 61, had a routine colonoscopy at <clinic> on <date>, showing early polyp formation.",
"extracted": [
"<name>",
"<clinic>",
"<date>"
],
"training": "Original: <name>, aged 61, had a routine colonoscopy at <clinic> on <date>, showing early polyp formation.\nDe-identified: <name>, aged 61, had a routine colonoscopy at <clinic> on <date>, showing early polyp formation."
},{
"input": "Patient 648930, Emily Walker, experienced an allergic reaction to medication prescribed by Dr. Mendoza on June 25, 2022.",
"output": "Patient <id>, <name>, experienced an allergic reaction to medication prescribed by Dr. <name> on <date>.",
"extracted": [
"<id>",
"<name>",
"<name>",
"<date>"
],
"training": "Original: Patient <id>, <name>, experienced an allergic reaction to medication prescribed by Dr. <name> on <date>.\nDe-identified: Patient <id>, <name>, experienced an allergic reaction to medication prescribed by Dr. <name> on <date>."
},{
"input": "Medical procedure for Ben Cohen: pacemaker installation performed at Mariners Medical Center on August 12, 2022.",
"output": "Medical procedure for <name>: pacemaker installation performed at <medical_center> on <date>.",
"extracted": [
"<name>",
"<medical_center>",
"<date>"
],
"training": "Original: Medical procedure for <name>: pacemaker installation performed at <medical_center> on <date>.\nDe-identified: Medical procedure for <name>: pacemaker installation performed at <medical_center> on <date>."
},{
"input": "Jane Doe, patient ID: 19508322, had a TSH test performed on May 6, 2023, revealing hypothyroidism.",
"output": "<name>, patient ID: <id>, had a TSH test performed on <date>, revealing hypothyroidism.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, patient ID: <id>, had a TSH test performed on <date>, revealing hypothyroidism.\nDe-identified: <name>, patient ID: <id>, had a TSH test performed on <date>, revealing hypothyroidism."
},{
"input": "Jacqueline O'Neal underwent a mammogram screening at Women's Health Center on January 30, 2023, with no signs of malignancy detected.",
"output": "<name> underwent a mammogram screening at <health_center> on <date>, with no signs of malignancy detected.",
"extracted": [
"<name>",
"<health_center>",
"<date>"
],
"training": "Original: <name> underwent a mammogram screening at <health_center> on <date>, with no signs of malignancy detected.\nDe-identified: <name> underwent a mammogram screening at <health_center> on <date>, with no signs of malignancy detected."
},{
"input": "Jackson Lee complained of severe abdominal pain during his visit to Oakwood Clinic on October 28, 2022.",
"output": "<name> complained of severe abdominal pain during his visit to <clinic> on <date>.",
"extracted": [
"<name>",
"<clinic>",
"<date>"
],
"training": "Original: <name> complained of severe abdominal pain during his visit to <clinic> on <date>.\nDe-identified: <name> complained of severe abdominal pain during his visit to <clinic> on <date>."
},{
"input": "Dr. Hansen evaluated patient 312987, Ethan Patel, on September 1, 2023, and diagnosed him with asthma.",
"output": "Dr. <name> evaluated patient <id>, <name>, on <date>, and diagnosed him with asthma.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> evaluated patient <id>, <name>, on <date>, and diagnosed him with asthma.\nDe-identified: Dr. <name> evaluated patient <id>, <name>, on <date>, and diagnosed him with asthma."
},{
"input": "Dr. Robert Johnson ordered a mammogram for Linda O'Connor on August 5, 2022, at Brookside Medical Center.",
"output": "Dr. <name> ordered a mammogram for <name> on <date>, at <hospital>.",
"extracted": [
"<name>",
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: Dr. <name> ordered a mammogram for <name> on <date>, at <hospital>.\nDe-identified: Dr. <name> ordered a mammogram for <name> on <date>, at <hospital>."
},{
"input": "Patient 345678, Brian Stevens, had a follow-up appointment for his arthritis on September 2, 2022.",
"output": "Patient <id>, <name>, had a follow-up appointment for his arthritis on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient <id>, <name>, had a follow-up appointment for his arthritis on <date>.\nDe-identified: Patient <id>, <name>, had a follow-up appointment for his arthritis on <date>."
},{
"input": "On October 4, 2022, Susan Parker underwent a spinal surgery at Mercy General Hospital.",
"output": "On <date>, <name> underwent a spinal surgery at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name> underwent a spinal surgery at <hospital>.\nDe-identified: On <date>, <name> underwent a spinal surgery at <hospital>."
},{
"input": "Alexandra Johnson gave birth to a healthy baby boy on July 30, 2022, at 4:35 PM.",
"output": "<name> gave birth to a healthy baby boy on <date>, at 4:35 PM.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name> gave birth to a healthy baby boy on <date>, at 4:35 PM.\nDe-identified: <name> gave birth to a healthy baby boy on <date>, at 4:35 PM."
},{
"input": "Kevin Brown's blood glucose levels were elevated to 190 mg/dL on 11th September 2022.",
"output": "<name>'s blood glucose levels were elevated to 190 mg/dL on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s blood glucose levels were elevated to 190 mg/dL on <date>.\nDe-identified: <name>'s blood glucose levels were elevated to 190 mg/dL on <date>."
},{
"input": "X-ray for patient ID 567890, Emma Thompson, showed a broken wrist, taken on June 20, 2022.",
"output": "X-ray for patient ID <id>, <name>, showed a broken wrist, taken on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: X-ray for patient ID <id>, <name>, showed a broken wrist, taken on <date>.\nDe-identified: X-ray for patient ID <id>, <name>, showed a broken wrist, taken on <date>."
},{
"input": "Petra Wood, MRN 123456, began her chemotherapy sessions at St. Joseph's Medical Center on July 16, 2022.",
"output": "<name>, MRN <id>, began her chemotherapy sessions at <hospital> on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, MRN <id>, began her chemotherapy sessions at <hospital> on <date>.\nDe-identified: <name>, MRN <id>, began her chemotherapy sessions at <hospital> on <date>."
},{
"input": "Dr. Jennifer Adams reported an abnormal liver function result for Mr. Michael Nguyen on August 19, 2022.",
"output": "Dr. <name> reported an abnormal liver function result for Mr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> reported an abnormal liver function result for Mr. <name> on <date>.\nDe-identified: Dr. <name> reported an abnormal liver function result for Mr. <name> on <date>."
},{
"input": "Christopher Wilson, MRN 987654, was discharged from City Hospital five days after his heart surgery on March 3, 2022.",
"output": "<name>, MRN <id>, was discharged from <hospital> five days after his heart surgery on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, MRN <id>, was discharged from <hospital> five days after his heart surgery on <date>.\nDe-identified: <name>, MRN <id>, was discharged from <hospital> five days after his heart surgery on <date>."
},{
"input": "Newborn Baby Smith was born on July 12, 2022, at 12:00 AM at Harmony Women's Hospital.",
"output": "Newborn Baby <name> was born on <date>, at 12:00 AM at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: Newborn Baby <name> was born on <date>, at 12:00 AM at <hospital>.\nDe-identified: Newborn Baby <name> was born on <date>, at 12:00 AM at <hospital>."
},{
"input": "Susan Clark received her first vaccination dose at Central Health Clinic on August 1, 2022.",
"output": "<name> received her first vaccination dose at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> received her first vaccination dose at <hospital> on <date>.\nDe-identified: <name> received her first vaccination dose at <hospital> on <date>."
},{
"input": "Neurologist Dr. Kevin Henderson saw Oliver Watson's case of multiple sclerosis last updated on February 11, 2022.",
"output": "Neurologist Dr. <name> saw <name>'s case of multiple sclerosis last updated on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Neurologist Dr. <name> saw <name>'s case of multiple sclerosis last updated on <date>.\nDe-identified: Neurologist Dr. <name> saw <name>'s case of multiple sclerosis last updated on <date>."
},{
"input": "The patient, Laura Green, had a fasting blood sugar of 105 at Washington Medical Center on August 21, 2021.",
"output": "The patient, <name>, had a fasting blood sugar of 105 at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: The patient, <name>, had a fasting blood sugar of 105 at <hospital> on <date>.\nDe-identified: The patient, <name>, had a fasting blood sugar of 105 at <hospital> on <date>."
},{
"input": "Patient ID# 873045, Patrick Nelson, underwent a double hip replacement procedure at Hope Hospital on December 5, 2023.",
"output": "Patient ID# <id>, <name>, underwent a double hip replacement procedure at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID# <id>, <name>, underwent a double hip replacement procedure at <hospital> on <date>.\nDe-identified: Patient ID# <id>, <name>, underwent a double hip replacement procedure at <hospital> on <date>."
},{
"input": "Tom Martins had chemotherapy at Prestige Oncology Center, and his last treatment date was November 10, 2023.",
"output": "<name> had chemotherapy at <hospital>, and his last treatment date was <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had chemotherapy at <hospital>, and his last treatment date was <date>.\nDe-identified: <name> had chemotherapy at <hospital>, and his last treatment date was <date>."
},{
"input": "Dr. Wallace reported that Emily Adams' liver enzyme levels were elevated after a panel conducted on September 5, 2022.",
"output": "Dr. <name> reported that <name>'s liver enzyme levels were elevated after a panel conducted on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> reported that <name>'s liver enzyme levels were elevated after a panel conducted on <date>.\nDe-identified: Dr. <name> reported that <name>'s liver enzyme levels were elevated after a panel conducted on <date>."
},{
"input": "On July 15, 2021, Stella Burke received a flu shot at Springfield Community Health Center.",
"output": "On <date>, <name> received a flu shot at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name> received a flu shot at <hospital>.\nDe-identified: On <date>, <name> received a flu shot at <hospital>."
},{
"input": "Patient #582301, named Nicole Young, had a prenatal checkup on October 3, 2023, and her blood tests showed iron deficiency.",
"output": "Patient #<id>, named <name>, had a prenatal checkup on <date>, and her blood tests showed iron deficiency.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient #<id>, named <name>, had a prenatal checkup on <date>, and her blood tests showed iron deficiency.\nDe-identified: Patient #<id>, named <name>, had a prenatal checkup on <date>, and her blood tests showed iron deficiency."
},{
"input": "Jacob Williams was transferred from Grace Hospital to Davis Rehabilitation on April 18, 2022, for post-stroke therapy.",
"output": "<name> was transferred from <hospital> to <hospital> on <date>, for post-stroke therapy.",
"extracted": [
"<name>",
"<hospital>",
"<hospital>",
"<date>"
],
"training": "Original: <name> was transferred from <hospital> to <hospital> on <date>, for post-stroke therapy.\nDe-identified: <name> was transferred from <hospital> to <hospital> on <date>, for post-stroke therapy."
},{
"input": "Dr. Fiona Morrison treated patient 469753, Tim Rogers, for acute bronchitis on June 16, 2023.",
"output": "Dr. <name> treated patient <id>, <name>, for acute bronchitis on <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> treated patient <id>, <name>, for acute bronchitis on <date>.\nDe-identified: Dr. <name> treated patient <id>, <name>, for acute bronchitis on <date>."
},{
"input": "Patient: Olivia Williams, Date: May 21, 2024, Registered at: Mercy General Hospital, Patient ID: A00123B.",
"output": "Patient: <name>, Date: <date>, Registered at: <hospital>, Patient ID: <id>.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<id>"
],
"training": "Original: Patient: <name>, Date: <date>, Registered at: <hospital>, Patient ID: <id>.\nDe-identified: Patient: <name>, Date: <date>, Registered at: <hospital>, Patient ID: <id>."
},{
"input": "Karen Johnson had a mammogram on July 10, 2022, at Forest Hill Medical Center.",
"output": "<name> had a mammogram on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> had a mammogram on <date>, at <hospital>.\nDe-identified: <name> had a mammogram on <date>, at <hospital>."
},{
"input": "Nurse Lucy Davis administered flu shots to patients from the list-sharing clinic on August 14, 2022.",
"output": "Nurse <name> administered flu shots to patients from the list-sharing clinic on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Nurse <name> administered flu shots to patients from the list-sharing clinic on <date>.\nDe-identified: Nurse <name> administered flu shots to patients from the list-sharing clinic on <date>."
},{
"input": "Patient Peter Nelson, assigned clinician Dr. Robert Evans, first consultation on November 11, 2022.",
"output": "Patient <name>, assigned clinician Dr. <name>, first consultation on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Patient <name>, assigned clinician Dr. <name>, first consultation on <date>.\nDe-identified: Patient <name>, assigned clinician Dr. <name>, first consultation on <date>."
},{
"input": "Mrs. Elizabeth Mathews was referred to North River Physical Therapy for her back pain on June 1, 2022.",
"output": "Mrs. <name> was referred to <hospital> for her back pain on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Mrs. <name> was referred to <hospital> for her back pain on <date>.\nDe-identified: Mrs. <name> was referred to <hospital> for her back pain on <date>."
},{
"input": "Jamie Patterson visited Dr. George Emerson at Mountain View Clinic for a sprained ankle on October 2, 2023.",
"output": "<name> visited Dr. <name> at <hospital> for a sprained ankle on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> visited Dr. <name> at <hospital> for a sprained ankle on <date>.\nDe-identified: <name> visited Dr. <name> at <hospital> for a sprained ankle on <date>."
},{
"input": "Alan Thompson's ID: 082375, Radiologist: Dr. Lisa Wilson, X-ray of leg fracture, completed January 15, 2023.",
"output": "<name>'s ID: <id>, Radiologist: Dr. <name>, X-ray of leg fracture, completed <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: <name>'s ID: <id>, Radiologist: Dr. <name>, X-ray of leg fracture, completed <date>.\nDe-identified: <name>'s ID: <id>, Radiologist: Dr. <name>, X-ray of leg fracture, completed <date>."
},{
"input": "Aaron Cook gave blood sample for HbA1c and glucose testing on February 31, 2023.",
"output": "<name> gave blood sample for HbA1c and glucose testing on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name> gave blood sample for HbA1c and glucose testing on <date>.\nDe-identified: <name> gave blood sample for HbA1c and glucose testing on <date>."
},{
"input": "Allison King's vision test on September 12, 2023, showed she has slight astigmatism, optician: John Lewis.",
"output": "<name>'s vision test on <date>, showed she has slight astigmatism, optician: <name>.",
"extracted": [
"<name>",
"<date>",
"<name>"
],
"training": "Original: <name>'s vision test on <date>, showed she has slight astigmatism, optician: <name>.\nDe-identified: <name>'s vision test on <date>, showed she has slight astigmatism, optician: <name>."
},{
"input": "MRI report dated April 9, 2023, Patient ID 673569, Sandy Mitchell, revealed no significant brain pathology.",
"output": "MRI report dated <date>, Patient ID <id>, <name>, revealed no significant brain pathology.",
"extracted": [
"<date>",
"<id>",
"<name>"
],
"training": "Original: MRI report dated <date>, Patient ID <id>, <name>, revealed no significant brain pathology.\nDe-identified: MRI report dated <date>, Patient ID <id>, <name>, revealed no significant brain pathology."
},{
"input": "Lucy Adams presented with shortness of breath at Green Valley Hospital on July 28, 2024.",
"output": "<name> presented with shortness of breath at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> presented with shortness of breath at <hospital> on <date>.\nDe-identified: <name> presented with shortness of breath at <hospital> on <date>."
},{
"input": "Doctor Kevin Williams at Boston Medical Center referred patient ID: 27272829, Julie Williams, dated Aug 5, 2024.",
"output": "Doctor <name> at <hospital> referred patient ID: <id>, <name>, dated <date>.",
"extracted": [
"<name>",
"<hospital>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: Doctor <name> at <hospital> referred patient ID: <id>, <name>, dated <date>.\nDe-identified: Doctor <name> at <hospital> referred patient ID: <id>, <name>, dated <date>."
},{
"input": "Oliver King's ultrasound revealed gallstones on September 12, 2024, at Evergreen Clinic.",
"output": "<name>'s ultrasound revealed gallstones on <date> at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name>'s ultrasound revealed gallstones on <date> at <hospital>.\nDe-identified: <name>'s ultrasound revealed gallstones on <date> at <hospital>."
},{
"input": "Immunization record: Patient ID 83737492, Emma Lee, received flu vaccine on Oct. 1, 2024.",
"output": "Immunization record: Patient ID <id>, <name>, received flu vaccine on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Immunization record: Patient ID <id>, <name>, received flu vaccine on <date>.\nDe-identified: Immunization record: Patient ID <id>, <name>, received flu vaccine on <date>."
},{
"input": "Patient Alex Carter tested positive for COVID-19 on November 2, 2024, at Central City Medical Centre.",
"output": "Patient <name> tested positive for COVID-19 on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: Patient <name> tested positive for COVID-19 on <date>, at <hospital>.\nDe-identified: Patient <name> tested positive for COVID-19 on <date>, at <hospital>."
},{
"input": "On June 15, 2024, Susan Baker underwent a routine mammogram at Westside Health Center. The findings were inconclusive.",
"output": "On <date>, <name> underwent a routine mammogram at <hospital>. The findings were inconclusive.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name> underwent a routine mammogram at <hospital>. The findings were inconclusive.\nDe-identified: On <date>, <name> underwent a routine mammogram at <hospital>. The findings were inconclusive."
},{
"input": "Social Security Number for Alice Alan: 1234567890, checked into CareFirst Medical on Jan 3, 2025.",
"output": "Social Security Number for <name>: <id>, checked into <hospital> on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: Social Security Number for <name>: <id>, checked into <hospital> on <date>.\nDe-identified: Social Security Number for <name>: <id>, checked into <hospital> on <date>."
},{
"input": "Peter Wilson's lab results showed an elevated blood glucose level of 145 mg/dL on February 6, 2025.",
"output": "<name>'s lab results showed an elevated blood glucose level of 145 mg/dL on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s lab results showed an elevated blood glucose level of 145 mg/dL on <date>.\nDe-identified: <name>'s lab results showed an elevated blood glucose level of 145 mg/dL on <date>."
},{
"input": "On March 7, 2025, a biopsy was performed on Thomas Green's mole at New Horizons Medical.",
"output": "On <date>, a biopsy was performed on <name>'s mole at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, a biopsy was performed on <name>'s mole at <hospital>.\nDe-identified: On <date>, a biopsy was performed on <name>'s mole at <hospital>."
},{
"input": "Penny Lyon's patient ID is 898989; her weight and BMI were recorded on Sept 13, 2025, at Metro Health.",
"output": "<name>'s patient ID is <id>; her weight and BMI were recorded on <date> at <hospital>.",
"extracted": [
"<name>",
"<id>",
"<date>",
"<hospital>"
],
"training": "Original: <name>'s patient ID is <id>; her weight and BMI were recorded on <date> at <hospital>.\nDe-identified: <name>'s patient ID is <id>; her weight and BMI were recorded on <date> at <hospital>."
},{
"input": "Rebecca Martinez, DOB: 02/04/1986, was prescribed 40mg Lisinopril for hypertension on May 18, 2022.",
"output": "<name>, DOB: <date>, was prescribed 40mg Lisinopril for hypertension on <date>.",
"extracted": [
"<name>",
"<date>",
"<date>"
],
"training": "Original: <name>, DOB: <date>, was prescribed 40mg Lisinopril for hypertension on <date>.\nDe-identified: <name>, DOB: <date>, was prescribed 40mg Lisinopril for hypertension on <date>."
},{
"input": "Jane Green, Patient ID: 783298, had a Hemoglobin A1c level of 7.2% documented on August 22, 2022.",
"output": "<name>, Patient ID: <id>, had a Hemoglobin A1c level of 7.2% documented on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, Patient ID: <id>, had a Hemoglobin A1c level of 7.2% documented on <date>.\nDe-identified: <name>, Patient ID: <id>, had a Hemoglobin A1c level of 7.2% documented on <date>."
},{
"input": "Radiograph revealed a femur fracture for Michael Wilson, taken at Boston Medical Center on September 5, 2022.",
"output": "Radiograph revealed a femur fracture for <name>, taken at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Radiograph revealed a femur fracture for <name>, taken at <hospital> on <date>.\nDe-identified: Radiograph revealed a femur fracture for <name>, taken at <hospital> on <date>."
},{
"input": "Olivia Harris was diagnosed with early-stage Multiple Sclerosis, MRI performed on October 1, 2022.",
"output": "<name> was diagnosed with early-stage Multiple Sclerosis, MRI performed on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name> was diagnosed with early-stage Multiple Sclerosis, MRI performed on <date>.\nDe-identified: <name> was diagnosed with early-stage Multiple Sclerosis, MRI performed on <date>."
},{
"input": "Endoscopy for patient 512987, Nathaniel Johnson, showed evidence of peptic ulcer on November 11, 2022.",
"output": "Endoscopy for patient <id>, <name>, showed evidence of peptic ulcer on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Endoscopy for patient <id>, <name>, showed evidence of peptic ulcer on <date>.\nDe-identified: Endoscopy for patient <id>, <name>, showed evidence of peptic ulcer on <date>."
},{
"input": "Lauren Turner's ultrasound taken at Clearview Hospital on October 23, 2022, confirmed presence of gallstones.",
"output": "<name>'s ultrasound taken at <hospital> on <date>, confirmed presence of gallstones.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s ultrasound taken at <hospital> on <date>, confirmed presence of gallstones.\nDe-identified: <name>'s ultrasound taken at <hospital> on <date>, confirmed presence of gallstones."
},{
"input": "Otolaryngologist Dr. James Baxter assessed Jacob Taylor for severe sinusitis on July 18, 2023.",
"output": "Otolaryngologist Dr. <name> assessed <name> for severe sinusitis on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Otolaryngologist Dr. <name> assessed <name> for severe sinusitis on <date>.\nDe-identified: Otolaryngologist Dr. <name> assessed <name> for severe sinusitis on <date>."
},{
"input": "The biopsy for Samantha Stewart, taken on February 28, 2023, indicated the presence of a benign cyst.",
"output": "The biopsy for <name>, taken on <date>, indicated the presence of a benign cyst.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: The biopsy for <name>, taken on <date>, indicated the presence of a benign cyst.\nDe-identified: The biopsy for <name>, taken on <date>, indicated the presence of a benign cyst."
},{
"input": "Patient ID 312354, Harold Douglas, began radiation therapy for a brain tumor on May 5, 2023.",
"output": "Patient ID <id>, <name>, began radiation therapy for a brain tumor on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient ID <id>, <name>, began radiation therapy for a brain tumor on <date>.\nDe-identified: Patient ID <id>, <name>, began radiation therapy for a brain tumor on <date>."
},{
"input": "Alex Kingdale underwent testing at Riverside Memorial Hospital for Lyme disease on March 15, 2023.",
"output": "<name> underwent testing at <hospital> for Lyme disease on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> underwent testing at <hospital> for Lyme disease on <date>.\nDe-identified: <name> underwent testing at <hospital> for Lyme disease on <date>."
},{
"input": "Susan Johnson visited Central Hospital emergency room for severe abdominal pain on July 8, 2022.",
"output": "<name> visited <hospital> emergency room for severe abdominal pain on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> visited <hospital> emergency room for severe abdominal pain on <date>.\nDe-identified: <name> visited <hospital> emergency room for severe abdominal pain on <date>."
},{
"input": "Patient 239874, Karen Mitchell, underwent a successful knee replacement surgery on March 1, 2022.",
"output": "Patient <id>, <name>, underwent a successful knee replacement surgery on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient <id>, <name>, underwent a successful knee replacement surgery on <date>.\nDe-identified: Patient <id>, <name>, underwent a successful knee replacement surgery on <date>."
},{
"input": "Dr. Samantha Jones delivered a baby boy for patient Allison Mitchell at City Medical Center on October 20, 2022.",
"output": "Dr. <name> delivered a baby boy for patient <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Dr. <name> delivered a baby boy for patient <name> at <hospital> on <date>.\nDe-identified: Dr. <name> delivered a baby boy for patient <name> at <hospital> on <date>."
},{
"input": "Labs for: Daniel Carlson, Hemoglobin: 13.8, White Blood Count: 7.4, taken at Regional Hospital on September 13, 2023.",
"output": "Labs for: <name>, Hemoglobin: 13.8, White Blood Count: 7.4, taken at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Labs for: <name>, Hemoglobin: 13.8, White Blood Count: 7.4, taken at <hospital> on <date>.\nDe-identified: Labs for: <name>, Hemoglobin: 13.8, White Blood Count: 7.4, taken at <hospital> on <date>."
},{
"input": "Patient 312431, Michael Johnson, diagnosed with COPD, began medication for the condition on June 4, 2023.",
"output": "Patient <id>, <name>, diagnosed with COPD, began medication for the condition on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient <id>, <name>, diagnosed with COPD, began medication for the condition on <date>.\nDe-identified: Patient <id>, <name>, diagnosed with COPD, began medication for the condition on <date>."
},{
"input": "Brian Young received stitches for a deep laceration at Hillside Clinic on November 14, 2021.",
"output": "<name> received stitches for a deep laceration at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> received stitches for a deep laceration at <hospital> on <date>.\nDe-identified: <name> received stitches for a deep laceration at <hospital> on <date>."
},{
"input": "Sarah Clark, diagnosed with kidney stone on her CT scan taken at New Hope Medical on July 15, 2022.",
"output": "<name>, diagnosed with kidney stone on her CT scan taken at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, diagnosed with kidney stone on her CT scan taken at <hospital> on <date>.\nDe-identified: <name>, diagnosed with kidney stone on her CT scan taken at <hospital> on <date>."
},{
"input": "Patient 159832, Tom Bennett, had a follow-up consultation with Dr. Angela Lewis on August 6, 2022.",
"output": "Patient <id>, <name>, had a follow-up consultation with Dr. <name> on <date>.",
"extracted": [
"<id>",
"<name>",
"<name>",
"<date>"
],
"training": "Original: Patient <id>, <name>, had a follow-up consultation with Dr. <name> on <date>.\nDe-identified: Patient <id>, <name>, had a follow-up consultation with Dr. <name> on <date>."
},{
"input": "Jack Peters was referred to a gastroenterologist for a colonoscopy, scheduled at Lakeview Medical Center on December 12, 2022.",
"output": "<name> was referred to a gastroenterologist for a colonoscopy, scheduled at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> was referred to a gastroenterologist for a colonoscopy, scheduled at <hospital> on <date>.\nDe-identified: <name> was referred to a gastroenterologist for a colonoscopy, scheduled at <hospital> on <date>."
},{
"input": "Prescription for: Linda Robinson, 5mg Lisinopril for high blood pressure, prescribed by Dr. Nathan Brown on October 11, 2022.",
"output": "Prescription for: <name>, 5mg Lisinopril for high blood pressure, prescribed by Dr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Prescription for: <name>, 5mg Lisinopril for high blood pressure, prescribed by Dr. <name> on <date>.\nDe-identified: Prescription for: <name>, 5mg Lisinopril for high blood pressure, prescribed by Dr. <name> on <date>."
},{
"input": "Jennifer Gray visited Dr. Wilson at Seattle Medical Center on August 21, 2023 regarding an ankle sprain.",
"output": "<name> visited Dr. <name> at <hospital> on <date> regarding an ankle sprain.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> visited Dr. <name> at <hospital> on <date> regarding an ankle sprain.\nDe-identified: <name> visited Dr. <name> at <hospital> on <date> regarding an ankle sprain."
},{
"input": "Patient #45782, Robert Henderson, was admitted to Central Health Clinic with symptoms consistent with appendicitis on May 11, 2021.",
"output": "Patient <id>, <name>, was admitted to <hospital> with symptoms consistent with appendicitis on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <id>, <name>, was admitted to <hospital> with symptoms consistent with appendicitis on <date>.\nDe-identified: Patient <id>, <name>, was admitted to <hospital> with symptoms consistent with appendicitis on <date>."
},{
"input": "Alice Johnson experienced symptoms of menopause and received hormone therapy from Dr. Katherine Moore on July 30, 2022.",
"output": "<name> experienced symptoms of menopause and received hormone therapy from Dr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name> experienced symptoms of menopause and received hormone therapy from Dr. <name> on <date>.\nDe-identified: <name> experienced symptoms of menopause and received hormone therapy from Dr. <name> on <date>."
},{
"input": "At Cambridge Urgent Care, patient Jordan Cooper, case number 67854321, was treated for a dislocated shoulder on June 27, 2022.",
"output": "At <hospital>, patient <name>, case number <id>, was treated for a dislocated shoulder on <date>.",
"extracted": [
"<hospital>",
"<name>",
"<id>",
"<date>"
],
"training": "Original: At <hospital>, patient <name>, case number <id>, was treated for a dislocated shoulder on <date>.\nDe-identified: At <hospital>, patient <name>, case number <id>, was treated for a dislocated shoulder on <date>."
},{
"input": "Child Lucy Wilson, born May 5, 2019, received her MMR vaccine on April 28, 2020.",
"output": "Child <name>, born <date>, received her MMR vaccine on <date>.",
"extracted": [
"<name>",
"<date>",
"<date>"
],
"training": "Original: Child <name>, born <date>, received her MMR vaccine on <date>.\nDe-identified: Child <name>, born <date>, received her MMR vaccine on <date>."
},{
"input": "Heart transplant operation took place on August 24, 2020, at Orlando Health Hospital for Mr. Samuel Elliot.",
"output": "Heart transplant operation took place on <date>, at <hospital> for Mr. <name>.",
"extracted": [
"<date>",
"<hospital>",
"<name>"
],
"training": "Original: Heart transplant operation took place on <date>, at <hospital> for Mr. <name>.\nDe-identified: Heart transplant operation took place on <date>, at <hospital> for Mr. <name>."
},{
"input": "Tom Clarkson was diagnosed with stage 4 kidney failure on April 15, 2023, and started dialysis at Lakeview Dialysis Center.",
"output": "<name> was diagnosed with stage 4 kidney failure on <date>, and started dialysis at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> was diagnosed with stage 4 kidney failure on <date>, and started dialysis at <hospital>.\nDe-identified: <name> was diagnosed with stage 4 kidney failure on <date>, and started dialysis at <hospital>."
},{
"input": "Sophia Adams underwent chemotherapy on November 1, 2023, at New Hope Cancer Center, with Dr. Susan Rogers monitoring her progress.",
"output": "<name> underwent chemotherapy on <date>, at <hospital>, with Dr. <name> monitoring her progress.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<name>"
],
"training": "Original: <name> underwent chemotherapy on <date>, at <hospital>, with Dr. <name> monitoring her progress.\nDe-identified: <name> underwent chemotherapy on <date>, at <hospital>, with Dr. <name> monitoring her progress."
},{
"input": "Patient ID 43852A, Matt Stephens, had x-rays of his ribs taken at Portland General Hospital on July 10, 2022, to check for fractures.",
"output": "Patient ID <id>, <name>, had x-rays of his ribs taken at <hospital> on <date>, to check for fractures.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID <id>, <name>, had x-rays of his ribs taken at <hospital> on <date>, to check for fractures.\nDe-identified: Patient ID <id>, <name>, had x-rays of his ribs taken at <hospital> on <date>, to check for fractures."
},{
"input": "Steven Barlett met with neurologist Dr. Omar Zayed on February 28, 2023, for an evaluation of his migraines at the Houston Neurology Clinic.",
"output": "<name> met with neurologist Dr. <name> on <date>, for an evaluation of his migraines at the <hospital>.",
"extracted": [
"<name>",
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> met with neurologist Dr. <name> on <date>, for an evaluation of his migraines at the <hospital>.\nDe-identified: <name> met with neurologist Dr. <name> on <date>, for an evaluation of his migraines at the <hospital>."
},{
"input": "Patient 754322, Michael Johnson, had a blood glucose level of 180 mg/dL at Mercy Medical Center on August 20, 2022.",
"output": "Patient <id>, <name>, had a blood glucose level of 180 mg/dL at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <id>, <name>, had a blood glucose level of 180 mg/dL at <hospital> on <date>.\nDe-identified: Patient <id>, <name>, had a blood glucose level of 180 mg/dL at <hospital> on <date>."
},{
"input": "Dr. Stevens performed appendectomy surgery on Jennifer White at St. John's Hospital on May 15, 2023.",
"output": "Dr. <name> performed appendectomy surgery on <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Dr. <name> performed appendectomy surgery on <name> at <hospital> on <date>.\nDe-identified: Dr. <name> performed appendectomy surgery on <name> at <hospital> on <date>."
},{
"input": "Healthcare provider 9B7C36, Emily Watson, worked with 10 patients at Memorial Hospital from March 1, 2023, to March 5, 2023.",
"output": "Healthcare provider <id>, <name>, worked with 10 patients at <hospital> from <date> to <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>",
"<date>"
],
"training": "Original: Healthcare provider <id>, <name>, worked with 10 patients at <hospital> from <date> to <date>.\nDe-identified: Healthcare provider <id>, <name>, worked with 10 patients at <hospital> from <date> to <date>."
},{
"input": "George Wilson underwent a colonoscopy on November 5, 2021, and the biopsy confirmed a benign colon polyp.",
"output": "<name> underwent a colonoscopy on <date>, and the biopsy confirmed a benign colon polyp.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name> underwent a colonoscopy on <date>, and the biopsy confirmed a benign colon polyp.\nDe-identified: <name> underwent a colonoscopy on <date>, and the biopsy confirmed a benign colon polyp."
},{
"input": "Tina Turner had her annual mammogram at Riverside Hospital on September 22, 2022, and results were normal.",
"output": "<name> had her annual mammogram at <hospital> on <date>, and results were normal.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had her annual mammogram at <hospital> on <date>, and results were normal.\nDe-identified: <name> had her annual mammogram at <hospital> on <date>, and results were normal."
},{
"input": "A chest X-ray for Susan Clark, performed on April 13, 2023, revealed signs of pneumonia.",
"output": "A chest X-ray for <name>, performed on <date>, revealed signs of pneumonia.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: A chest X-ray for <name>, performed on <date>, revealed signs of pneumonia.\nDe-identified: A chest X-ray for <name>, performed on <date>, revealed signs of pneumonia."
},{
"input": "Jack Stanfield tested positive for Hepatitis B at City Healthcare Center on July 20, 2022.",
"output": "<name> tested positive for Hepatitis B at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> tested positive for Hepatitis B at <hospital> on <date>.\nDe-identified: <name> tested positive for Hepatitis B at <hospital> on <date>."
},{
"input": "Patient Carol Davis was treated for urinary tract infection at Silver Lake Clinic from January 6, 2023, to January 13, 2023.",
"output": "Patient <name> was treated for urinary tract infection at <hospital> from <date> to <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>",
"<date>"
],
"training": "Original: Patient <name> was treated for urinary tract infection at <hospital> from <date> to <date>.\nDe-identified: Patient <name> was treated for urinary tract infection at <hospital> from <date> to <date>."
},{
"input": "Mr. Kyle Patterson visited Cornell Hospital's emergency room on March 22, 2023, due to severe chest pain.",
"output": "Mr. <name> visited <hospital>'s emergency room on <date> due to severe chest pain.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Mr. <name> visited <hospital>'s emergency room on <date> due to severe chest pain.\nDe-identified: Mr. <name> visited <hospital>'s emergency room on <date> due to severe chest pain."
},{
"input": "Dr. Robert Fisher received test results for patient 903827, Grace Lee, on March 18, 2022, confirming a kidney infection.",
"output": "Dr. <name> received test results for patient <id>, <name>, on <date>, confirming a kidney infection.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> received test results for patient <id>, <name>, on <date>, confirming a kidney infection.\nDe-identified: Dr. <name> received test results for patient <id>, <name>, on <date>, confirming a kidney infection."
},{
"input": "Patient: Olivia Johnson, Date of Admission: August 15, 2017, Allergies: Penicillin",
"output": "Patient: <name>, Date of Admission: <date>, Allergies: Penicillin",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Patient: <name>, Date of Admission: <date>, Allergies: Penicillin\nDe-identified: Patient: <name>, Date of Admission: <date>, Allergies: Penicillin"
},{
"input": "On September 18, 2022, doctor Laura Williams performed a cardiac catheterization on patient Tom Jackson.",
"output": "On <date>, doctor <name> performed a cardiac catheterization on patient <name>.",
"extracted": [
"<date>",
"<name>",
"<name>"
],
"training": "Original: On <date>, doctor <name> performed a cardiac catheterization on patient <name>.\nDe-identified: On <date>, doctor <name> performed a cardiac catheterization on patient <name>."
},{
"input": "Kimberly Watkins, patient 987654, had a colonoscopy which took place on November 12, 2021.",
"output": "<name>, patient <id>, had a colonoscopy which took place on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, patient <id>, had a colonoscopy which took place on <date>.\nDe-identified: <name>, patient <id>, had a colonoscopy which took place on <date>."
},{
"input": "Sam Patterson was transferred from St. George Hospital to St. Luke's Hospital on February 2, 2023.",
"output": "<name> was transferred from <hospital> to <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<hospital>",
"<date>"
],
"training": "Original: <name> was transferred from <hospital> to <hospital> on <date>.\nDe-identified: <name> was transferred from <hospital> to <hospital> on <date>."
},{
"input": "Patient 678901, Rachel Howard, underwent a mammogram screening at Mercy Hospital on April 16, 2022.",
"output": "Patient <id>, <name>, underwent a mammogram screening at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <id>, <name>, underwent a mammogram screening at <hospital> on <date>.\nDe-identified: Patient <id>, <name>, underwent a mammogram screening at <hospital> on <date>."
},{
"input": "On July 25, 2022, Dr. Dave Johnson performed a tonsillectomy on patient Patricia Smith.",
"output": "On <date>, Dr. <name> performed a tonsillectomy on patient <name>.",
"extracted": [
"<date>",
"<name>",
"<name>"
],
"training": "Original: On <date>, Dr. <name> performed a tonsillectomy on patient <name>.\nDe-identified: On <date>, Dr. <name> performed a tonsillectomy on patient <name>."
},{
"input": "Lab results for James Wright, taken on October 1, 2022, showed elevated liver enzymes.",
"output": "Lab results for <name>, taken on <date>, showed elevated liver enzymes.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Lab results for <name>, taken on <date>, showed elevated liver enzymes.\nDe-identified: Lab results for <name>, taken on <date>, showed elevated liver enzymes."
},{
"input": "Patient ID 342196, Brenda Watson, received a 20 unit insulin injection on June 5, 2023.",
"output": "Patient ID <id>, <name>, received a 20 unit insulin injection on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient ID <id>, <name>, received a 20 unit insulin injection on <date>.\nDe-identified: Patient ID <id>, <name>, received a 20 unit insulin injection on <date>."
},{
"input": "Leonard Cooper had a prostatectomy performed by Dr. Erica White at General Hospital on May 21, 2022.",
"output": "<name> had a prostatectomy performed by Dr. <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had a prostatectomy performed by Dr. <name> at <hospital> on <date>.\nDe-identified: <name> had a prostatectomy performed by Dr. <name> at <hospital> on <date>."
},{
"input": "Barbara Mitchell, with date of birth February 1, 1960, was diagnosed with rheumatoid arthritis.",
"output": "<name>, with date of birth <date>, was diagnosed with rheumatoid arthritis.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>, with date of birth <date>, was diagnosed with rheumatoid arthritis.\nDe-identified: <name>, with date of birth <date>, was diagnosed with rheumatoid arthritis."
},{
"input": "Prescription: 20mg Lisinopril daily for patient Abigail Lee, for hypertension, starting August 22, 2022.",
"output": "Prescription: 20mg Lisinopril daily for patient <name>, for hypertension, starting <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Prescription: 20mg Lisinopril daily for patient <name>, for hypertension, starting <date>.\nDe-identified: Prescription: 20mg Lisinopril daily for patient <name>, for hypertension, starting <date>."
},{
"input": "Jeremy Johnson, Date of Birth: 09/25/1987, underwent gallbladder surgery at Mount Sinai Hospital on October 14, 2022.",
"output": "<name>, Date of Birth: <date>, underwent gallbladder surgery at <hospital> on <date>.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, Date of Birth: <date>, underwent gallbladder surgery at <hospital> on <date>.\nDe-identified: <name>, Date of Birth: <date>, underwent gallbladder surgery at <hospital> on <date>."
},{
"input": "Susan Foster, ID: 172625, visited the Lakeside Clinic for a follow-up on her asthma condition on September 1, 2023.",
"output": "<name>, ID: <id>, visited the <hospital> for a follow-up on her asthma condition on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, ID: <id>, visited the <hospital> for a follow-up on her asthma condition on <date>.\nDe-identified: <name>, ID: <id>, visited the <hospital> for a follow-up on her asthma condition on <date>."
},{
"input": "X-ray for Matthew Turner's fractured ankle, performed at General Hospital on November 28, 2022.",
"output": "X-ray for <name>'s fractured ankle, performed at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: X-ray for <name>'s fractured ankle, performed at <hospital> on <date>.\nDe-identified: X-ray for <name>'s fractured ankle, performed at <hospital> on <date>."
},{
"input": "Physical therapy consultation for Elliot Morris' torn ACL, scheduled at Green Valley Rehab Center on March 1, 2023.",
"output": "Physical therapy consultation for <name>'s torn ACL, scheduled at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Physical therapy consultation for <name>'s torn ACL, scheduled at <hospital> on <date>.\nDe-identified: Physical therapy consultation for <name>'s torn ACL, scheduled at <hospital> on <date>."
},{
"input": "Nurse Karen Williams checked Daniel Gray's blood glucose level and it was 189 mg/dL on February 28, 2023.",
"output": "Nurse <name> checked <name>'s blood glucose level and it was 189 mg/dL on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Nurse <name> checked <name>'s blood glucose level and it was 189 mg/dL on <date>.\nDe-identified: Nurse <name> checked <name>'s blood glucose level and it was 189 mg/dL on <date>."
},{
"input": "Olivia Scott, Date of Birth: 11/18/1990, started chemotherapy for breast cancer on October 03, 2022.",
"output": "<name>, Date of Birth: <date>, started chemotherapy for breast cancer on <date>.",
"extracted": [
"<name>",
"<date>",
"<date>"
],
"training": "Original: <name>, Date of Birth: <date>, started chemotherapy for breast cancer on <date>.\nDe-identified: <name>, Date of Birth: <date>, started chemotherapy for breast cancer on <date>."
},{
"input": "Dr. Timothy Jones from Sunshine Hospital diagnosed Peter Cooper with Type 1 Diabetes on July 5, 2023.",
"output": "Dr. <name> from <hospital> diagnosed <name> with Type 1 Diabetes on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> from <hospital> diagnosed <name> with Type 1 Diabetes on <date>.\nDe-identified: Dr. <name> from <hospital> diagnosed <name> with Type 1 Diabetes on <date>."
},{
"input": "Nutritional consultation for Lisa Kim, patient ID: 153645, at Well-Fit Center on April 20, 2023.",
"output": "Nutritional consultation for <name>, patient ID: <id>, at <hospital> on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: Nutritional consultation for <name>, patient ID: <id>, at <hospital> on <date>.\nDe-identified: Nutritional consultation for <name>, patient ID: <id>, at <hospital> on <date>."
},{
"input": "Sarah Parker, Date of Birth: 05/17/1960, went for her annual mammogram at Riverwood Clinic on December 7, 2022.",
"output": "<name>, Date of Birth: <date>, went for her annual mammogram at <hospital> on <date>.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, Date of Birth: <date>, went for her annual mammogram at <hospital> on <date>.\nDe-identified: <name>, Date of Birth: <date>, went for her annual mammogram at <hospital> on <date>."
},{
"input": "Dr. Jennifer Parker requested an X-ray for Nancy Anderson's dislocated shoulder on July 1, 2021.",
"output": "Dr. <name> requested an X-ray for <name>'s dislocated shoulder on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> requested an X-ray for <name>'s dislocated shoulder on <date>.\nDe-identified: Dr. <name> requested an X-ray for <name>'s dislocated shoulder on <date>."
},{
"input": "Prescription refilled for George Wilson, patient ID: 178934, on November 15, 2022.",
"output": "Prescription refilled for <name>, patient ID: <id>, on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Prescription refilled for <name>, patient ID: <id>, on <date>.\nDe-identified: Prescription refilled for <name>, patient ID: <id>, on <date>."
},{
"input": "Janet Lewis underwent a mastectomy at Central Regional Hospital on August 20, 2021.",
"output": "<name> underwent a mastectomy at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> underwent a mastectomy at <hospital> on <date>.\nDe-identified: <name> underwent a mastectomy at <hospital> on <date>."
},{
"input": "Mrs. Barbara Howard's ultrasound showed signs of gallstones on September 18, 2022.",
"output": "Mrs. <name>'s ultrasound showed signs of gallstones on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Mrs. <name>'s ultrasound showed signs of gallstones on <date>.\nDe-identified: Mrs. <name>'s ultrasound showed signs of gallstones on <date>."
},{
"input": "Mr. Richard Johnson, DOB: July 12, 1986, entered St. Joseph's Hospital for a liver transplant on March 5, 2022.",
"output": "Mr. <name>, DOB: <date>, entered <hospital> for a liver transplant on <date>.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: Mr. <name>, DOB: <date>, entered <hospital> for a liver transplant on <date>.\nDe-identified: Mr. <name>, DOB: <date>, entered <hospital> for a liver transplant on <date>."
},{
"input": "Laboratory findings dated June 30, 2022, for Amanda Stewart (patient 897623): Hemoglobin A1C at 7.2%, indicating uncontrolled diabetes.",
"output": "Laboratory findings dated <date> for <name> (patient <id>): Hemoglobin A1C at 7.2%, indicating uncontrolled diabetes.",
"extracted": [
"<date>",
"<name>",
"<id>"
],
"training": "Original: Laboratory findings dated <date> for <name> (patient <id>): Hemoglobin A1C at 7.2%, indicating uncontrolled diabetes.\nDe-identified: Laboratory findings dated <date> for <name> (patient <id>): Hemoglobin A1C at 7.2%, indicating uncontrolled diabetes."
},{
"input": "Twin Oaks Medical Center sent Michael Thompson's medical records, including a history of kidney disease, to City Health Clinic on January 4, 2023.",
"output": "<hospital> sent <name>'s medical records, including a history of kidney disease, to <hospital> on <date>.",
"extracted": [
"<hospital>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <hospital> sent <name>'s medical records, including a history of kidney disease, to <hospital> on <date>.\nDe-identified: <hospital> sent <name>'s medical records, including a history of kidney disease, to <hospital> on <date>."
},{
"input": "The patient, Roger Peterson, exhibited symptoms of an anxiety disorder during his session on February 9, 2023.",
"output": "The patient, <name>, exhibited symptoms of an anxiety disorder during his session on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: The patient, <name>, exhibited symptoms of an anxiety disorder during his session on <date>.\nDe-identified: The patient, <name>, exhibited symptoms of an anxiety disorder during his session on <date>."
},{
"input": "Holly Jackson's pediatrician, Dr. Elizabeth Allen, immunized her with the Tdap vaccine on May 16, 2022.",
"output": "<name>'s pediatrician, Dr. <name>, immunized her with the Tdap vaccine on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name>'s pediatrician, Dr. <name>, immunized her with the Tdap vaccine on <date>.\nDe-identified: <name>'s pediatrician, Dr. <name>, immunized her with the Tdap vaccine on <date>."
},{
"input": "On October 5, 2021, Tom Anderson was diagnosed with a urinary tract infection at Coastline Medical Clinic.",
"output": "On <date>, <name> was diagnosed with a urinary tract infection at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name> was diagnosed with a urinary tract infection at <hospital>.\nDe-identified: On <date>, <name> was diagnosed with a urinary tract infection at <hospital>."
},{
"input": "Susan Nguyen, DOB: 08/01/1990, checked in to Mercy Hospital on October 20, 2022, for pneumonia treatment.",
"output": "<name>, DOB: <date>, checked in to <hospital> on <date>, for pneumonia treatment.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, DOB: <date>, checked in to <hospital> on <date>, for pneumonia treatment.\nDe-identified: <name>, DOB: <date>, checked in to <hospital> on <date>, for pneumonia treatment."
},{
"input": "Timothy Martin's X-Ray result taken at Westside Medical Center on January 5, 2022, showed signs of osteoarthritis.",
"output": "<name>'s X-Ray result taken at <hospital> on <date> showed signs of osteoarthritis.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s X-Ray result taken at <hospital> on <date> showed signs of osteoarthritis.\nDe-identified: <name>'s X-Ray result taken at <hospital> on <date> showed signs of osteoarthritis."
},{
"input": "Patient ID: 524103, Vicky Robinson, reported at Central Clinic on September 15, 2022, for their regular skin checkup.",
"output": "Patient ID: <id>, <name>, reported at <hospital> on <date> for their regular skin checkup.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, reported at <hospital> on <date> for their regular skin checkup.\nDe-identified: Patient ID: <id>, <name>, reported at <hospital> on <date> for their regular skin checkup."
},{
"input": "Laura Watkins, born June 5, 1985, was diagnosed with type 1 diabetes during her annual checkup on July 5, 2021.",
"output": "<name>, born <date>, was diagnosed with type 1 diabetes during her annual checkup on <date>.",
"extracted": [
"<name>",
"<date>",
"<date>"
],
"training": "Original: <name>, born <date>, was diagnosed with type 1 diabetes during her annual checkup on <date>.\nDe-identified: <name>, born <date>, was diagnosed with type 1 diabetes during her annual checkup on <date>."
},{
"input": "Dr. Allan Wilson at Coastal Healthcare prescribed 5mg of Lisinopril for Jose Morales' high blood pressure on November 1, 2021.",
"output": "Dr. <name> at <hospital> prescribed 5mg of Lisinopril for <name>'s high blood pressure on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> at <hospital> prescribed 5mg of Lisinopril for <name>'s high blood pressure on <date>.\nDe-identified: Dr. <name> at <hospital> prescribed 5mg of Lisinopril for <name>'s high blood pressure on <date>."
},{
"input": "Patient ID 831618, Deepak Mehta, underwent hip replacement surgery at Memorial Hospital on September 7, 2022.",
"output": "Patient ID <id>, <name>, underwent hip replacement surgery at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID <id>, <name>, underwent hip replacement surgery at <hospital> on <date>.\nDe-identified: Patient ID <id>, <name>, underwent hip replacement surgery at <hospital> on <date>."
},{
"input": "Anna Jackson received a flu vaccine at Beverly Hills Healthcare on February 4, 2022.",
"output": "<name> received a flu vaccine at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> received a flu vaccine at <hospital> on <date>.\nDe-identified: <name> received a flu vaccine at <hospital> on <date>."
},{
"input": "In February 2022, Rebecca Garcia was diagnosed with rheumatoid arthritis at Springfield Clinic.",
"output": "In <date>, <name> was diagnosed with rheumatoid arthritis at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: In <date>, <name> was diagnosed with rheumatoid arthritis at <hospital>.\nDe-identified: In <date>, <name> was diagnosed with rheumatoid arthritis at <hospital>."
},{
"input": "MRI report for patient 268493, Christopher Lee, dated October 21, 2022, showed no signs of brain tumor progression.",
"output": "MRI report for patient <id>, <name>, dated <date>, showed no signs of brain tumor progression.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: MRI report for patient <id>, <name>, dated <date>, showed no signs of brain tumor progression.\nDe-identified: MRI report for patient <id>, <name>, dated <date>, showed no signs of brain tumor progression."
},{
"input": "Mr. Daniel Kim's blood test taken at Oak Park Medical Center on June 15, 2022, revealed anemia.",
"output": "Mr. <name>'s blood test taken at <hospital> on <date> revealed anemia.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Mr. <name>'s blood test taken at <hospital> on <date> revealed anemia.\nDe-identified: Mr. <name>'s blood test taken at <hospital> on <date> revealed anemia."
},{
"input": "Peter Johnson experienced severe chest pain while visiting New Hope Clinic on August 18, 2023.",
"output": "<name> experienced severe chest pain while visiting <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> experienced severe chest pain while visiting <hospital> on <date>.\nDe-identified: <name> experienced severe chest pain while visiting <hospital> on <date>."
},{
"input": "An X-ray of Karen Williams' chest, taken on October 25, 2023, ruled out pneumonia.",
"output": "An X-ray of <name>'s chest, taken on <date>, ruled out pneumonia.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: An X-ray of <name>'s chest, taken on <date>, ruled out pneumonia.\nDe-identified: An X-ray of <name>'s chest, taken on <date>, ruled out pneumonia."
},{
"input": "Walter Thompson (ID: 457812) was discharged from Sunshine General Hospital after a successful hip replacement surgery on May 20, 2023.",
"output": "<name> (ID: <id>) was discharged from <hospital> after a successful hip replacement surgery on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name> (ID: <id>) was discharged from <hospital> after a successful hip replacement surgery on <date>.\nDe-identified: <name> (ID: <id>) was discharged from <hospital> after a successful hip replacement surgery on <date>."
},{
"input": "A blood test for Alice Moore revealed an elevated white blood cell count, taken on November 30, 2023.",
"output": "A blood test for <name> revealed an elevated white blood cell count, taken on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: A blood test for <name> revealed an elevated white blood cell count, taken on <date>.\nDe-identified: A blood test for <name> revealed an elevated white blood cell count, taken on <date>."
},{
"input": "Broken arm diagnosis for Samantha Garcia at Greenwood Medical Center on August 1, 2023.",
"output": "Broken arm diagnosis for <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Broken arm diagnosis for <name> at <hospital> on <date>.\nDe-identified: Broken arm diagnosis for <name> at <hospital> on <date>."
},{
"input": "Patient 391450, Rachel Taylor, was prescribed 100mg Zoloft for major depressive disorder on February 20, 2023.",
"output": "Patient <id>, <name>, was prescribed 100mg Zoloft for major depressive disorder on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient <id>, <name>, was prescribed 100mg Zoloft for major depressive disorder on <date>.\nDe-identified: Patient <id>, <name>, was prescribed 100mg Zoloft for major depressive disorder on <date>."
},{
"input": "Dr. Martin Turner recommended a biopsy of a suspicious mass to patient Elaine Brown during her visit on April 15, 2023.",
"output": "Dr. <name> recommended a biopsy of a suspicious mass to patient <name> during her visit on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> recommended a biopsy of a suspicious mass to patient <name> during her visit on <date>.\nDe-identified: Dr. <name> recommended a biopsy of a suspicious mass to patient <name> during her visit on <date>."
},{
"input": "George Washington underwent a successful heart transplant at St. Luke's Hospital on December 9, 2023.",
"output": "<name> underwent a successful heart transplant at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> underwent a successful heart transplant at <hospital> on <date>.\nDe-identified: <name> underwent a successful heart transplant at <hospital> on <date>."
},{
"input": "Patient: Josephine Parker, ID: 503214, Blood Type: B+, Emergency Contact: Laura Parker (sister).",
"output": "Patient: <name>, ID: <id>, Blood Type: B+, Emergency Contact: <name> (sister).",
"extracted": [
"<name>",
"<id>",
"<name>"
],
"training": "Original: Patient: <name>, ID: <id>, Blood Type: B+, Emergency Contact: <name> (sister).\nDe-identified: Patient: <name>, ID: <id>, Blood Type: B+, Emergency Contact: <name> (sister)."
},{
"input": "An ultrasound taken at Angel Hospital on January 31, 2023, showed 38-year-old Lydia Roberts was pregnant with twins.",
"output": "An ultrasound taken at <hospital> on <date>, showed <age>-year-old <name> was pregnant with twins.",
"extracted": [
"<hospital>",
"<date>",
"<age>",
"<name>"
],
"training": "Original: An ultrasound taken at <hospital> on <date>, showed <age>-year-old <name> was pregnant with twins.\nDe-identified: An ultrasound taken at <hospital> on <date>, showed <age>-year-old <name> was pregnant with twins."
},{
"input": "Patient Teddy Williams had brain surgery for a tumor at Memorial Hospital on September 25, 2021.",
"output": "Patient <name> had brain surgery for a tumor at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <name> had brain surgery for a tumor at <hospital> on <date>.\nDe-identified: Patient <name> had brain surgery for a tumor at <hospital> on <date>."
},{
"input": "Janet Clark underwent chemotherapy for Stage 3 breast cancer starting on October 4, 2020.",
"output": "<name> underwent chemotherapy for Stage 3 breast cancer starting on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name> underwent chemotherapy for Stage 3 breast cancer starting on <date>.\nDe-identified: <name> underwent chemotherapy for Stage 3 breast cancer starting on <date>."
},{
"input": "Hemoglobin A1c for Sophia Hanson, patient 245001, was 8.1% on July 20, 2021.",
"output": "Hemoglobin A1c for <name>, patient <id>, was 8.1% on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Hemoglobin A1c for <name>, patient <id>, was 8.1% on <date>.\nDe-identified: Hemoglobin A1c for <name>, patient <id>, was 8.1% on <date>."
},{
"input": "Doctor James Watson administered the COVID-19 vaccine to Samuel Jackson on August 15, 2021.",
"output": "Doctor <name> administered the COVID-19 vaccine to <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Doctor <name> administered the COVID-19 vaccine to <name> on <date>.\nDe-identified: Doctor <name> administered the COVID-19 vaccine to <name> on <date>."
},{
"input": "Lucy O'Connell was admitted to Boston Children's Hospital for pneumonia on November 10, 2019.",
"output": "<name> was admitted to <hospital> for pneumonia on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> was admitted to <hospital> for pneumonia on <date>.\nDe-identified: <name> was admitted to <hospital> for pneumonia on <date>."
},{
"input": "Dr. Samantha Olsen prescribed a 12-day course of Azithromycin for Fred Jenkins' bacterial infection on December 5, 2022.",
"output": "Dr. <name> prescribed a 12-day course of Azithromycin for <name>'s bacterial infection on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> prescribed a 12-day course of Azithromycin for <name>'s bacterial infection on <date>.\nDe-identified: Dr. <name> prescribed a 12-day course of Azithromycin for <name>'s bacterial infection on <date>."
},{
"input": "Patient ID: 542313, Susie Lee, suffered a severe allergic reaction to penicillin on April 30, 2021.",
"output": "Patient ID: <id>, <name>, suffered a severe allergic reaction to penicillin on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, suffered a severe allergic reaction to penicillin on <date>.\nDe-identified: Patient ID: <id>, <name>, suffered a severe allergic reaction to penicillin on <date>."
},{
"input": "Dr. Lopez observed a growth on the right lung of Xavier Martinez during a checkup on February 2, 2020.",
"output": "Dr. <name> observed a growth on the right lung of <name> during a checkup on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> observed a growth on the right lung of <name> during a checkup on <date>.\nDe-identified: Dr. <name> observed a growth on the right lung of <name> during a checkup on <date>."
},{
"input": "Patient 998723, Tom Wellington, was diagnosed with Type 1 diabetes after a glucose test on June 20, 2019.",
"output": "Patient <id>, <name>, was diagnosed with Type 1 diabetes after a glucose test on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient <id>, <name>, was diagnosed with Type 1 diabetes after a glucose test on <date>.\nDe-identified: Patient <id>, <name>, was diagnosed with Type 1 diabetes after a glucose test on <date>."
},{
"input": "Rachel Adams attended physical therapy at Santa Clara Medical Center after her hip surgery on May 6, 2021.",
"output": "<name> attended physical therapy at <hospital> after her hip surgery on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> attended physical therapy at <hospital> after her hip surgery on <date>.\nDe-identified: <name> attended physical therapy at <hospital> after her hip surgery on <date>."
},{
"input": "Dr. Alice Green performed the surgical procedure for appendectomy on patient Terrence Johnson at Riverbend Medical Center on August 5, 2020.",
"output": "Dr. <name> performed the surgical procedure for appendectomy on patient <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Dr. <name> performed the surgical procedure for appendectomy on patient <name> at <hospital> on <date>.\nDe-identified: Dr. <name> performed the surgical procedure for appendectomy on patient <name> at <hospital> on <date>."
},{
"input": "Suzanne Clark, PT, provided physical therapy to John Doe, patient ID #39485, for a torn ACL on September 29, 2021.",
"output": "<name>, PT, provided physical therapy to <name>, patient ID#<id>, for a torn ACL on <date>.",
"extracted": [
"<name>",
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, PT, provided physical therapy to <name>, patient ID#<id>, for a torn ACL on <date>.\nDe-identified: <name>, PT, provided physical therapy to <name>, patient ID#<id>, for a torn ACL on <date>."
},{
"input": "Jane White reported to the emergency department at Hillcrest Hospital with shortness of breath on November 10, 2022.",
"output": "<name> reported to the emergency department at <hospital> with shortness of breath on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> reported to the emergency department at <hospital> with shortness of breath on <date>.\nDe-identified: <name> reported to the emergency department at <hospital> with shortness of breath on <date>."
},{
"input": "Nurse Kelly Jones administered the flu vaccine to patient Timothy McCann on September 15, 2023.",
"output": "Nurse <name> administered the flu vaccine to patient <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Nurse <name> administered the flu vaccine to patient <name> on <date>.\nDe-identified: Nurse <name> administered the flu vaccine to patient <name> on <date>."
},{
"input": "Dr. Larry Hogan operated on Jessica Drummond for gallbladder removal at Sunshine Hospital on December 3, 2023.",
"output": "Dr. <name> operated on <name> for gallbladder removal at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Dr. <name> operated on <name> for gallbladder removal at <hospital> on <date>.\nDe-identified: Dr. <name> operated on <name> for gallbladder removal at <hospital> on <date>."
},{
"input": "Tanya Lewis, patient ID#68742, was treated by Dr. Steven Singh for a broken ankle on July 20, 2021.",
"output": "<name>, patient ID#<id>, was treated by Dr. <name> for a broken ankle on <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: <name>, patient ID#<id>, was treated by Dr. <name> for a broken ankle on <date>.\nDe-identified: <name>, patient ID#<id>, was treated by Dr. <name> for a broken ankle on <date>."
},{
"input": "Karen Lee had a colonoscopy performed by Dr. Bryan Wilson at Northridge Healthcare on October 21, 2022.",
"output": "<name> had a colonoscopy performed by Dr. <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had a colonoscopy performed by Dr. <name> at <hospital> on <date>.\nDe-identified: <name> had a colonoscopy performed by Dr. <name> at <hospital> on <date>."
},{
"input": "Mrs. Nancy Kim had her annual mammogram at Twin Oaks Medical Center on November 4, 2022.",
"output": "Mrs. <name> had her annual mammogram at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Mrs. <name> had her annual mammogram at <hospital> on <date>.\nDe-identified: Mrs. <name> had her annual mammogram at <hospital> on <date>."
},{
"input": "An x-ray for patient 439854, Fr\u00e9d\u00e9ric Leroux, was taken to assess his lung condition on May 12, 2023.",
"output": "An x-ray for patient <id>, <name>, was taken to assess his lung condition on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: An x-ray for patient <id>, <name>, was taken to assess his lung condition on <date>.\nDe-identified: An x-ray for patient <id>, <name>, was taken to assess his lung condition on <date>."
},{
"input": "Peter Walker, patient 278912, was seen by dietitian Jessica Mendez for weight management at Valley Springs Medical Center on June 18, 2023.",
"output": "<name>, patient <id>, was seen by dietitian <name> for weight management at <hospital> on <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, patient <id>, was seen by dietitian <name> for weight management at <hospital> on <date>.\nDe-identified: <name>, patient <id>, was seen by dietitian <name> for weight management at <hospital> on <date>."
},{
"input": "Rebecca Adams was admitted to Green Valley Hospital on July 12, 2022, due to severe allergic reactions.",
"output": "<name> was admitted to <hospital> on <date>, due to severe allergic reactions.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> was admitted to <hospital> on <date>, due to severe allergic reactions.\nDe-identified: <name> was admitted to <hospital> on <date>, due to severe allergic reactions."
},{
"input": "On August 22, 2022, patient 5927, George Nelson, was recommended physiotherapy after a knee surgery.",
"output": "On <date>, patient <id>, <name>, was recommended physiotherapy after a knee surgery.",
"extracted": [
"<date>",
"<id>",
"<name>"
],
"training": "Original: On <date>, patient <id>, <name>, was recommended physiotherapy after a knee surgery.\nDe-identified: On <date>, patient <id>, <name>, was recommended physiotherapy after a knee surgery."
},{
"input": "Dr. Joanna Hart prescribed 10mg of Lexapro for anxiety to patient Susan Allen on September 11, 2022.",
"output": "Dr. <name> prescribed 10mg of Lexapro for anxiety to patient <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> prescribed 10mg of Lexapro for anxiety to patient <name> on <date>.\nDe-identified: Dr. <name> prescribed 10mg of Lexapro for anxiety to patient <name> on <date>."
},{
"input": "Patient ID: 79823, Michael Johnson, had an emergency appendectomy at Central City Hospital on May 23, 2022.",
"output": "Patient ID: <id>, <name>, had an emergency appendectomy at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, had an emergency appendectomy at <hospital> on <date>.\nDe-identified: Patient ID: <id>, <name>, had an emergency appendectomy at <hospital> on <date>."
},{
"input": "Tom Hamilton's last dental check-up was done by Dr. Mark Stevens on October 2, 2022.",
"output": "<name>'s last dental check-up was done by Dr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name>'s last dental check-up was done by Dr. <name> on <date>.\nDe-identified: <name>'s last dental check-up was done by Dr. <name> on <date>."
},{
"input": "On June 30, 2022, Jane Taylor found out she had a severe vitamin D deficiency from a blood test.",
"output": "On <date>, <name> found out she had a severe vitamin D deficiency from a blood test.",
"extracted": [
"<date>",
"<name>"
],
"training": "Original: On <date>, <name> found out she had a severe vitamin D deficiency from a blood test.\nDe-identified: On <date>, <name> found out she had a severe vitamin D deficiency from a blood test."
},{
"input": "Karen Wells was diagnosed with type 2 diabetes by Dr. Carol Davis on December 21, 2022.",
"output": "<name> was diagnosed with type 2 diabetes by Dr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name> was diagnosed with type 2 diabetes by Dr. <name> on <date>.\nDe-identified: <name> was diagnosed with type 2 diabetes by Dr. <name> on <date>."
},{
"input": "Michael White, patient 73217, had a colonoscopy at Crescent Valley Regional Hospital on February 5, 2023.",
"output": "<name>, patient <id>, had a colonoscopy at <hospital> on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, patient <id>, had a colonoscopy at <hospital> on <date>.\nDe-identified: <name>, patient <id>, had a colonoscopy at <hospital> on <date>."
},{
"input": "X-Ray result for Emma Anderson showed a broken wrist, taken at St. Peter's Hospital on April 22, 2023.",
"output": "X-Ray result for <name> showed a broken wrist, taken at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: X-Ray result for <name> showed a broken wrist, taken at <hospital> on <date>.\nDe-identified: X-Ray result for <name> showed a broken wrist, taken at <hospital> on <date>."
},{
"input": "Dr. Rachel Jackson removed a suspicious mole from patient 102314, Richard Brown, on November 18, 2022.",
"output": "Dr. <name> removed a suspicious mole from patient <id>, <name>, on <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> removed a suspicious mole from patient <id>, <name>, on <date>.\nDe-identified: Dr. <name> removed a suspicious mole from patient <id>, <name>, on <date>."
},{
"input": "Dr. Melanie Torres requested a urinalysis for patient 421356, George Adams, on July 15, 2021.",
"output": "Dr. <name> requested a urinalysis for patient <id>, <name>, on <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> requested a urinalysis for patient <id>, <name>, on <date>.\nDe-identified: Dr. <name> requested a urinalysis for patient <id>, <name>, on <date>."
},{
"input": "Carla Johnson received a flu vaccination at Oakwood Medical Center on October 12, 2022.",
"output": "<name> received a flu vaccination at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> received a flu vaccination at <hospital> on <date>.\nDe-identified: <name> received a flu vaccination at <hospital> on <date>."
},{
"input": "Joe Martin's X-ray report indicated arthritis, examined at Redwood Healthcare Clinic on September 6, 2023.",
"output": "<name>'s X-ray report indicated arthritis, examined at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s X-ray report indicated arthritis, examined at <hospital> on <date>.\nDe-identified: <name>'s X-ray report indicated arthritis, examined at <hospital> on <date>."
},{
"input": "Alan Thompson underwent a lumbar puncture procedure performed by Dr. Michael Henderson on April 7, 2021.",
"output": "<name> underwent a lumbar puncture procedure performed by Dr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name> underwent a lumbar puncture procedure performed by Dr. <name> on <date>.\nDe-identified: <name> underwent a lumbar puncture procedure performed by Dr. <name> on <date>."
},{
"input": "Michelle King, Date of Admission: November 28, 2022, Diagnosis: Chronic Renal Failure, Hospital: Grandville Health Center.",
"output": "<name>, Date of Admission: <date>, Diagnosis: Chronic Renal Failure, Hospital: <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name>, Date of Admission: <date>, Diagnosis: Chronic Renal Failure, Hospital: <hospital>.\nDe-identified: <name>, Date of Admission: <date>, Diagnosis: Chronic Renal Failure, Hospital: <hospital>."
},{
"input": "Pediatric patient Amanda Clark, age 5, received a chickenpox vaccine at Shoreline Medical Clinic on May 15, 2021.",
"output": "Pediatric patient <name>, age 5, received a chickenpox vaccine at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Pediatric patient <name>, age 5, received a chickenpox vaccine at <hospital> on <date>.\nDe-identified: Pediatric patient <name>, age 5, received a chickenpox vaccine at <hospital> on <date>."
},{
"input": "Patient ID: 368419, Daniel White, had an echocardiogram performed on July 10, 2021, at Greenfield Medical Institute.",
"output": "Patient ID: <id>, <name>, had an echocardiogram performed on <date>, at <hospital>.",
"extracted": [
"<id>",
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: Patient ID: <id>, <name>, had an echocardiogram performed on <date>, at <hospital>.\nDe-identified: Patient ID: <id>, <name>, had an echocardiogram performed on <date>, at <hospital>."
},{
"input": "Roger Wilson's colonoscopy report on June 14, 2022, showed suspicious polyps that need further assessment.",
"output": "<name>'s colonoscopy report on <date> showed suspicious polyps that need further assessment.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s colonoscopy report on <date> showed suspicious polyps that need further assessment.\nDe-identified: <name>'s colonoscopy report on <date> showed suspicious polyps that need further assessment."
},{
"input": "Marissa Stevens attended her prenatal check-up appointment on February 3, 2022, at Pineview Women's Health Center.",
"output": "<name> attended her prenatal check-up appointment on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> attended her prenatal check-up appointment on <date>, at <hospital>.\nDe-identified: <name> attended her prenatal check-up appointment on <date>, at <hospital>."
},{
"input": "Dr. Paul Baker confirmed a gastroenteritis diagnosis for patient Laura Ellis on December 22, 2021.",
"output": "Dr. <name> confirmed a gastroenteritis diagnosis for patient <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> confirmed a gastroenteritis diagnosis for patient <name> on <date>.\nDe-identified: Dr. <name> confirmed a gastroenteritis diagnosis for patient <name> on <date>."
},{
"input": "Dr. Kelvin Johnson received the pathology report for Mildred Jackson on August 15, 2020, indicating benign tumor.",
"output": "Dr. <name> received the pathology report for <name> on <date>, indicating benign tumor.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> received the pathology report for <name> on <date>, indicating benign tumor.\nDe-identified: Dr. <name> received the pathology report for <name> on <date>, indicating benign tumor."
},{
"input": "Patient ID: 8675309, Emily Thompson, visited Green Valley Clinic on July 4th, 2021 with symptoms of flu.",
"output": "Patient ID: <id>, <name>, visited <hospital> on <date> with symptoms of flu.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, visited <hospital> on <date> with symptoms of flu.\nDe-identified: Patient ID: <id>, <name>, visited <hospital> on <date> with symptoms of flu."
},{
"input": "Malcolm Abbott had an appendectomy at Mercy General on February 29, 2020, by Dr. Rebecca White.",
"output": "<name> had an appendectomy at <hospital> on <date>, by Dr. <name>.",
"extracted": [
"<name>",
"<hospital>",
"<date>",
"<name>"
],
"training": "Original: <name> had an appendectomy at <hospital> on <date>, by Dr. <name>.\nDe-identified: <name> had an appendectomy at <hospital> on <date>, by Dr. <name>."
},{
"input": "X-ray results for Jane Smith, date: April 1, 2021, show a hairline fracture of the left radius.",
"output": "X-ray results for <name>, date: <date>, show a hairline fracture of the left radius.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: X-ray results for <name>, date: <date>, show a hairline fracture of the left radius.\nDe-identified: X-ray results for <name>, date: <date>, show a hairline fracture of the left radius."
},{
"input": "Daniel Young's ophthalmology assessment, performed at Miracle Eye Clinic on November 23, 2021, found mild cataracts.",
"output": "<name>'s ophthalmology assessment, performed at <hospital> on <date>, found mild cataracts.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s ophthalmology assessment, performed at <hospital> on <date>, found mild cataracts.\nDe-identified: <name>'s ophthalmology assessment, performed at <hospital> on <date>, found mild cataracts."
},{
"input": "Patient 109876, Linda Watson, refilled her prescription for 20mg Citalopram at HealthCity Pharmacy on October 31, 2021.",
"output": "Patient <id>, <name>, refilled her prescription for 20mg Citalopram at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <id>, <name>, refilled her prescription for 20mg Citalopram at <hospital> on <date>.\nDe-identified: Patient <id>, <name>, refilled her prescription for 20mg Citalopram at <hospital> on <date>."
},{
"input": "Dr. Sandra Lewis referred Walter Brown to Mountain View Physical Therapy Clinic, appointment: January 19, 2021.",
"output": "Dr. <name> referred <name> to <hospital>, appointment: <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Dr. <name> referred <name> to <hospital>, appointment: <date>.\nDe-identified: Dr. <name> referred <name> to <hospital>, appointment: <date>."
},{
"input": "Karen Diaz received her MMR vaccine on September 10, 2021, at Happy Health Clinic.",
"output": "<name> received her MMR vaccine on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> received her MMR vaccine on <date>, at <hospital>.\nDe-identified: <name> received her MMR vaccine on <date>, at <hospital>."
},{
"input": "Gynecology visit for Allison Stewart at Northwood Women's Health on December 3, 2022 - negative for cervical cancer.",
"output": "Gynecology visit for <name> at <hospital> on <date> - negative for cervical cancer.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Gynecology visit for <name> at <hospital> on <date> - negative for cervical cancer.\nDe-identified: Gynecology visit for <name> at <hospital> on <date> - negative for cervical cancer."
},{
"input": "David Johnson's patient ID is 583902, he started his physiotherapy sessions at Healing Hands on October 20, 2022.",
"output": "<name>'s patient ID is <id>, he started his physiotherapy sessions at <hospital> on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s patient ID is <id>, he started his physiotherapy sessions at <hospital> on <date>.\nDe-identified: <name>'s patient ID is <id>, he started his physiotherapy sessions at <hospital> on <date>."
},{
"input": "Jameson O'Connell, patient ID: 575683, presented with pneumonia on September 15, 2023 at Mercy General Hospital.",
"output": "<name>, patient ID: <id>, presented with pneumonia on <date> at <hospital>.",
"extracted": [
"<name>",
"<id>",
"<date>",
"<hospital>"
],
"training": "Original: <name>, patient ID: <id>, presented with pneumonia on <date> at <hospital>.\nDe-identified: <name>, patient ID: <id>, presented with pneumonia on <date> at <hospital>."
},{
"input": "Dr. Margaret Chen performed an appendectomy on Peter Johnson, on July 4, 2023.",
"output": "Dr. <name> performed an appendectomy on <name>, on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> performed an appendectomy on <name>, on <date>.\nDe-identified: Dr. <name> performed an appendectomy on <name>, on <date>."
},{
"input": "An x-ray revealed a broken rib for Kelly Jackson, from an accident on November 12, 2023.",
"output": "An x-ray revealed a broken rib for <name>, from an accident on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: An x-ray revealed a broken rib for <name>, from an accident on <date>.\nDe-identified: An x-ray revealed a broken rib for <name>, from an accident on <date>."
},{
"input": "On August 20, 2023, Eastern Memorial Hospital diagnosed a patient, Susan Martin, with Crohn's Disease.",
"output": "On <date>, <hospital> diagnosed a patient, <name>, with Crohn's Disease.",
"extracted": [
"<date>",
"<hospital>",
"<name>"
],
"training": "Original: On <date>, <hospital> diagnosed a patient, <name>, with Crohn's Disease.\nDe-identified: On <date>, <hospital> diagnosed a patient, <name>, with Crohn's Disease."
},{
"input": "Patient 832949, Daniel Brown, received a flu vaccine on October 29, 2023, administered by nurse Jennifer Watson.",
"output": "Patient <id>, <name>, received a flu vaccine on <date>, administered by nurse <name>.",
"extracted": [
"<id>",
"<name>",
"<date>",
"<name>"
],
"training": "Original: Patient <id>, <name>, received a flu vaccine on <date>, administered by nurse <name>.\nDe-identified: Patient <id>, <name>, received a flu vaccine on <date>, administered by nurse <name>."
},{
"input": "The echocardiogram for Kim Williams, taken on February 24, 2023, showed signs of left-sided heart failure.",
"output": "The echocardiogram for <name>, taken on <date>, showed signs of left-sided heart failure.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: The echocardiogram for <name>, taken on <date>, showed signs of left-sided heart failure.\nDe-identified: The echocardiogram for <name>, taken on <date>, showed signs of left-sided heart failure."
},{
"input": "Tina Thompson visited Green Valley Clinic, provider number: 34265, on May 1, 2023, complaining of a sore throat.",
"output": "<name> visited <hospital>, provider number: <id>, on <date>, complaining of a sore throat.",
"extracted": [
"<name>",
"<hospital>",
"<id>",
"<date>"
],
"training": "Original: <name> visited <hospital>, provider number: <id>, on <date>, complaining of a sore throat.\nDe-identified: <name> visited <hospital>, provider number: <id>, on <date>, complaining of a sore throat."
},{
"input": "Patient Walter Wilson (ID: 283978) reported persistent headaches on July 19, 2023 and was referred to a neurologist.",
"output": "Patient <name> (ID: <id>) reported persistent headaches on <date> and was referred to a neurologist.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Patient <name> (ID: <id>) reported persistent headaches on <date> and was referred to a neurologist.\nDe-identified: Patient <name> (ID: <id>) reported persistent headaches on <date> and was referred to a neurologist."
},{
"input": "On April 25, 2023, Lisa Clark underwent a knee replacement surgery at Western Regional Medical Center.",
"output": "On <date>, <name> underwent a knee replacement surgery at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name> underwent a knee replacement surgery at <hospital>.\nDe-identified: On <date>, <name> underwent a knee replacement surgery at <hospital>."
},{
"input": "Oliver Evans, patient ID: 236179, had an ultrasound to investigate the cause of abdominal pain on September 9, 2023.",
"output": "<name>, patient ID: <id>, had an ultrasound to investigate the cause of abdominal pain on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, patient ID: <id>, had an ultrasound to investigate the cause of abdominal pain on <date>.\nDe-identified: <name>, patient ID: <id>, had an ultrasound to investigate the cause of abdominal pain on <date>."
},{
"input": "Susan Williams underwent surgery on August 12, 2022, to remove a benign tumor at the Maestro Medical Center.",
"output": "<name> underwent surgery on <date> to remove a benign tumor at the <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> underwent surgery on <date> to remove a benign tumor at the <hospital>.\nDe-identified: <name> underwent surgery on <date> to remove a benign tumor at the <hospital>."
},{
"input": "Patient Mark Spencer's Patient ID is 3928742. He was treated for gastroenteritis at Providence Hospital on October 5, 2022.",
"output": "Patient <name>'s Patient ID is <id>. He was treated for gastroenteritis at <hospital> on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <name>'s Patient ID is <id>. He was treated for gastroenteritis at <hospital> on <date>.\nDe-identified: Patient <name>'s Patient ID is <id>. He was treated for gastroenteritis at <hospital> on <date>."
},{
"input": "A chest X-ray taken on April 15, 2023, for patient Michael Johnson revealed pneumonia.",
"output": "A chest X-ray taken on <date> for patient <name> revealed pneumonia.",
"extracted": [
"<date>",
"<name>"
],
"training": "Original: A chest X-ray taken on <date> for patient <name> revealed pneumonia.\nDe-identified: A chest X-ray taken on <date> for patient <name> revealed pneumonia."
},{
"input": "Dr. James Martin diagnosed Karen McLane with hypothyroidism on September 26, 2023, and prescribed Levothyroxine.",
"output": "Dr. <name> diagnosed <name> with hypothyroidism on <date> and prescribed Levothyroxine.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> diagnosed <name> with hypothyroidism on <date> and prescribed Levothyroxine.\nDe-identified: Dr. <name> diagnosed <name> with hypothyroidism on <date> and prescribed Levothyroxine."
},{
"input": "Nurse Clark completed the transfer of patient Whitney Peterson, ID 2254286, on July 1, 2023.",
"output": "Nurse <name> completed the transfer of patient <name>, ID <id>, on <date>.",
"extracted": [
"<name>",
"<name>",
"<id>",
"<date>"
],
"training": "Original: Nurse <name> completed the transfer of patient <name>, ID <id>, on <date>.\nDe-identified: Nurse <name> completed the transfer of patient <name>, ID <id>, on <date>."
},{
"input": "The emergency room at Mercy Hospital admitted patient Lisa Bailey on February 2, 2023, due to chest pain.",
"output": "The emergency room at <hospital> admitted patient <name> on <date> due to chest pain.",
"extracted": [
"<hospital>",
"<name>",
"<date>"
],
"training": "Original: The emergency room at <hospital> admitted patient <name> on <date> due to chest pain.\nDe-identified: The emergency room at <hospital> admitted patient <name> on <date> due to chest pain."
},{
"input": "Edward Smith's last flu shot was given on December 10, 2022, at North Street Clinic.",
"output": "<name>'s last flu shot was given on <date> at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name>'s last flu shot was given on <date> at <hospital>.\nDe-identified: <name>'s last flu shot was given on <date> at <hospital>."
},{
"input": "Lab test for Patient ID 874300, Emma Lee, showed elevated hemoglobin levels on April 20, 2023.",
"output": "Lab test for Patient ID <id>, <name>, showed elevated hemoglobin levels on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Lab test for Patient ID <id>, <name>, showed elevated hemoglobin levels on <date>.\nDe-identified: Lab test for Patient ID <id>, <name>, showed elevated hemoglobin levels on <date>."
},{
"input": "Evelyn Gutierrez was diagnosed with estrogen receptor-positive breast cancer on May 27, 2023, at Good Hope Hospital.",
"output": "<name> was diagnosed with estrogen receptor-positive breast cancer on <date> at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> was diagnosed with estrogen receptor-positive breast cancer on <date> at <hospital>.\nDe-identified: <name> was diagnosed with estrogen receptor-positive breast cancer on <date> at <hospital>."
},{
"input": "At Greenwood Center, the insulin pump of patient 774803, Timothy Wilson, was calibrated on October 18, 2023.",
"output": "At <hospital>, the insulin pump of patient <id>, <name>, was calibrated on <date>.",
"extracted": [
"<hospital>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: At <hospital>, the insulin pump of patient <id>, <name>, was calibrated on <date>.\nDe-identified: At <hospital>, the insulin pump of patient <id>, <name>, was calibrated on <date>."
},{
"input": "Sarah Johnson experienced an anaphylactic reaction on June 20, 2023, following exposure to peanuts.",
"output": "<name> experienced an anaphylactic reaction on <date>, following exposure to peanuts.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name> experienced an anaphylactic reaction on <date>, following exposure to peanuts.\nDe-identified: <name> experienced an anaphylactic reaction on <date>, following exposure to peanuts."
},{
"input": "Dr. Margaret Taylor referred Daniel Kim to the Rapid Response Team at Watson General Hospital on August 15, 2023.",
"output": "Dr. <name> referred <name> to the Rapid Response Team at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Dr. <name> referred <name> to the Rapid Response Team at <hospital> on <date>.\nDe-identified: Dr. <name> referred <name> to the Rapid Response Team at <hospital> on <date>."
},{
"input": "Emergency Surgery performed on 08/01/2023 for patient Kyle Martin, ID: 656523, appendicitis.",
"output": "Emergency Surgery performed on <date> for patient <name>, ID: <id>, appendicitis.",
"extracted": [
"<date>",
"<name>",
"<id>"
],
"training": "Original: Emergency Surgery performed on <date> for patient <name>, ID: <id>, appendicitis.\nDe-identified: Emergency Surgery performed on <date> for patient <name>, ID: <id>, appendicitis."
},{
"input": "Patient Mary Watson's X-ray taken at St. John's Hospital on 09/17/2023 revealed a right femur fracture.",
"output": "Patient <name>'s X-ray taken at <hospital> on <date> revealed a right femur fracture.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <name>'s X-ray taken at <hospital> on <date> revealed a right femur fracture.\nDe-identified: Patient <name>'s X-ray taken at <hospital> on <date> revealed a right femur fracture."
},{
"input": "Emily James completed her COVID-19 vaccination on October 21, 2023, at Lakeside Health Center.",
"output": "<name> completed her COVID-19 vaccination on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> completed her COVID-19 vaccination on <date>, at <hospital>.\nDe-identified: <name> completed her COVID-19 vaccination on <date>, at <hospital>."
},{
"input": "Natalia Johnson had her gallbladder removed on November 6, 2023, at Wilson Medical Center.",
"output": "<name> had her gallbladder removed on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> had her gallbladder removed on <date>, at <hospital>.\nDe-identified: <name> had her gallbladder removed on <date>, at <hospital>."
},{
"input": "Medication prescribed to patient 32467, Maria Ortega, for hypertension on 07/15/2023.",
"output": "Medication prescribed to patient <id>, <name>, for hypertension on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Medication prescribed to patient <id>, <name>, for hypertension on <date>.\nDe-identified: Medication prescribed to patient <id>, <name>, for hypertension on <date>."
},{
"input": "Joshua Smith, July 25, 2023, first chemotherapy session for stage 3 colon cancer.",
"output": "<name>, <date>, first chemotherapy session for stage 3 colon cancer.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>, <date>, first chemotherapy session for stage 3 colon cancer.\nDe-identified: <name>, <date>, first chemotherapy session for stage 3 colon cancer."
},{
"input": "Katie Adams, Patient ID: 847362, gave birth to a healthy baby girl on September 12, 2023, at St. Luke's Hospital.",
"output": "<name>, Patient ID: <id>, gave birth to a healthy baby girl on <date>, at <hospital>.",
"extracted": [
"<name>",
"<id>",
"<date>",
"<hospital>"
],
"training": "Original: <name>, Patient ID: <id>, gave birth to a healthy baby girl on <date>, at <hospital>.\nDe-identified: <name>, Patient ID: <id>, gave birth to a healthy baby girl on <date>, at <hospital>."
},{
"input": "On 10/15/2023, Leah Thompson's mammogram at Mercy Hospital indicated a suspicious mass.",
"output": "On <date>, <name>'s mammogram at <hospital> indicated a suspicious mass.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name>'s mammogram at <hospital> indicated a suspicious mass.\nDe-identified: On <date>, <name>'s mammogram at <hospital> indicated a suspicious mass."
},{
"input": "Pediatric patient, James Wilson, visited Dr. Clarke at Grand River Hospital on August 1, 2023 for a vaccination.",
"output": "Pediatric patient, <name>, visited Dr. <name> at <hospital> on <date> for a vaccination.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Pediatric patient, <name>, visited Dr. <name> at <hospital> on <date> for a vaccination.\nDe-identified: Pediatric patient, <name>, visited Dr. <name> at <hospital> on <date> for a vaccination."
},{
"input": "X-ray reports for Nancy Pierce indicated a fractured arm, performed on November 2, 2023 at Mercy General Hospital.",
"output": "X-ray reports for <name> indicated a fractured arm, performed on <date> at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: X-ray reports for <name> indicated a fractured arm, performed on <date> at <hospital>.\nDe-identified: X-ray reports for <name> indicated a fractured arm, performed on <date> at <hospital>."
},{
"input": "Sam McDonald, MRN 098762, was discharged from Regal Medical Center on September 30, 2023 after appendicitis surgery.",
"output": "<name>, MRN <id>, was discharged from <hospital> on <date> after appendicitis surgery.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, MRN <id>, was discharged from <hospital> on <date> after appendicitis surgery.\nDe-identified: <name>, MRN <id>, was discharged from <hospital> on <date> after appendicitis surgery."
},{
"input": "Mrs. Laura Johnson's glucose levels were 150 mg/dL, measured at Central Clinic on February 20, 2024.",
"output": "Mrs. <name>'s glucose levels were 150 mg/dL, measured at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Mrs. <name>'s glucose levels were 150 mg/dL, measured at <hospital> on <date>.\nDe-identified: Mrs. <name>'s glucose levels were 150 mg/dL, measured at <hospital> on <date>."
},{
"input": "Dr. Jessica Martinez suggested a colonoscopy for Mr. Stephen Clark on March 5, 2024 at Fountain Clinic.",
"output": "Dr. <name> suggested a colonoscopy for Mr. <name> on <date> at <hospital>.",
"extracted": [
"<name>",
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: Dr. <name> suggested a colonoscopy for Mr. <name> on <date> at <hospital>.\nDe-identified: Dr. <name> suggested a colonoscopy for Mr. <name> on <date> at <hospital>."
},{
"input": "Hank Williams, patient 204939, had a consultation with Dr. Anderson at New Life Medical Center on September 7, 2024.",
"output": "<name>, patient <id>, had a consultation with Dr. <name> at <hospital> on <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, patient <id>, had a consultation with Dr. <name> at <hospital> on <date>.\nDe-identified: <name>, patient <id>, had a consultation with Dr. <name> at <hospital> on <date>."
},{
"input": "Mammogram result for Mrs. Allison Thompson, taken at St. Joseph's Hospital on May 21, 2024, showed no abnormalities.",
"output": "Mammogram result for Mrs. <name>, taken at <hospital> on <date>, showed no abnormalities.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Mammogram result for Mrs. <name>, taken at <hospital> on <date>, showed no abnormalities.\nDe-identified: Mammogram result for Mrs. <name>, taken at <hospital> on <date>, showed no abnormalities."
},{
"input": "Peter Brown's blood type is B-negative, discovered during a test at Grace Medical Center on July 27, 2024.",
"output": "<name>'s blood type is B-negative, discovered during a test at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s blood type is B-negative, discovered during a test at <hospital> on <date>.\nDe-identified: <name>'s blood type is B-negative, discovered during a test at <hospital> on <date>."
},{
"input": "Tanya Lewis, Patient ID 601965, complained of stiffness and soreness; a fibromyalgia diagnosis was confirmed on November 31, 2024.",
"output": "<name>, Patient ID <id>, complained of stiffness and soreness; a fibromyalgia diagnosis was confirmed on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, Patient ID <id>, complained of stiffness and soreness; a fibromyalgia diagnosis was confirmed on <date>.\nDe-identified: <name>, Patient ID <id>, complained of stiffness and soreness; a fibromyalgia diagnosis was confirmed on <date>."
},{
"input": "Ultrasound of Lillian Smith's thyroid gland, performed at Richmond Hospital on October 17, 2024, revealed multiple nodules.",
"output": "Ultrasound of <name>'s thyroid gland, performed at <hospital> on <date>, revealed multiple nodules.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Ultrasound of <name>'s thyroid gland, performed at <hospital> on <date>, revealed multiple nodules.\nDe-identified: Ultrasound of <name>'s thyroid gland, performed at <hospital> on <date>, revealed multiple nodules."
},{
"input": "Michael Johnson (Patient ID: 542134) was seen at Silverlake Memorial Hospital for shortness of breath on August 9, 2021.",
"output": "<name> (Patient ID: <id>) was seen at <hospital> for shortness of breath on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name> (Patient ID: <id>) was seen at <hospital> for shortness of breath on <date>.\nDe-identified: <name> (Patient ID: <id>) was seen at <hospital> for shortness of breath on <date>."
},{
"input": "Patient Julie Anderson reported side effects from Celexa 40mg taken July 15, 2023, that included dizziness.",
"output": "Patient <name> reported side effects from Celexa 40mg taken <date> that included dizziness.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Patient <name> reported side effects from Celexa 40mg taken <date> that included dizziness.\nDe-identified: Patient <name> reported side effects from Celexa 40mg taken <date> that included dizziness."
},{
"input": "Dr. Graham Thomas, a dermatologist, diagnosed patient 498601, Nancy Wu, with eczema on May 26, 2022.",
"output": "Dr. <name>, a dermatologist, diagnosed patient <id>, <name>, with eczema on <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name>, a dermatologist, diagnosed patient <id>, <name>, with eczema on <date>.\nDe-identified: Dr. <name>, a dermatologist, diagnosed patient <id>, <name>, with eczema on <date>."
},{
"input": "Carol Thompson was tested for COVID-19 on June 22, 2023, at Central City Medical Center and had negative test results.",
"output": "<name> was tested for COVID-19 on <date> at <hospital> and had negative test results.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> was tested for COVID-19 on <date> at <hospital> and had negative test results.\nDe-identified: <name> was tested for COVID-19 on <date> at <hospital> and had negative test results."
},{
"input": "On June 27, 2023, at Kensington Clinic, Henry Martinez's blood test results revealed anemia.",
"output": "On <date>, at <hospital>, <name>'s blood test results revealed anemia.",
"extracted": [
"<date>",
"<hospital>",
"<name>"
],
"training": "Original: On <date>, at <hospital>, <name>'s blood test results revealed anemia.\nDe-identified: On <date>, at <hospital>, <name>'s blood test results revealed anemia."
},{
"input": "The X-ray machine at Lakeside Hospital malfunctioned on September 5, 2021, delaying the dental procedure for patient 782301, Olivia Wilson.",
"output": "The X-ray machine at <hospital> malfunctioned on <date>, delaying the dental procedure for patient <id>, <name>.",
"extracted": [
"<hospital>",
"<date>",
"<id>",
"<name>"
],
"training": "Original: The X-ray machine at <hospital> malfunctioned on <date>, delaying the dental procedure for patient <id>, <name>.\nDe-identified: The X-ray machine at <hospital> malfunctioned on <date>, delaying the dental procedure for patient <id>, <name>."
},{
"input": "Kevin Bailey had his appendix removed by Dr. Samuel Lee on March 5, 2023, at Valley Regional Medical Center.",
"output": "<name> had his appendix removed by Dr. <name> on <date>, at <hospital>.",
"extracted": [
"<name>",
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> had his appendix removed by Dr. <name> on <date>, at <hospital>.\nDe-identified: <name> had his appendix removed by Dr. <name> on <date>, at <hospital>."
},{
"input": "Tracy Stevens, Patient ID: 231940, was prescribed Tamoxifen 20mg on December 3, 2022, for breast cancer treatment.",
"output": "<name>, Patient ID: <id>, was prescribed Tamoxifen 20mg on <date>, for breast cancer treatment.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, Patient ID: <id>, was prescribed Tamoxifen 20mg on <date>, for breast cancer treatment.\nDe-identified: <name>, Patient ID: <id>, was prescribed Tamoxifen 20mg on <date>, for breast cancer treatment."
},{
"input": "Gregory White's ultrasound indicated kidney stone formation, performed on June 1, 2022, at East Manhattan Medical Center.",
"output": "<name>'s ultrasound indicated kidney stone formation, performed on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name>'s ultrasound indicated kidney stone formation, performed on <date>, at <hospital>.\nDe-identified: <name>'s ultrasound indicated kidney stone formation, performed on <date>, at <hospital>."
},{
"input": "On November 20, 2022, patient 861749, Amelia Rodriguez, received a Tetanus vaccine at Buckley Pediatrics Clinic.",
"output": "On <date>, patient <id>, <name>, received a Tetanus vaccine at <hospital>.",
"extracted": [
"<date>",
"<id>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, patient <id>, <name>, received a Tetanus vaccine at <hospital>.\nDe-identified: On <date>, patient <id>, <name>, received a Tetanus vaccine at <hospital>."
},{
"input": "Radiologist Dr. Williams reviewed the x-ray of Tom Harris taken on August 15, 2021, and detected a minor fracture.",
"output": "Radiologist Dr. <name> reviewed the x-ray of <name> taken on <date>, and detected a minor fracture.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Radiologist Dr. <name> reviewed the x-ray of <name> taken on <date>, and detected a minor fracture.\nDe-identified: Radiologist Dr. <name> reviewed the x-ray of <name> taken on <date>, and detected a minor fracture."
},{
"input": "Patient 942815, Cheryl Wright, underwent kidney transplant surgery at Hope Medical Center on October 20, 2023.",
"output": "Patient <id>, <name>, underwent kidney transplant surgery at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <id>, <name>, underwent kidney transplant surgery at <hospital> on <date>.\nDe-identified: Patient <id>, <name>, underwent kidney transplant surgery at <hospital> on <date>."
},{
"input": "Appointment scheduled for Emily Johnson on November 16, 2021, 10:00am, at Northtown Clinic.",
"output": "Appointment scheduled for <name> on <date>, 10:00am, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: Appointment scheduled for <name> on <date>, 10:00am, at <hospital>.\nDe-identified: Appointment scheduled for <name> on <date>, 10:00am, at <hospital>."
},{
"input": "Dr. Samantha Baker provided a prescription for 100mg Sertraline to treat Jack Parker's anxiety on July 5, 2021.",
"output": "Dr. <name> provided a prescription for 100mg Sertraline to treat <name>'s anxiety on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> provided a prescription for 100mg Sertraline to treat <name>'s anxiety on <date>.\nDe-identified: Dr. <name> provided a prescription for 100mg Sertraline to treat <name>'s anxiety on <date>."
},{
"input": "Brian Smith, patient ID: 987654, arrived at Sacred Heart Emergency Room with chest pain on September 1, 2022.",
"output": "<name>, patient ID: <id>, arrived at <hospital> Emergency Room with chest pain on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, patient ID: <id>, arrived at <hospital> Emergency Room with chest pain on <date>.\nDe-identified: <name>, patient ID: <id>, arrived at <hospital> Emergency Room with chest pain on <date>."
},{
"input": "Lucy Thompson, DOB: 05/01/1990, visited Dr. Max Martin for a flu shot at Eastside Clinic on August 25, 2023.",
"output": "<name>, DOB: <date>, visited Dr. <name> for a flu shot at <hospital> on <date>.",
"extracted": [
"<name>",
"<date>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, DOB: <date>, visited Dr. <name> for a flu shot at <hospital> on <date>.\nDe-identified: <name>, DOB: <date>, visited Dr. <name> for a flu shot at <hospital> on <date>."
},{
"input": "An echocardiogram showed signs of aortic stenosis for George Evans, patient 332157, on May 10, 2021.",
"output": "An echocardiogram showed signs of aortic stenosis for <name>, patient <id>, on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: An echocardiogram showed signs of aortic stenosis for <name>, patient <id>, on <date>.\nDe-identified: An echocardiogram showed signs of aortic stenosis for <name>, patient <id>, on <date>."
},{
"input": "Janice Roberts suffered from a stroke and was taken to West Mountain Hospital on June 18, 2021.",
"output": "<name> suffered from a stroke and was taken to <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> suffered from a stroke and was taken to <hospital> on <date>.\nDe-identified: <name> suffered from a stroke and was taken to <hospital> on <date>."
},{
"input": "Dr. Yasin Patel discussed dietary changes for hypertension with patient Allison Clark on April 28, 2021.",
"output": "Dr. <name> discussed dietary changes for hypertension with patient <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> discussed dietary changes for hypertension with patient <name> on <date>.\nDe-identified: Dr. <name> discussed dietary changes for hypertension with patient <name> on <date>."
},{
"input": "Susan Johnson, DOB: 09/18/1956, was diagnosed with chronic obstructive pulmonary disease (COPD) on January 8, 2020.",
"output": "<name>, DOB: <date>, was diagnosed with chronic obstructive pulmonary disease (COPD) on <date>.",
"extracted": [
"<name>",
"<date>",
"<date>"
],
"training": "Original: <name>, DOB: <date>, was diagnosed with chronic obstructive pulmonary disease (COPD) on <date>.\nDe-identified: <name>, DOB: <date>, was diagnosed with chronic obstructive pulmonary disease (COPD) on <date>."
},{
"input": "Evelyn Johnson underwent a kidney transplant on November 14, 2021, at Memorial Hospital.",
"output": "<name> underwent a kidney transplant on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> underwent a kidney transplant on <date>, at <hospital>.\nDe-identified: <name> underwent a kidney transplant on <date>, at <hospital>."
},{
"input": "DR. Theresa Richards was consulted to assess Sophie Matthews' respiratory distress on September 29, 2020.",
"output": "DR. <name> was consulted to assess <name>'s respiratory distress on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: DR. <name> was consulted to assess <name>'s respiratory distress on <date>.\nDe-identified: DR. <name> was consulted to assess <name>'s respiratory distress on <date>."
},{
"input": "Patient Omar Garcia - ID 5678910, Appendicitis surgery on October 19, 2022.",
"output": "Patient <name> - ID <id>, Appendicitis surgery on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Patient <name> - ID <id>, Appendicitis surgery on <date>.\nDe-identified: Patient <name> - ID <id>, Appendicitis surgery on <date>."
},{
"input": "Sara Lee had a bone density scan revealing osteoporosis on February 5, 2023.",
"output": "<name> had a bone density scan revealing osteoporosis on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name> had a bone density scan revealing osteoporosis on <date>.\nDe-identified: <name> had a bone density scan revealing osteoporosis on <date>."
},{
"input": "X-ray of Michael Bennett's left wrist indicated a fracture on June 23, 2021, at Central General Hospital.",
"output": "X-ray of <name>'s left wrist indicated a fracture on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: X-ray of <name>'s left wrist indicated a fracture on <date>, at <hospital>.\nDe-identified: X-ray of <name>'s left wrist indicated a fracture on <date>, at <hospital>."
},{
"input": "Ray Wilson's prostatectomy was performed by Dr. Susan Clark on April 20, 2022.",
"output": "<name>'s prostatectomy was performed by Dr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name>'s prostatectomy was performed by Dr. <name> on <date>.\nDe-identified: <name>'s prostatectomy was performed by Dr. <name> on <date>."
},{
"input": "Tumor excision for patient Alice Mitchell took place at the Cedars-Sinai Medical Center on August 29, 2019.",
"output": "Tumor excision for patient <name> took place at the <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Tumor excision for patient <name> took place at the <hospital> on <date>.\nDe-identified: Tumor excision for patient <name> took place at the <hospital> on <date>."
},{
"input": "Karen Diaz, Systemic Lupus Erythematosus (SLE), DOB: September 1, 1980, Patient ID: 998356.",
"output": "<name>, Systemic Lupus Erythematosus (SLE), DOB: <date>, Patient ID: <id>.",
"extracted": [
"<name>",
"<date>",
"<id>"
],
"training": "Original: <name>, Systemic Lupus Erythematosus (SLE), DOB: <date>, Patient ID: <id>.\nDe-identified: <name>, Systemic Lupus Erythematosus (SLE), DOB: <date>, Patient ID: <id>."
},{
"input": "Blood sample for Joseph Russell, Patient ID: 6573810, Hemoglobin: 12 g/dL, taken on September 7, 2022.",
"output": "Blood sample for <name>, Patient ID: <id>, Hemoglobin: 12 g/dL, taken on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Blood sample for <name>, Patient ID: <id>, Hemoglobin: 12 g/dL, taken on <date>.\nDe-identified: Blood sample for <name>, Patient ID: <id>, Hemoglobin: 12 g/dL, taken on <date>."
},{
"input": "Pediatric patient Kevin Patterson diagnosed with Crohn's disease at Angel's Children Hospital on January 18, 2021.",
"output": "Pediatric patient <name> diagnosed with Crohn's disease at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Pediatric patient <name> diagnosed with Crohn's disease at <hospital> on <date>.\nDe-identified: Pediatric patient <name> diagnosed with Crohn's disease at <hospital> on <date>."
},{
"input": "Patient ID: 954739, Clara Johnson, visited Dr. Harris at Mercy General on July 14, 2022, for an annual checkup.",
"output": "Patient ID: <id>, <name>, visited Dr. <name> at <hospital> on <date>, for an annual checkup.",
"extracted": [
"<id>",
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, visited Dr. <name> at <hospital> on <date>, for an annual checkup.\nDe-identified: Patient ID: <id>, <name>, visited Dr. <name> at <hospital> on <date>, for an annual checkup."
},{
"input": "Elizabeth Taylor had a flu vaccine administered at Lakeside Hospital on October 25, 2021.",
"output": "<name> had a flu vaccine administered at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had a flu vaccine administered at <hospital> on <date>.\nDe-identified: <name> had a flu vaccine administered at <hospital> on <date>."
},{
"input": "Susan's mammogram report from January 30, 2021, showed no signs of breast cancer.",
"output": "<name>'s mammogram report from <date> showed no signs of breast cancer.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s mammogram report from <date> showed no signs of breast cancer.\nDe-identified: <name>'s mammogram report from <date> showed no signs of breast cancer."
},{
"input": "Dr. Emma Johnson removed patient Michael Scott's gallbladder in a surgery at Jackson Clinic on April 15, 2023.",
"output": "Dr. <name> removed patient <name>'s gallbladder in a surgery at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Dr. <name> removed patient <name>'s gallbladder in a surgery at <hospital> on <date>.\nDe-identified: Dr. <name> removed patient <name>'s gallbladder in a surgery at <hospital> on <date>."
},{
"input": "Trevor Baker, PID 094253, experienced a seizure on November 15, 2022, and was referred to a neurologist.",
"output": "<name>, PID <id>, experienced a seizure on <date> and was referred to a neurologist.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, PID <id>, experienced a seizure on <date> and was referred to a neurologist.\nDe-identified: <name>, PID <id>, experienced a seizure on <date> and was referred to a neurologist."
},{
"input": "The physical therapy report of Karen White from Hillside Rehab on August 22, 2022, shows improvement in mobility.",
"output": "The physical therapy report of <name> from <hospital> on <date> shows improvement in mobility.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: The physical therapy report of <name> from <hospital> on <date> shows improvement in mobility.\nDe-identified: The physical therapy report of <name> from <hospital> on <date> shows improvement in mobility."
},{
"input": "Medical history for patient 902740: Victoria Smith, Hypertension, COPD, Type 2 Diabetes, recorded on May 3, 2023.",
"output": "Medical history for patient <id>: <name>, Hypertension, COPD, Type 2 Diabetes, recorded on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Medical history for patient <id>: <name>, Hypertension, COPD, Type 2 Diabetes, recorded on <date>.\nDe-identified: Medical history for patient <id>: <name>, Hypertension, COPD, Type 2 Diabetes, recorded on <date>."
},{
"input": "Ricky Johnson visited Oceanview Hospital on September 12, 2021, due to a severe headache.",
"output": "<name> visited <hospital> on <date>, due to a severe headache.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> visited <hospital> on <date>, due to a severe headache.\nDe-identified: <name> visited <hospital> on <date>, due to a severe headache."
},{
"input": "Laboratory report for Alice Robinson: CBC: February 13, 2022, Hemoglobin: 12.3 g/dL, Platelets: 230 x10^9/L.",
"output": "Laboratory report for <name>: CBC: <date>, Hemoglobin: 12.3 g/dL, Platelets: 230 x10^9/L.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Laboratory report for <name>: CBC: <date>, Hemoglobin: 12.3 g/dL, Platelets: 230 x10^9/L.\nDe-identified: Laboratory report for <name>: CBC: <date>, Hemoglobin: 12.3 g/dL, Platelets: 230 x10^9/L."
},{
"input": "Jeremy Brown fractured his tibia in a sports accident on June 30, 2023, and was treated by Dr. Clark at Boston Medical Center.",
"output": "<name> fractured his tibia in a sports accident on <date> and was treated by Dr. <name> at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: <name> fractured his tibia in a sports accident on <date> and was treated by Dr. <name> at <hospital>.\nDe-identified: <name> fractured his tibia in a sports accident on <date> and was treated by Dr. <name> at <hospital>."
},{
"input": "Patient ID: 456987, Julia Williams, admitted to Sacred Heart Hospital on July 11, 2022, due to chest pain.",
"output": "Patient ID: <id>, <name>, admitted to <hospital> on <date>, due to chest pain.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, admitted to <hospital> on <date>, due to chest pain.\nDe-identified: Patient ID: <id>, <name>, admitted to <hospital> on <date>, due to chest pain."
},{
"input": "Thomas Parker's kidney function test results were abnormal on August 29, 2022.",
"output": "<name>'s kidney function test results were abnormal on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s kidney function test results were abnormal on <date>.\nDe-identified: <name>'s kidney function test results were abnormal on <date>."
},{
"input": "Emily Wilson visited Dr. Karen Johnson for a routine physical examination on November 1, 2023.",
"output": "<name> visited Dr. <name> for a routine physical examination on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name> visited Dr. <name> for a routine physical examination on <date>.\nDe-identified: <name> visited Dr. <name> for a routine physical examination on <date>."
},{
"input": "Jacob White had a surgical consult at Providence Medical Center for his upcoming knee surgery on October 17, 2022.",
"output": "<name> had a surgical consult at <hospital> for his upcoming knee surgery on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had a surgical consult at <hospital> for his upcoming knee surgery on <date>.\nDe-identified: <name> had a surgical consult at <hospital> for his upcoming knee surgery on <date>."
},{
"input": "Emma Howard, ID: 301852, prescribed 10mg Lexapro for anxiety by Dr. Kelly Thompson on May 16, 2022.",
"output": "<name>, ID: <id>, prescribed 10mg Lexapro for anxiety by Dr. <name> on <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: <name>, ID: <id>, prescribed 10mg Lexapro for anxiety by Dr. <name> on <date>.\nDe-identified: <name>, ID: <id>, prescribed 10mg Lexapro for anxiety by Dr. <name> on <date>."
},{
"input": "Michael Pitts underwent a CT scan revealing an enlarged lymph node on March 3, 2023, at Boston General Hospital.",
"output": "<name> underwent a CT scan revealing an enlarged lymph node on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name> underwent a CT scan revealing an enlarged lymph node on <date>, at <hospital>.\nDe-identified: <name> underwent a CT scan revealing an enlarged lymph node on <date>, at <hospital>."
},{
"input": "Samantha Lewis received a flu vaccine on September 1, 2022, from registered nurse Jessica Clark.",
"output": "<name> received a flu vaccine on <date>, from registered nurse <name>.",
"extracted": [
"<name>",
"<date>",
"<name>"
],
"training": "Original: <name> received a flu vaccine on <date>, from registered nurse <name>.\nDe-identified: <name> received a flu vaccine on <date>, from registered nurse <name>."
},{
"input": "Olivia Johnson's blood test results indicated anemia on November 21, 2022; follow-up appointment is scheduled in one week.",
"output": "<name>'s blood test results indicated anemia on <date>; follow-up appointment is scheduled in one week.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s blood test results indicated anemia on <date>; follow-up appointment is scheduled in one week.\nDe-identified: <name>'s blood test results indicated anemia on <date>; follow-up appointment is scheduled in one week."
},{
"input": "Lucas Roberts had an x-ray of his broken left arm taken at Lakeside Community Hospital on January 2, 2023.",
"output": "<name> had an x-ray of his broken left arm taken at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had an x-ray of his broken left arm taken at <hospital> on <date>.\nDe-identified: <name> had an x-ray of his broken left arm taken at <hospital> on <date>."
},{
"input": "Dr. Steven Baker performed a successful appendectomy on patient 957392, Nicholas Harding, on July 25, 2022.",
"output": "Dr. <name> performed a successful appendectomy on patient <id>, <name>, on <date>.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> performed a successful appendectomy on patient <id>, <name>, on <date>.\nDe-identified: Dr. <name> performed a successful appendectomy on patient <id>, <name>, on <date>."
},{
"input": "Susan Doyle received a prescription for 100mg of Zoloft for anxiety on August 4, 2021, from Dr. Emily Harris.",
"output": "<name> received a prescription for 100mg of Zoloft for anxiety on <date>, from Dr. <name>.",
"extracted": [
"<name>",
"<date>",
"<name>"
],
"training": "Original: <name> received a prescription for 100mg of Zoloft for anxiety on <date>, from Dr. <name>.\nDe-identified: <name> received a prescription for 100mg of Zoloft for anxiety on <date>, from Dr. <name>."
},{
"input": "Jacob Patterson, born on October 8, 1989, visited the Unity Medical Center emergency room for abdominal pain on June 15, 2023.",
"output": "<name>, born on <date>, visited the <hospital> emergency room for abdominal pain on <date>.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, born on <date>, visited the <hospital> emergency room for abdominal pain on <date>.\nDe-identified: <name>, born on <date>, visited the <hospital> emergency room for abdominal pain on <date>."
},{
"input": "Patient ID: 566974, Julie Nguyen, had a mammogram on September 9, 2022, which revealed a suspicious mass.",
"output": "Patient ID: <id>, <name>, had a mammogram on <date>, which revealed a suspicious mass.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, had a mammogram on <date>, which revealed a suspicious mass.\nDe-identified: Patient ID: <id>, <name>, had a mammogram on <date>, which revealed a suspicious mass."
},{
"input": "Kevin Wang's last check-up at Mountain View Clinic was on January 18, 2023, and his blood glucose level was 85 mg/dL.",
"output": "<name>'s last check-up at <hospital> was on <date>, and his blood glucose level was 85 mg/dL.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s last check-up at <hospital> was on <date>, and his blood glucose level was 85 mg/dL.\nDe-identified: <name>'s last check-up at <hospital> was on <date>, and his blood glucose level was 85 mg/dL."
},{
"input": "George Turner, MRN 972123, had a colonoscopy at Ocean Medical Center on November 6, 2022, and no polyps were found.",
"output": "<name>, MRN <id>, had a colonoscopy at <hospital> on <date>, and no polyps were found.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, MRN <id>, had a colonoscopy at <hospital> on <date>, and no polyps were found.\nDe-identified: <name>, MRN <id>, had a colonoscopy at <hospital> on <date>, and no polyps were found."
},{
"input": "Grace Lee's family history of breast cancer prompted Dr. Wilson to advise annual mammograms starting from August 24, 2022.",
"output": "<name>'s family history of breast cancer prompted Dr. <name> to advise annual mammograms starting from <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name>'s family history of breast cancer prompted Dr. <name> to advise annual mammograms starting from <date>.\nDe-identified: <name>'s family history of breast cancer prompted Dr. <name> to advise annual mammograms starting from <date>."
},{
"input": "The biopsy result for Emma Stone (patient 754123) confirmed the presence of melanoma on December 14, 2020.",
"output": "The biopsy result for <name> (patient <id>) confirmed the presence of melanoma on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: The biopsy result for <name> (patient <id>) confirmed the presence of melanoma on <date>.\nDe-identified: The biopsy result for <name> (patient <id>) confirmed the presence of melanoma on <date>."
},{
"input": "Jacob Wilson underwent a laparoscopic appendectomy at Riverdale General Hospital on April 20, 2021.",
"output": "<name> underwent a laparoscopic appendectomy at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> underwent a laparoscopic appendectomy at <hospital> on <date>.\nDe-identified: <name> underwent a laparoscopic appendectomy at <hospital> on <date>."
},{
"input": "Laura Sanders, with SSN 123-45-6789, started treatment for rheumatoid arthritis on September 5, 2020.",
"output": "<name>, with SSN <id>, started treatment for rheumatoid arthritis on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, with SSN <id>, started treatment for rheumatoid arthritis on <date>.\nDe-identified: <name>, with SSN <id>, started treatment for rheumatoid arthritis on <date>."
},{
"input": "Samuel Young (patient no. 342905) had a consultation at Westlake Clinic regarding his chronic back pain on August 19, 2021.",
"output": "<name> (patient no. <id>) had a consultation at <hospital> regarding his chronic back pain on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name> (patient no. <id>) had a consultation at <hospital> regarding his chronic back pain on <date>.\nDe-identified: <name> (patient no. <id>) had a consultation at <hospital> regarding his chronic back pain on <date>."
},{
"input": "Susan Johnson had emergency surgery for appendicitis at Valley Medical Center on August 15, 2023.",
"output": "<name> had emergency surgery for appendicitis at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had emergency surgery for appendicitis at <hospital> on <date>.\nDe-identified: <name> had emergency surgery for appendicitis at <hospital> on <date>."
},{
"input": "Patient Claire Wilson's CT scan indicated a brain tumor conducted at Mercy Hospital on September 1, 2023.",
"output": "Patient <name>'s CT scan indicated a brain tumor conducted at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <name>'s CT scan indicated a brain tumor conducted at <hospital> on <date>.\nDe-identified: Patient <name>'s CT scan indicated a brain tumor conducted at <hospital> on <date>."
},{
"input": "ID 782156, James Oliver, had a consultation with Dr. Karen Martinez for hypertension issues on July 6, 2023.",
"output": "ID <id>, <name>, had a consultation with Dr. <name> for hypertension issues on <date>.",
"extracted": [
"<id>",
"<name>",
"<name>",
"<date>"
],
"training": "Original: ID <id>, <name>, had a consultation with Dr. <name> for hypertension issues on <date>.\nDe-identified: ID <id>, <name>, had a consultation with Dr. <name> for hypertension issues on <date>."
},{
"input": "On December 3, 2022, patient Kevin Wilson had a heart rate of 110 BPM at Parkview General Hospital.",
"output": "On <date>, patient <name> had a heart rate of 110 BPM at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, patient <name> had a heart rate of 110 BPM at <hospital>.\nDe-identified: On <date>, patient <name> had a heart rate of 110 BPM at <hospital>."
},{
"input": "Emily Brown, ID 645126, received a diabetes Type 2 diagnosis during her April 15, 2023 check-up.",
"output": "<name>, ID <id>, received a diabetes Type 2 diagnosis during her <date> check-up.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, ID <id>, received a diabetes Type 2 diagnosis during her <date> check-up.\nDe-identified: <name>, ID <id>, received a diabetes Type 2 diagnosis during her <date> check-up."
},{
"input": "The surgery, performed by Dr. Brian Hunter, on patient Alex Thompson occurred on October 5, 2023 at St. Luke's Hospital.",
"output": "The surgery, performed by Dr. <name>, on patient <name> occurred on <date> at <hospital>.",
"extracted": [
"<name>",
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: The surgery, performed by Dr. <name>, on patient <name> occurred on <date> at <hospital>.\nDe-identified: The surgery, performed by Dr. <name>, on patient <name> occurred on <date> at <hospital>."
},{
"input": "ID 983426, Tara Davis, reported symptoms of shortness of breath and fatigue during the January 30, 2023 check-up.",
"output": "ID <id>, <name>, reported symptoms of shortness of breath and fatigue during the <date> check-up.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: ID <id>, <name>, reported symptoms of shortness of breath and fatigue during the <date> check-up.\nDe-identified: ID <id>, <name>, reported symptoms of shortness of breath and fatigue during the <date> check-up."
},{
"input": "Patient ID 784532 underwent a mammogram at Central Medical Clinic on November 16, 2023, revealing a benign cyst.",
"output": "Patient ID <id> underwent a mammogram at <hospital> on <date>, revealing a benign cyst.",
"extracted": [
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID <id> underwent a mammogram at <hospital> on <date>, revealing a benign cyst.\nDe-identified: Patient ID <id> underwent a mammogram at <hospital> on <date>, revealing a benign cyst."
},{
"input": "Leon Washington, DOB October 20, 1963, diagnosed with Parkinson's disease on February 19, 2023 at Royal Clinic.",
"output": "<name>, DOB <date>, diagnosed with Parkinson's disease on <date> at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<date>",
"<hospital>"
],
"training": "Original: <name>, DOB <date>, diagnosed with Parkinson's disease on <date> at <hospital>.\nDe-identified: <name>, DOB <date>, diagnosed with Parkinson's disease on <date> at <hospital>."
},{
"input": "St. George's Hospital admitted patient 258734, Karen Smith, experiencing severe chest pain on September 21, 2023.",
"output": "<hospital> admitted patient <id>, <name>, experiencing severe chest pain on <date>.",
"extracted": [
"<hospital>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: <hospital> admitted patient <id>, <name>, experiencing severe chest pain on <date>.\nDe-identified: <hospital> admitted patient <id>, <name>, experiencing severe chest pain on <date>."
},{
"input": "Sharon Johnson checked in at Mercy Medical Center on July 11, 2024 due to shortness of breath.",
"output": "<name> checked in at <hospital> on <date> due to shortness of breath.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> checked in at <hospital> on <date> due to shortness of breath.\nDe-identified: <name> checked in at <hospital> on <date> due to shortness of breath."
},{
"input": "Medical record for Susan Wilson, patient ID 654982, shows severe asthma on August 15, 2024.",
"output": "Medical record for <name>, patient ID <id>, shows severe asthma on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Medical record for <name>, patient ID <id>, shows severe asthma on <date>.\nDe-identified: Medical record for <name>, patient ID <id>, shows severe asthma on <date>."
},{
"input": "Dr. Ricardo Gonzalez delivered a baby girl for the couple, Claire and Mike Lewis, on September 29, 2024.",
"output": "Dr. <name> delivered a baby girl for the couple, <name> and <name> <name>, on <date>.",
"extracted": [
"<name>",
"<name>",
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> delivered a baby girl for the couple, <name> and <name> <name>, on <date>.\nDe-identified: Dr. <name> delivered a baby girl for the couple, <name> and <name> <name>, on <date>."
},{
"input": "Nurse Quentin Archer administered an IV injection of saline solution for Keith Moore on August 20, 2024.",
"output": "Nurse <name> administered an IV injection of saline solution for <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Nurse <name> administered an IV injection of saline solution for <name> on <date>.\nDe-identified: Nurse <name> administered an IV injection of saline solution for <name> on <date>."
},{
"input": "The patient, William McConnell, will undergo a liver transplant surgery at Pacific General Hospital on November 2, 2024.",
"output": "The patient, <name>, will undergo a liver transplant surgery at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: The patient, <name>, will undergo a liver transplant surgery at <hospital> on <date>.\nDe-identified: The patient, <name>, will undergo a liver transplant surgery at <hospital> on <date>."
},{
"input": "Child patient Donna Reynolds, aged 8, was diagnosed with a UTI on January 30, 2025.",
"output": "Child patient <name>, aged 8, was diagnosed with a UTI on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Child patient <name>, aged 8, was diagnosed with a UTI on <date>.\nDe-identified: Child patient <name>, aged 8, was diagnosed with a UTI on <date>."
},{
"input": "Mr. James Steward's physical examination to gain clearance for his new job occurred on February 20, 2025.",
"output": "Mr. <name>'s physical examination to gain clearance for his new job occurred on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Mr. <name>'s physical examination to gain clearance for his new job occurred on <date>.\nDe-identified: Mr. <name>'s physical examination to gain clearance for his new job occurred on <date>."
},{
"input": "Kelley Johnson and her husband, Sam Johnson, attended their prenatal appointment at Silver Lake Clinic on March 5, 2025.",
"output": "<name> and her husband, <name> <name>, attended their prenatal appointment at <hospital> on <date>.",
"extracted": [
"<name>",
"<name>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> and her husband, <name> <name>, attended their prenatal appointment at <hospital> on <date>.\nDe-identified: <name> and her husband, <name> <name>, attended their prenatal appointment at <hospital> on <date>."
},{
"input": "A chest X-ray for patient 654321, Lisa Hernandez, showed bronchitis on April 21, 2025.",
"output": "A chest X-ray for patient <id>, <name>, showed bronchitis on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: A chest X-ray for patient <id>, <name>, showed bronchitis on <date>.\nDe-identified: A chest X-ray for patient <id>, <name>, showed bronchitis on <date>."
},{
"input": "Joanna Freeman visited her doctor at Lakeview Hospital on May 6, 2025, experiencing persistent headaches.",
"output": "<name> visited her doctor at <hospital> on <date>, experiencing persistent headaches.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> visited her doctor at <hospital> on <date>, experiencing persistent headaches.\nDe-identified: <name> visited her doctor at <hospital> on <date>, experiencing persistent headaches."
},{
"input": "Patient ID: 45572, Nancy Lopez visited the Green Valley Clinic on July 18, 2021.",
"output": "Patient ID: <id>, <name> visited the <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name> visited the <hospital> on <date>.\nDe-identified: Patient ID: <id>, <name> visited the <hospital> on <date>."
},{
"input": "Christopher Wilson, Referral from Dr. Karen Brown, visit date: August 16, 2022.",
"output": "<name>, Referral from Dr. <name>, visit date: <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name>, Referral from Dr. <name>, visit date: <date>.\nDe-identified: <name>, Referral from Dr. <name>, visit date: <date>."
},{
"input": "An ultrasound performed on Rachel Lee at Starlight Hospital on August 5, 2021, revealed gallstones.",
"output": "An ultrasound performed on <name> at <hospital> on <date>, revealed gallstones.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: An ultrasound performed on <name> at <hospital> on <date>, revealed gallstones.\nDe-identified: An ultrasound performed on <name> at <hospital> on <date>, revealed gallstones."
},{
"input": "Patient Emily Stone, age 45, was hospitalized at Western Memorial Hospital from October 6 to October 13, 2022.",
"output": "Patient <name>, age 45, was hospitalized at <hospital> from <date> to <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>",
"<date>"
],
"training": "Original: Patient <name>, age 45, was hospitalized at <hospital> from <date> to <date>.\nDe-identified: Patient <name>, age 45, was hospitalized at <hospital> from <date> to <date>."
},{
"input": "Prescriptions: Amoxicillin 500 mg, patient: Heather James, diagnosis: strep throat, prescribed on: July 4, 2022.",
"output": "Prescriptions: Amoxicillin 500 mg, patient: <name>, diagnosis: strep throat, prescribed on: <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: Prescriptions: Amoxicillin 500 mg, patient: <name>, diagnosis: strep throat, prescribed on: <date>.\nDe-identified: Prescriptions: Amoxicillin 500 mg, patient: <name>, diagnosis: strep throat, prescribed on: <date>."
},{
"input": "X-ray report for ID 23984, Brian Taylor, showed a healing fracture, performed on February 6, 2021.",
"output": "X-ray report for ID <id>, <name>, showed a healing fracture, performed on <date>.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: X-ray report for ID <id>, <name>, showed a healing fracture, performed on <date>.\nDe-identified: X-ray report for ID <id>, <name>, showed a healing fracture, performed on <date>."
},{
"input": "Patient 594735, Jennifer Adams, had a colonoscopy at Oakwood Medical Center on January 5, 2023.",
"output": "Patient <id>, <name>, had a colonoscopy at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <id>, <name>, had a colonoscopy at <hospital> on <date>.\nDe-identified: Patient <id>, <name>, had a colonoscopy at <hospital> on <date>."
},{
"input": "At her appointment on March 3, 2023, Susan Clark's glucose level was measured at 180 mg/dL.",
"output": "At her appointment on <date>, <name>'s glucose level was measured at 180 mg/dL.",
"extracted": [
"<date>",
"<name>"
],
"training": "Original: At her appointment on <date>, <name>'s glucose level was measured at 180 mg/dL.\nDe-identified: At her appointment on <date>, <name>'s glucose level was measured at 180 mg/dL."
},{
"input": "Michael Thompson had a physical examination at Central City Health Clinic on February 20, 2023. Doctor: Dr. Olivia Johnson.",
"output": "<name> had a physical examination at <hospital> on <date>. Doctor: Dr. <name>.",
"extracted": [
"<name>",
"<hospital>",
"<date>",
"<name>"
],
"training": "Original: <name> had a physical examination at <hospital> on <date>. Doctor: Dr. <name>.\nDe-identified: <name> had a physical examination at <hospital> on <date>. Doctor: Dr. <name>."
},{
"input": "Immunization record for Robert Mitchell, MMR vaccine received on June 10, 2021, at Bridgeway Clinic.",
"output": "Immunization record for <name>, MMR vaccine received on <date>, at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: Immunization record for <name>, MMR vaccine received on <date>, at <hospital>.\nDe-identified: Immunization record for <name>, MMR vaccine received on <date>, at <hospital>."
},{
"input": "Dr. Jennifer Taylor conducted a bronchoscopy on September 9, 2022 for patient 454893, Samantha Lee.",
"output": "Dr. <name> conducted a bronchoscopy on <date> for patient <id>, <name>.",
"extracted": [
"<name>",
"<date>",
"<id>",
"<name>"
],
"training": "Original: Dr. <name> conducted a bronchoscopy on <date> for patient <id>, <name>.\nDe-identified: Dr. <name> conducted a bronchoscopy on <date> for patient <id>, <name>."
},{
"input": "Michael Kenworthy was admitted to Sunshine Healthcare Facility on August 20, 2021 with suspected pneumonia.",
"output": "<name> was admitted to <hospital> on <date> with suspected pneumonia.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> was admitted to <hospital> on <date> with suspected pneumonia.\nDe-identified: <name> was admitted to <hospital> on <date> with suspected pneumonia."
},{
"input": "Claire Robinson underwent MRI brain scan at Riverside Hospital on July 4, 2022, and results indicated a benign tumor.",
"output": "<name> underwent MRI brain scan at <hospital> on <date>, and results indicated a benign tumor.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> underwent MRI brain scan at <hospital> on <date>, and results indicated a benign tumor.\nDe-identified: <name> underwent MRI brain scan at <hospital> on <date>, and results indicated a benign tumor."
},{
"input": "Patient 575840, David Hernandez, reported severe headaches at his November 13, 2022 follow-up appointment.",
"output": "Patient <id>, <name>, reported severe headaches at his <date> follow-up appointment.",
"extracted": [
"<id>",
"<name>",
"<date>"
],
"training": "Original: Patient <id>, <name>, reported severe headaches at his <date> follow-up appointment.\nDe-identified: Patient <id>, <name>, reported severe headaches at his <date> follow-up appointment."
},{
"input": "Martha Stewart's TSH levels were recorded at 3.8 on her lab test taken on May 23, 2022.",
"output": "<name>'s TSH levels were recorded at 3.8 on her lab test taken on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>'s TSH levels were recorded at 3.8 on her lab test taken on <date>.\nDe-identified: <name>'s TSH levels were recorded at 3.8 on her lab test taken on <date>."
},{
"input": "Thoracic surgeon Dr. Kim Anderson performed a successful lobectomy on patient Lisa Mitchell on October 14, 2022.",
"output": "Thoracic surgeon Dr. <name> performed a successful lobectomy on patient <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Thoracic surgeon Dr. <name> performed a successful lobectomy on patient <name> on <date>.\nDe-identified: Thoracic surgeon Dr. <name> performed a successful lobectomy on patient <name> on <date>."
},{
"input": "Aaron Johnson received a kidney transplant at Hartford Medical Center on February 1, 2023.",
"output": "<name> received a kidney transplant at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> received a kidney transplant at <hospital> on <date>.\nDe-identified: <name> received a kidney transplant at <hospital> on <date>."
},{
"input": "Alice Thompson, born on September 17, 1969, was prescribed 10mg Lisinopril for hypertension management.",
"output": "<name>, born on <date>, was prescribed 10mg Lisinopril for hypertension management.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: <name>, born on <date>, was prescribed 10mg Lisinopril for hypertension management.\nDe-identified: <name>, born on <date>, was prescribed 10mg Lisinopril for hypertension management."
},{
"input": "On December 1, 2025, patient 745201, Diana Foster, received a type 2 diabetes diagnosis by Dr. Laura Wilson.",
"output": "On <date>, patient <id>, <name>, received a type 2 diabetes diagnosis by Dr. <name>.",
"extracted": [
"<date>",
"<id>",
"<name>",
"<name>"
],
"training": "Original: On <date>, patient <id>, <name>, received a type 2 diabetes diagnosis by Dr. <name>.\nDe-identified: On <date>, patient <id>, <name>, received a type 2 diabetes diagnosis by Dr. <name>."
},{
"input": "In response to a rhinoplasty, Peter Jackson was prescribed 500mg amoxicillin on June 13, 2022.",
"output": "In response to a rhinoplasty, <name> was prescribed 500mg amoxicillin on <date>.",
"extracted": [
"<name>",
"<date>"
],
"training": "Original: In response to a rhinoplasty, <name> was prescribed 500mg amoxicillin on <date>.\nDe-identified: In response to a rhinoplasty, <name> was prescribed 500mg amoxicillin on <date>."
},{
"input": "Allergy test for patient Julie Peterson, ID: 875912, performed on September 25, 2022, found a peanut allergy.",
"output": "Allergy test for patient <name>, ID: <id>, performed on <date>, found a peanut allergy.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: Allergy test for patient <name>, ID: <id>, performed on <date>, found a peanut allergy.\nDe-identified: Allergy test for patient <name>, ID: <id>, performed on <date>, found a peanut allergy."
},{
"input": "Mr. Reynolds' follow-up appointment scheduled for August 5, 2022, at Los Angeles General Hospital.",
"output": "Mr. <name>'s follow-up appointment scheduled for <date> at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: Mr. <name>'s follow-up appointment scheduled for <date> at <hospital>.\nDe-identified: Mr. <name>'s follow-up appointment scheduled for <date> at <hospital>."
},{
"input": "X-ray for Helen Simpson's fractured wrist was completed on November 11, 2023, at Riverdale Medical Center.",
"output": "X-ray for <name>'s fractured wrist was completed on <date> at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: X-ray for <name>'s fractured wrist was completed on <date> at <hospital>.\nDe-identified: X-ray for <name>'s fractured wrist was completed on <date> at <hospital>."
},{
"input": "Susan Hill's weight loss program began at Sunshine Nutrition Clinic on May 20, 2023.",
"output": "<name>'s weight loss program began at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name>'s weight loss program began at <hospital> on <date>.\nDe-identified: <name>'s weight loss program began at <hospital> on <date>."
},{
"input": "Mrs. Cathy Adams underwent chemotherapy at Memorial Hospital, starting on October 2, 2022.",
"output": "Mrs. <name> underwent chemotherapy at <hospital>, starting on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Mrs. <name> underwent chemotherapy at <hospital>, starting on <date>.\nDe-identified: Mrs. <name> underwent chemotherapy at <hospital>, starting on <date>."
},{
"input": "Jacob Nelson, Patient-ID: 595393, visited Mount Sinai Medical Center for a routine check-up on July 15, 2023.",
"output": "<name>, Patient-ID: <id>, visited <hospital> for a routine check-up on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, Patient-ID: <id>, visited <hospital> for a routine check-up on <date>.\nDe-identified: <name>, Patient-ID: <id>, visited <hospital> for a routine check-up on <date>."
},{
"input": "Dr. Laura Anderson performed a biopsy on George Harris, testing positive for melanoma on February 15, 2022.",
"output": "Dr. <name> performed a biopsy on <name>, testing positive for melanoma on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> performed a biopsy on <name>, testing positive for melanoma on <date>.\nDe-identified: Dr. <name> performed a biopsy on <name>, testing positive for melanoma on <date>."
},{
"input": "Karen White, patient 287268, vaccination records indicate that her last flu shot was on December 1, 2022.",
"output": "<name>, patient <id>, vaccination records indicate that her last flu shot was on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, patient <id>, vaccination records indicate that her last flu shot was on <date>.\nDe-identified: <name>, patient <id>, vaccination records indicate that her last flu shot was on <date>."
},{
"input": "Peter Johnson attended physical therapy sessions from April 6, 2022, to June 13, 2022, at Westside Rehab Clinic.",
"output": "<name> attended physical therapy sessions from <date> to <date> at <hospital>.",
"extracted": [
"<name>",
"<date>",
"<date>",
"<hospital>"
],
"training": "Original: <name> attended physical therapy sessions from <date> to <date> at <hospital>.\nDe-identified: <name> attended physical therapy sessions from <date> to <date> at <hospital>."
},{
"input": "On March 4, 2023, Tom Jackson had an appendectomy at Washington Regional Medical Center.",
"output": "On <date>, <name> had an appendectomy at <hospital>.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name> had an appendectomy at <hospital>.\nDe-identified: On <date>, <name> had an appendectomy at <hospital>."
},{
"input": "Dr. Lisa Stevens referred Alice Williams, DOB: September 28, 1980, for a mammogram on August 1, 2021.",
"output": "Dr. <name> referred <name>, DOB: <date>, for a mammogram on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>",
"<date>"
],
"training": "Original: Dr. <name> referred <name>, DOB: <date>, for a mammogram on <date>.\nDe-identified: Dr. <name> referred <name>, DOB: <date>, for a mammogram on <date>."
},{
"input": "Esther Johnson underwent a colonoscopy at HealthWell Hospital on November 5, 2022.",
"output": "<name> underwent a colonoscopy at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> underwent a colonoscopy at <hospital> on <date>.\nDe-identified: <name> underwent a colonoscopy at <hospital> on <date>."
},{
"input": "Patient 739518, David Wilson, received a flu vaccine at General Clinic on October 4, 2023.",
"output": "Patient <id>, <name>, received a flu vaccine at <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient <id>, <name>, received a flu vaccine at <hospital> on <date>.\nDe-identified: Patient <id>, <name>, received a flu vaccine at <hospital> on <date>."
},{
"input": "Thomas Adams, Patient ID: 123-45-678, was prescribed Ciprofloxacin, 500 mg twice daily, for UTI on January 20, 2023.",
"output": "<name>, Patient ID: <id>, was prescribed Ciprofloxacin, 500 mg twice daily, for UTI on <date>.",
"extracted": [
"<name>",
"<id>",
"<date>"
],
"training": "Original: <name>, Patient ID: <id>, was prescribed Ciprofloxacin, 500 mg twice daily, for UTI on <date>.\nDe-identified: <name>, Patient ID: <id>, was prescribed Ciprofloxacin, 500 mg twice daily, for UTI on <date>."
},{
"input": "X-ray for Emily Jefferson at City Hospital, dated July 17, 2023, showed a broken arm.",
"output": "X-ray for <name> at <hospital>, dated <date>, showed a broken arm.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: X-ray for <name> at <hospital>, dated <date>, showed a broken arm.\nDe-identified: X-ray for <name> at <hospital>, dated <date>, showed a broken arm."
},{
"input": "On May 6, 2023, Dr. Anderson examined Jessica Martinez, revealing high blood sugar levels: 240 mg/dL.",
"output": "On <date>, Dr. <name> examined <name>, revealing high blood sugar levels: 240 mg/dL.",
"extracted": [
"<date>",
"<name>",
"<name>"
],
"training": "Original: On <date>, Dr. <name> examined <name>, revealing high blood sugar levels: 240 mg/dL.\nDe-identified: On <date>, Dr. <name> examined <name>, revealing high blood sugar levels: 240 mg/dL."
},{
"input": "Kevin Bradley was prescribed 20mg of Lisinopril for hypertension by Dr. James Clark on June 25, 2023.",
"output": "<name> was prescribed 20mg of Lisinopril for hypertension by Dr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name> was prescribed 20mg of Lisinopril for hypertension by Dr. <name> on <date>.\nDe-identified: <name> was prescribed 20mg of Lisinopril for hypertension by Dr. <name> on <date>."
},{
"input": "On February 13, 2022, Christopher Harris' liver function test at Greenfield Hospital showed elevated enzyme levels.",
"output": "On <date>, <name>'s liver function test at <hospital> showed elevated enzyme levels.",
"extracted": [
"<date>",
"<name>",
"<hospital>"
],
"training": "Original: On <date>, <name>'s liver function test at <hospital> showed elevated enzyme levels.\nDe-identified: On <date>, <name>'s liver function test at <hospital> showed elevated enzyme levels."
},{
"input": "Olivia Thompson's ultrasound performed on April 27, 2023, at Mountainview Hospital indicated gallstones.",
"output": "<name>'s ultrasound performed on <date>, at <hospital> indicated gallstones.",
"extracted": [
"<name>",
"<date>",
"<hospital>"
],
"training": "Original: <name>'s ultrasound performed on <date>, at <hospital> indicated gallstones.\nDe-identified: <name>'s ultrasound performed on <date>, at <hospital> indicated gallstones."
},{
"input": "Michael Jones had successful bypass surgery at Mercy Hospital on September 12, 2023.",
"output": "<name> had successful bypass surgery at <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> had successful bypass surgery at <hospital> on <date>.\nDe-identified: <name> had successful bypass surgery at <hospital> on <date>."
},{
"input": "Mr. James Lee, DOB: October 2nd, 1995, was admitted to Green Valley Medical Center on July 12, 2021, due to severe dehydration.",
"output": "Mr. <name>, DOB: <date>, was admitted to <hospital> on <date>, due to severe dehydration.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: Mr. <name>, DOB: <date>, was admitted to <hospital> on <date>, due to severe dehydration.\nDe-identified: Mr. <name>, DOB: <date>, was admitted to <hospital> on <date>, due to severe dehydration."
},{
"input": "Patient ID: 392002, Olivia Wilson, underwent a mammography at Sunshine Hospital on August 15, 2023, which showed no signs of breast cancer.",
"output": "Patient ID: <id>, <name>, underwent a mammography at <hospital> on <date>, which showed no signs of breast cancer.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, underwent a mammography at <hospital> on <date>, which showed no signs of breast cancer.\nDe-identified: Patient ID: <id>, <name>, underwent a mammography at <hospital> on <date>, which showed no signs of breast cancer."
},{
"input": "Dr. Emily Brown received the lab test results for glucose of patient 49383, Nathan Stewart, on September 20, 2022 and levels are within normal range.",
"output": "Dr. <name> received the lab test results for glucose of patient <id>, <name>, on <date> and levels are within normal range.",
"extracted": [
"<name>",
"<id>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> received the lab test results for glucose of patient <id>, <name>, on <date> and levels are within normal range.\nDe-identified: Dr. <name> received the lab test results for glucose of patient <id>, <name>, on <date> and levels are within normal range."
},{
"input": "Jack Williams, DOB: November 18, 1984, was successfully treated for Type 1 diabetes at Hope Medical Center starting from December 8, 2019.",
"output": "<name>, DOB: <date>, was successfully treated for Type 1 diabetes at <hospital> starting from <date>.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, DOB: <date>, was successfully treated for Type 1 diabetes at <hospital> starting from <date>.\nDe-identified: <name>, DOB: <date>, was successfully treated for Type 1 diabetes at <hospital> starting from <date>."
},{
"input": "Lily Evans presented symptoms of an asthma attack at the Red County Clinic on May 22, 2022.",
"output": "<name> presented symptoms of an asthma attack at the <hospital> on <date>.",
"extracted": [
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: <name> presented symptoms of an asthma attack at the <hospital> on <date>.\nDe-identified: <name> presented symptoms of an asthma attack at the <hospital> on <date>."
},{
"input": "Katie Johnson, patient ID: 384920, received 5 stitches to treat a deep cut on her arm at County Medical Center on June 5, 2023.",
"output": "<name>, patient ID: <id>, received 5 stitches to treat a deep cut on her arm at <hospital> on <date>.",
"extracted": [
"<name>",
"<id>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, patient ID: <id>, received 5 stitches to treat a deep cut on her arm at <hospital> on <date>.\nDe-identified: <name>, patient ID: <id>, received 5 stitches to treat a deep cut on her arm at <hospital> on <date>."
},{
"input": "Dr. George Wilson recommended hip replacement surgery to his patient, Helen Parker, during the consultation on February 11, 2021.",
"output": "Dr. <name> recommended hip replacement surgery to his patient, <name>, during the consultation on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: Dr. <name> recommended hip replacement surgery to his patient, <name>, during the consultation on <date>.\nDe-identified: Dr. <name> recommended hip replacement surgery to his patient, <name>, during the consultation on <date>."
},{
"input": "Thomas Grayson, DOB: July 7, 1963, attended physical therapy sessions at West Town Rehabilitation Clinic starting from February 25, 2022, post knee surgery.",
"output": "<name>, DOB: <date>, attended physical therapy sessions at <hospital> starting from <date>, post knee surgery.",
"extracted": [
"<name>",
"<date>",
"<hospital>",
"<date>"
],
"training": "Original: <name>, DOB: <date>, attended physical therapy sessions at <hospital> starting from <date>, post knee surgery.\nDe-identified: <name>, DOB: <date>, attended physical therapy sessions at <hospital> starting from <date>, post knee surgery."
},{
"input": "Patient ID: 550801, Elizabeth Bennett, suffered a traumatic injury during a car accident and was admitted to Riverside Hospital on July 31, 2021.",
"output": "Patient ID: <id>, <name>, suffered a traumatic injury during a car accident and was admitted to <hospital> on <date>.",
"extracted": [
"<id>",
"<name>",
"<hospital>",
"<date>"
],
"training": "Original: Patient ID: <id>, <name>, suffered a traumatic injury during a car accident and was admitted to <hospital> on <date>.\nDe-identified: Patient ID: <id>, <name>, suffered a traumatic injury during a car accident and was admitted to <hospital> on <date>."
},{
"input": "Nicholas Roberts was prescribed 100mg Sertraline daily for his anxiety disorder by Dr. Linda Martin on October 22, 2021.",
"output": "<name> was prescribed 100mg Sertraline daily for his anxiety disorder by Dr. <name> on <date>.",
"extracted": [
"<name>",
"<name>",
"<date>"
],
"training": "Original: <name> was prescribed 100mg Sertraline daily for his anxiety disorder by Dr. <name> on <date>.\nDe-identified: <name> was prescribed 100mg Sertraline daily for his anxiety disorder by Dr. <name> on <date>."
}
] |