File size: 289,612 Bytes
88da18c | 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 | {
"cells": [
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "view-in-github"
},
"source": [
"<a href=\"https://colab.research.google.com/github/bwbayu/TalentMatch/blob/development/model/praproses/data_jobcv_supervised.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "kD4VfQr4h0P1"
},
"outputs": [],
"source": [
"import pandas as pd"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "t3UVcbHDsi6U"
},
"source": [
"# DATASET RESUME 100"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 206
},
"id": "F5Og0ulylvhU",
"outputId": "ff37410f-bb93-44ea-a56a-6cb5b2806d1f"
},
"outputs": [
{
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"summary": "{\n \"name\": \"df_resume\",\n \"rows\": 166,\n \"fields\": [\n {\n \"column\": \"category\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 25,\n \"samples\": [\n \"Civil Engineer\",\n \"DevOps Engineer\",\n \"Data Science\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"clean_data\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 166,\n \"samples\": [\n \"key competency multi operation management\\u00e2 people management customer service email mi vendor client service management\\u00e2 cross functional coordination\\u00e2 banking financial services\\u00e2 transaction monitoring atm operation prepaid card operation pre issuance post issuance po operation job profile skill effective communicator excellent relationship building interpersonal skill strong analytical problem solving organizational ability extensive experience managing operation demonstrated leadership quality organisational skill tenure managing customer centric operation ensuring customer satisfaction achieving service quality norm analyzing operational problem customer complaint take preventive corrective action resolve receive respond key customer inquiry effective manner provide relevant timely information deft steering banking back end operation analyzing risk managing delinquency dexterity across applying technique maximizing recovery minimizing credit loss analyzed identified training need team member developing organizing conducting training program manage bottom quartile team improve performance preparing maintaining daily mi report evaluate performance efficiency process relate various vertical measuring performance process term efficiency effectiveness matrix ensuring adherence sla major activity define process field service monitored necessary check executed controlled also measured vendor sla analyzing tat vendor client sla provided u per company procedure handling ensuring vendor payment issue sorted payment processed quarterly basis appropriately plan execute skill operation accordance department policy procedure manage relationship business team software development team service achieve project objective different software worked till ctl prime axis bank credit card insight po machine technical operation amex mid tid generation atos venture infotek ticket management system tata communication private service ltd atm noc operation branch portal yalamanchili software export ltd prepaid card sbi bank zaggle prepaid ocean service ltd zaggle prepaid ocean service pvt ltd oct till date designation manager operation payment industry prepaid card inr education detail commerce mumbai mumbai university operation manager service manager operation payment industry prepaid card inr ftc skill detail operation experience seventy three month satisfaction experience forty eight month training experience twenty four month noc experience twenty three month point sale experience detail company zaggle prepaid ocean service pvt ltd description card operation company yalamanchili software export ltd description operation pvt ltd designation service manager operation payment industry prepaid card inr ftc key contribution result oriented business professional planning executing managing process improving efficiency operation team building detailing process information determine effective result operation ensuring pin generation sla maintained chargeback case raised perfect timeframe managing email customer service properly ensuring email replied properly also ensuring transaction monitoring properly managed assisting banker sbi associated bank bcp plan getting executed system help dr pr plan vice versa business requirement expertise maintaining highest level quality operation ensuring adherence quality parameter procedure per stringent norm lead manage supervise execution external audit engagement responsible presenting finding developing quality report senior management client coach mentor team member perform higher level giving opportunity providing timely continuous feedback working staff improve communication time management decision making organization analytical skill providing solution service client premise aforesaid count team member also ensuring end end process pr dr per client requirement pr dr dr pr interacting internal external stakeholder determining process gap designing conducting training program enhance operational efficiency retain talent providing optimum opportunity personal professional growth company credit card description ensured highest standard customer satisfaction quality service developing new policy procedure improve based customer feedback resolving customer query via correspondence inbound call email channel strength team member company ag transact technology limited description key contribution lead spoc bank company tata communication payment solution ltd description make atm operational within tat analyzing issue technical non technical also interacting internal external stakeholder company vertex customer solution india private ltd description key contribution build positive working relationship team member client keeping management informed kyc document collection con current audit progress responding timely management inquiry understanding business conducting self professionally company financial inclusion network operation limited description key contribution po operation cascading adherence process strictly followed team member training reduce downtime managing stock edc terminal managing deployment terminal multiple team would worked multiple terminal make model managing inward outward qc application installed po machine company venture infotek private ltd description key contribution po operation company axis bank ltd customer service description foi smart designation team leader executive email phone banking correspondence unit snail mail\",\n \"skill set hadoop map reduce hdfs hive sqoop java duration role hadoop developer rplus offer quick simple powerful cloud based solution demand sense accurately predict demand product market combine enterprise external data predict demand accurately us social conversation sentiment derive demand identifies significant driver sale horde factor selects best suited model multiple forecasting model product responsibility involved deploying product customer gathering requirement algorithm optimization backend product load transform large datasets structured semi structured responsible manage data coming different source application supported map reduce program running cluster involved creating hive table loading data writing hive query run internally map reduce detail hadoop developer hadoop developer braindatawire skill detail apache hadoop hdfs experience forty nine month apache hadoop sqoop experience forty nine month hadoop experience forty nine month hadoop experience forty nine month hadoop distributed file system experience detail company braindatawire description technical skill programming core java map reduce scala hadoop tool hdfs spark map reduce sqoop hive hbase database mysql oracle scripting shell scripting ide eclipse operating system linux centos window source control git github\",\n \"skill area exposure modeling tool bizagi m visio prototyping tool indigo studio documentation m office m word m excel m power point testing proficiency smoke sanity integration functional acceptance ui methodology implemented waterfall agile scrum database sql testing tool hpqc business exposure education detail bachelor computer engineering computer engineering thadomal shahani engineering college diploma computer engineering ulhasnagar institute technology secondary school certificate ulhasnagar new english high school senior business analyst rpa senior business analyst rpa hexaware technology skill detail documentation experience forty seven month testing experience twenty nine month integration experience twenty five month integrator experience twenty five month prototype experience detail company hexaware technology description working rpa business analyst company bbh brown brother harriman co description private bank provides commercial banking investment management brokerage trust service private company individual also performs merger advisory foreign exchange custody service commercial banking corporate financing service responsibility performed automation assessment various process identified process candidate rpa conducting assessment involves initial understanding existing system technology process usage tool feasibility tool automation tool along automation roi analysis preparing automation potential sheet describes step process volume frequency transaction aht taken sme perform process depending step could automated automation potential manual effort saved calculated calculating complexity process considered automation depending factor number bot number automation tool license determined implementing proof concept poc validate feasibility executing selected critical use case conducting poc help identify financial operational benefit provide recommendation regarding actual need complete automation gathering business requirement conducting detailed interview business user stakeholder subject matter expert sme preparing business requirement document converted business requirement functional requirement specification constructing prototype early toward design acceptable customer feasible assisting designing test plan test scenario test case integration regression user acceptance testing uat improve overall quality automation participating regularly walkthroughs review meeting project manager qa engineer development team regularly interacting offshore onshore development team company fadv first advantage description criminal background check company delivers global solution ranging employment screening background check following process covered email process research process review process responsibility requirement gathering conducting interview brainstorming session stakeholder develop decision model execute rule per use case specification test validate decision model document test data maintain enhance decision model change regulation per use case specification responsible performing business research make business growth developing clear understanding existing business function process effectively communicate onsite client query suggestion update giving suggestion enhance current process identifying area process improvement flagging potential problem early stage preparing powerpoint presentation document business meeting using information gathered write detailed report highlighting risk issue could impact project delivery able work accurately develop maintain documentation internal team training client end user operation work efficiently team member across team mentor train junior team member company clinical testing lab work diagnostic testing description iqvia provides service customer includes clinical testing lab work diagnostic testing clinical trial customer need pay iqvia aging detail invoice generated following process covered tracking payment automated real time metric reporting dashboard past due notification ar statement credit rebill responsibility conducting meeting client key stakeholder gather requirement analyze finalize formal sign offs approver gather perform analysis business requirement translating business requirement business requirement document brd functional requirement document frd facilitating meeting appropriate subject matter expert business technology team coordinating business user community execution user acceptance test well tracking issue working collaborating coordinating offshore onsite team member fulfill ba responsibility project initiation post implementation reviewing test script business user well technology team execute test script expected result system integration test sit user acceptance test uat coordinating conducting production acceptance testing pat business user creating flow diagram structure chart type system process representation managing change requirement baseline change control process utilizing standard method design testing tool throughout project development life cycle work closely operational functional team operation management personnel various technology team facilitate shared understanding requirement priority across area company eduavenir solution description project inventory management application allows user manage inventory detail different warehouse different product located various location help extract good procured sold returned customer generates automated invoicesalong withcustomized report also managescustomer complaint resolution system implementation along automated mi monthly basis sale forecastingis also developed mi system streamlining process warehousing dispatch along online proof delivery management system pod documentation generated responsibility participate requirement gathering discussion client understand flow business process analyze requirement determine core process develop process documentation ensure stay date conjunction going change participate process flow analysis preparing brd sr coordinating developer designer operation team various nuance project communicate stakeholder requirement requirement enhancement implementation finally deliver within estimated timeframe support uat reviewing test case manage version control document software build coordinate stakeholder uat sign coordinate internally production movement till golive stage application provide demo training internal end user using powerpoint presentation resolving project functional technical issue uat prioritizing production bug resolving within estimated timeframe preparing project status report production bug status stakeholder promoting networking online trading platform designing query sheet obtaining comparison quote various vendor development product code material code inventory management master data management company capgemini head office description type mobile device testing duration follet application take electronic request user book requires particular follet store detailed information book include name book price date transaction party involved sent follet store user create request one book given date request processed user get mail date provided book responsibility understanding need business requirement preparing brd sr eliciting requirement client smes understanding dependency module system preparation test plan unit level integration level preparation execution test case defect tracking issue resolution risk monitoring status tracking reporting follow preparation test completion report company capgemini head office description company capgemini head office description humana health care insurance project deal supplying various medicine citizen per doctor reference patient insurance policy application keep track medicine user consumed past generates patient history citizen given drug doctor reference doctor information also linked patient history responsibility understanding requirement getting clarification client involved writing test case based test scenario execute ensuring test coverage using requirement traceability matrix rtm preparation test completion report company capgemini head office description testing trend wqr world quality report application allows user take survey different method technology used testing user choose answer type question three different category user facility search view export data excel also user get daily weekly report email new trend testing implemented around globe testing trend wqr app available android io platform responsibility understanding requirement getting clarification client writing test case based test scenario executed performing different type testing functional integration system uat defect resolution maintenance application\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"text_length\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 256,\n \"min\": 14,\n \"max\": 1411,\n \"num_unique_values\": 144,\n \"samples\": [\n 353,\n 78,\n 442\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}",
"type": "dataframe",
"variable_name": "df_resume"
},
"text/html": [
"\n",
" <div id=\"df-a1e1f19f-b65e-487f-beef-78d4ac05c466\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>category</th>\n",
" <th>clean_data</th>\n",
" <th>text_length</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Data Science</td>\n",
" <td>skill programming language python panda numpy ...</td>\n",
" <td>502</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Data Science</td>\n",
" <td>education detail uit rgpv data scientist data ...</td>\n",
" <td>123</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Data Science</td>\n",
" <td>area interest deep learning control system des...</td>\n",
" <td>190</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Data Science</td>\n",
" <td>skill python sap hana tableau sap hana sql sap...</td>\n",
" <td>722</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Data Science</td>\n",
" <td>education detail mca ymcaust faridabad haryana...</td>\n",
" <td>53</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-a1e1f19f-b65e-487f-beef-78d4ac05c466')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-a1e1f19f-b65e-487f-beef-78d4ac05c466 button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-a1e1f19f-b65e-487f-beef-78d4ac05c466');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-68464ad0-416d-4714-bbd5-c4d02915a401\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-68464ad0-416d-4714-bbd5-c4d02915a401')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-68464ad0-416d-4714-bbd5-c4d02915a401 button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"text/plain": [
" category clean_data \\\n",
"0 Data Science skill programming language python panda numpy ... \n",
"1 Data Science education detail uit rgpv data scientist data ... \n",
"2 Data Science area interest deep learning control system des... \n",
"3 Data Science skill python sap hana tableau sap hana sql sap... \n",
"4 Data Science education detail mca ymcaust faridabad haryana... \n",
"\n",
" text_length \n",
"0 502 \n",
"1 123 \n",
"2 190 \n",
"3 722 \n",
"4 53 "
]
},
"execution_count": 384,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_resume = pd.read_csv(\"/content/drive/MyDrive/Dataset/Compfest16_AIC/dataset_resume.csv\")\n",
"df_resume.drop(columns=['Resume'], inplace=True)\n",
"df_resume.rename(columns={'Category': 'category'}, inplace=True)\n",
"df_resume.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "2GzDd1jHrpum"
},
"outputs": [],
"source": [
"df_resume['category'] = df_resume['category'].replace('Web Designing', 'UI/UX Designer')\n",
"df_resume['category'] = df_resume['category'].replace('Database', 'database administrator')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "yvk6b-Vz--U4"
},
"outputs": [],
"source": [
"df_resume['category'] = df_resume['category'].str.lower()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "EWF5ENAb_B7-"
},
"outputs": [],
"source": [
"# FILTER BY AVAILABLE ROLE\n",
"df_resume = df_resume[df_resume['category'].\n",
" isin(['java developer', 'data science', 'software developer',\n",
" 'systems administrator', 'project manager', 'sales',\n",
" 'accountant', 'business development', 'hr',\n",
" 'consultant', 'finance', 'chef', 'security analyst',\n",
" 'dotnet developer', 'devops engineer', 'automation testing',\n",
" 'ui/ux designer', 'web developer', 'business analyst',\n",
" ])]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 398
},
"id": "Vsl_cHNkmfym",
"outputId": "cb5d2bc3-11bd-417a-d630-0c0ca2a88201"
},
"outputs": [
{
"data": {
"text/html": [
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>count</th>\n",
" </tr>\n",
" <tr>\n",
" <th>category</th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>java developer</th>\n",
" <td>13</td>\n",
" </tr>\n",
" <tr>\n",
" <th>data science</th>\n",
" <td>10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>hr</th>\n",
" <td>10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>automation testing</th>\n",
" <td>7</td>\n",
" </tr>\n",
" <tr>\n",
" <th>devops engineer</th>\n",
" <td>7</td>\n",
" </tr>\n",
" <tr>\n",
" <th>dotnet developer</th>\n",
" <td>7</td>\n",
" </tr>\n",
" <tr>\n",
" <th>business analyst</th>\n",
" <td>6</td>\n",
" </tr>\n",
" <tr>\n",
" <th>sales</th>\n",
" <td>5</td>\n",
" </tr>\n",
" <tr>\n",
" <th>ui/ux designer</th>\n",
" <td>4</td>\n",
" </tr>\n",
" </tbody>\n",
"</table><br><label><b>dtype:</b> int64</label>"
],
"text/plain": [
"category\n",
"java developer 13\n",
"data science 10\n",
"hr 10\n",
"automation testing 7\n",
"devops engineer 7\n",
"dotnet developer 7\n",
"business analyst 6\n",
"sales 5\n",
"ui/ux designer 4\n",
"Name: count, dtype: int64"
]
},
"execution_count": 388,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_resume['category'].value_counts()"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "at562JBVEPzc"
},
"source": [
"# DATASET RESUME HUGGINGFACE 30K"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 206
},
"id": "h7odnnVuEPUv",
"outputId": "56acc576-99b4-4721-883c-e89aca702d5c"
},
"outputs": [
{
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"summary": "{\n \"name\": \"df_resumehug\",\n \"rows\": 31566,\n \"fields\": [\n {\n \"column\": \"category\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 52,\n \"samples\": [\n \"database administrator\",\n \"public relations\",\n \"systems administrator\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"clean_data\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 31566,\n \"samples\": [\n \"software developer span lsoftwarespan span ldeveloperspan software developer icon technology inc charlotte nc work experience object oriented design modeling programming testing core java j2ee technology experience phase software development life cycle including project development scratch experienced complete project lifecycle using sdlc technique uml use case functional design document expertise object oriented programming using core java j2ee related technology proficiency developing secure web application serverside development using spring rest web service aop orm hibernate jdbc strut jsp servlets java bean javascript xml html java bean oracle soap web service various design pattern comprehensive knowledge physical logical data modeling performance tuning hand experience database including oracle db2 mysql experience environment requiring direct customer interaction requirement gathering design development support phase involved testing phase like unit testing integration testing performance testing including application profiling user acceptance testing strong analytical skill ability quickly understand client business need experience using continuous integration tool like jenkins knowledge amazon web service ec2 s3 experience memory leak detection jvm gc tuning experience working weblogic tomcat jboss experienced eclipse spring tool suite selfmotivated proven ability work independently team excellent team player quick learner selfstarter effective communication motivation organizational skill combined attention detail work experience software developer icon technology inc charlotte nc present rulo creating unique experience mortgage refinance purchase user us realtime pricing technology realtime processing technology crm system user experience significantly increase payouts couple impact well first rulo get offer wide range borrower allows user sort skip filtering step inside lendingtree go directly pricing engine way brings material increase customer satisfaction second rulo help reducing phone call increasing capacity lender massively spring boot application scratch spring mongo connection included idsrv4 oauth token validation enabled authentication rest apis designed rule engine evaluate complex expression expression tree incorporated kafka application transform mongo object relational table column used spring ioc injecting bean reduced coupling class implemented data access tier using dao asynchronous computation java completablefuture reading xml file multiple thread using sax parser used aop module handle transaction management service application identified fixed memory leak caused bug code involved deploying managing production setup aws service used aws service including ec2 vpc application deployment transforming requirement stipulation environment java spring rest service spring mvccorejpa sts svn aws ec2 s3 angular j html cs javascript security group vpc production deployment caching jms linux redhat jvm memory management design architectural pattern tdd concurrency agile maven bitbucket lead developer persistent system pune maharashtra project title cu loan platform mycb project creating loan platform aggregator web traffic originator direct personal loan application participation loan platform open multiple credit union platform single simple loan offered common term participating cu creditkyc check done using call credit service round robin cu allocation various filter agreement sending signing using adobe echosign api loan account creation disbursement using mambu apis role responsibility developed spring boot application scratch hibernate mysql created rest apis backend application integration application third party service mambu adobe echosign api call credit service involved architectural design api management using api gateway information security token based authentication role based authorization implemented design pattern command builder j2ee design pattern deployed application aws load balancer aws elastic ip white listed thirdparty apis ec2 vpc junit framework unit testing identification documentation technical depth issue prioritizing sprint transforming requirement stipulation environment core java spring rest service spring mvccorejpa aws ec2 s3 angular j html cs javascript security group vpc production deployment caching jms linux redhat jvm memory management design architectural pattern tdd concurrency agile maven project gdpr trunomi work location pune role lead developer consent management data sharing platform connects financial institution customer capturing customer consent use personal data financial institution provides secure messaging document sharing prove regulatory compliance general data protection regulation gdpr role responsibility developed nodejs back end application tpb eba part trunomi platform cassandra created rest apis application unit testing mocha implemented information security feature using hybrid encryption digital signing verification enable secure communication cfa customer front end application tpb trunomi platform backend application eba enterprise back end application multipart data environment nodejs cassandra git jira linux rest service individual contributor developer ibm india pvt ltd pune maharashtra india project title direct debit dispute barclays british multinational banking financial service company headquartered london universal bank operation retail wholesale investment banking well wealth management mortgage lending credit card direct debit dispute module added existing customer support banking application raise dispute direct debit barclays customer design application mca based architecture role responsibility implemented multithreaded solution complex computation implemented design pattern command builder j2ee design pattern involved agile project describing story listing task design application flow design development spring mvc based web application direct debit dispute identified fixed memory leak caused bug code responsible performing code review analysing risk project schedule unit testing junit framework environnent java web service log4j websphere application server tdd concurrency agile maven project bnp paribas role senior developer work location pune project title bmrc credit rick reporting system bmrc data warehouse store data credit rating credit risk different legal entity organisation across globe core technology involved plsql role responsibility converting high level design low level design wrote stored procedure using oracle plsql aggregation engine basel ii family low level design creation coding performance tuning stored procedure created unit test matrix performed unit test environment oracle g tdd project ibm software lab role java developer work location pune project title jazz service management security service security service make use single sign ltpa token work across websphere nonwebsphere application registry service shared data repository providing index application installed resource manage intended support loosely coupled integration open service lifecycle collaboration oslc expose functionality oslc service provider role responsibility incorporated cobertura running unit test case build developed ssodebug tool find problem failure encountered single sign responsible sign module single sign prototype developed oauth websphere application server tai based solution implemented command design pattern writing cli backend application wrote ddt case unit testing setup deploying product solarisredhataix platform identified deadlock issue code fixed adhering locking sequence environment java web service websphere application server linux aix tdd agile project ups united parcel service java developer work location pune project title open account marketing rate discount mrd application allows user apply rate change promo discount existing account open new account promo discount web seller account module allows web seller open online account without involving third party agent role responsibility designing developing new mrd module integrating existing application designed developed web seller account module integrated existing application requirement gathering client impact analysis project planning person estimation prepare design document design develop jsp page writing action business logic class web service oracle ejb java developer patni computer system ltd mumbai maharashtra india project title odin project related development odin application used configure celerra na device various na service like iscsi cifs nfs ui code involved multithreading role responsibility requirement analysis estimation design coding discus issue ar client resolving outofmemoryerror ui getting blocked writing strut action business logic class celerra feature like iscsi nfs cifs provisioning etc environment java struts13 web service project hitachi role java developer work location mumbai project title collaboration portal groupmax provides collaboration portal built around crossfunctionality security ubiquity globalization facilitating rich collaboration rapid knowledge acquisition beyond individual organizational framework help create virtual workplace collaboration enabling organization community bring together variety knowledge create new insight solve problem also enhanced security functionality built compliance mind applies electronic forum mobile device promote realtime communication knowledge sharing beyond barrier organization time place key bringing speed value business role responsibility requirement gathering client impact analysis interacting client clarify query regarding functionality risk analysis module term time line expected dependency module looking multithreaded solution given scenario coding code review environment core java strut web service spring hibernate oracle ejb project ge aviation u role java developer work location bangalore project title customer web center cwc goal project rebuild application initial provisioning using jsf framework portlet integrated portal based jboss portal framework initial provisioning application allows customer calculate spare part configuration based need allow place order part role responsibility requirement gathering client impact analysis interacting client clarify query regarding functionality coding code review developed dao class interact stored procedure back end developed package procedure interaction database test case creation unit testing various module environment java strut web service spring hibernate oracle ejb java15 jboss strut eclipse33 plsql developer education post graduate diploma information technology information technology iit kharagpur skill eclipse j2ee java hibernate spring jaxb jms jsp servlets strut application server git groovy nodejs jenkins svn xml mvc rest service soap\",\n \"full stack software developer full stack software span ldeveloperspan full stack software developer asoftio llc boca raton fl work experience full stack software developer asoftio llc miami fl present charge relational database design technology infrastructure implementation develop apis ruby rail backend consumed vuejs reactjs depending project scope implement bitcoin litecoin stripe payment gateway cloud mobile ecosystem practice agile methodology project sprint collaboration tool like jira trello others implement circleci cicd project led full stack developer cryptostudio llc created saas platform company sold online using stripe payment gateway crypto trading course developed tool called swap coin connected several crypto exchange create remote random order bitcoin litecoin payment method developed auto trading algorithm operate crypto exchange developed apps api ruby rail running mysql database redis queue system user platform made reactjs web front end developer bushido lab llc helped team structure new apps architecture mostly front end using react main framework backend certain apps use ruby rail case firebase project needed fast mvp ruby rail backend developer clever code sa bogot co colombia leader development team created several platform company client online advertising platform measure traffic click client website also developed ecommerce creator like shopify made laravel latin america using laravel time found many limitation hence reason moving ruby rail much reliable framework education wyncode academy fl b psychologist pontificia universidad bogot skill javascript reactjs redux php laravel ruby rail ruby rail scripting mysql nginx html5 bash linux wordpress jquery node react react node jquery nodejs link additional information skill ruby rail javascript ruby html5 css3 nodejs reactjs vuejs redux scripting linux mysql nginx npm yarn php laravel wordpress\",\n \"web developer uxui designer span lwebspan span ldeveloperspan uxui designer web designer demonstrated history working uxui edison nj experienced web designer demonstrated history working user experience information technology education industry skilled sketch cascading style sheet cs html wireframing ui prototyping strong designing professional master degree focused computer science authorized work u employer work experience web developer uxui designer academy belleville nj present created washington academy official website based wordpress initiated user experience research design client implemented website portal district parent teacher implemented designing skill technical knowledge research delivery full stack developer finslide technology corp new york ny efficiently shared skill design functionality finslide mobile webbased module ux ui web developer desktop creator successfully worked user experience user interface client desktop creator applying knowledge web development education master computer science monroe college new rochelle bachelor computer application university skill user experience sketch wireframe html css3 ux adobe ui user interface link assessment graphic design highly proficient measure candidate ability create visual medium effectively communicate information concept full result basic word processing microsoft word expert measure candidate knowledge basic microsoft word technique word processing including use tool format edit text full result indeed assessment provides skill test indicative license certification continued development professional field\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"text_length\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 543,\n \"min\": 1,\n \"max\": 8930,\n \"num_unique_values\": 2594,\n \"samples\": [\n 741,\n 2301,\n 1925\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}",
"type": "dataframe",
"variable_name": "df_resumehug"
},
"text/html": [
"\n",
" <div id=\"df-d73a73cf-1b27-4bba-a16b-26fc55829805\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>category</th>\n",
" <th>clean_data</th>\n",
" <th>text_length</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>accountant</td>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>550</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>accountant</td>\n",
" <td>flexible accountant adapts seamlessly constant...</td>\n",
" <td>865</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>accountant</td>\n",
" <td>highly analytical detail oriented professional...</td>\n",
" <td>699</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>accountant</td>\n",
" <td>analysis prepare auction sale journal finalize...</td>\n",
" <td>308</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>accountant</td>\n",
" <td>experience accounting profession bachelor degr...</td>\n",
" <td>482</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-d73a73cf-1b27-4bba-a16b-26fc55829805')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-d73a73cf-1b27-4bba-a16b-26fc55829805 button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-d73a73cf-1b27-4bba-a16b-26fc55829805');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-af106b5c-6cbd-4833-831d-fa0bd38289b2\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-af106b5c-6cbd-4833-831d-fa0bd38289b2')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-af106b5c-6cbd-4833-831d-fa0bd38289b2 button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"text/plain": [
" category clean_data text_length\n",
"0 accountant result oriented organized bilingual accounting... 550\n",
"1 accountant flexible accountant adapts seamlessly constant... 865\n",
"2 accountant highly analytical detail oriented professional... 699\n",
"3 accountant analysis prepare auction sale journal finalize... 308\n",
"4 accountant experience accounting profession bachelor degr... 482"
]
},
"execution_count": 389,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_resumehug = pd.read_csv(\"/content/drive/MyDrive/Dataset/Compfest16_AIC/resume30k_noner.csv\")\n",
"df_resumehug = df_resumehug.drop(columns=['Unnamed: 0'])\n",
"df_resumehug.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "WO2j_WjJEchX",
"outputId": "f1ca5b2e-e89d-450e-a13d-c381fb2001ed"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"RangeIndex: 31566 entries, 0 to 31565\n",
"Data columns (total 3 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 category 31566 non-null object\n",
" 1 clean_data 31566 non-null object\n",
" 2 text_length 31566 non-null int64 \n",
"dtypes: int64(1), object(2)\n",
"memory usage: 740.0+ KB\n"
]
}
],
"source": [
"df_resumehug.info()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "sZ_RWsh8EeAe"
},
"outputs": [],
"source": [
"df_resumehug['category'] = df_resumehug['category'].str.lower()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "PacAHJHkEiP0",
"outputId": "dbd4817b-7cbb-40fb-9f11-fa67f8c3f41c"
},
"outputs": [
{
"data": {
"text/plain": [
"52"
]
},
"execution_count": 392,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_resumehug['category'].value_counts().count()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "EDGNusMUErqp"
},
"outputs": [],
"source": [
"df_resumehug = df_resumehug.drop_duplicates(subset='clean_data', keep='first')\n",
"df_resumehug = df_resumehug.dropna(subset=['clean_data'])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "V0l_HNakEuQ3"
},
"outputs": [],
"source": [
"# FILTER BY AVAILABLE ROLE\n",
"df_resumehug = df_resumehug[df_resumehug['category'].\n",
" isin(['java developer', 'data science', 'software developer',\n",
" 'systems administrator', 'project manager', 'sales',\n",
" 'accountant', 'business development', 'hr',\n",
" 'consultant', 'finance', 'chef', 'security analyst',\n",
" 'dotnet developer', 'devops engineer', 'automation testing',\n",
" 'ui/ux designer', 'web developer', 'business analyst', 'database administrator'\n",
" ])]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "P0zbMQGrEy1_",
"outputId": "ec3d96e2-5b6c-4743-9c63-cdc169e89a9a"
},
"outputs": [
{
"data": {
"text/plain": [
"19"
]
},
"execution_count": 395,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_resumehug['category'].value_counts().count()"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "SoOpLTYrsfpW"
},
"source": [
"# DATASET JOB DESCRIPTION DATA SCIENCE 10K"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 206
},
"id": "Hqrspodbl05N",
"outputId": "a60581d6-2f3b-4445-9024-66fe91bbbfed"
},
"outputs": [
{
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"summary": "{\n \"name\": \"df_jobds\",\n \"rows\": 7738,\n \"fields\": [\n {\n \"column\": \"category\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 1,\n \"samples\": [\n \"data science\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"clean_data\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 7218,\n \"samples\": [\n \"title data scientist location houston tx duration month job description year experience working supervised unsupervised machine learning year performing anomaly detection year programming python year working data visualization ability communicate finding experience data wrangling statistic advance splunk knowledge implementing data science model within splunk note strong d resource background cyber security good experience machine learning specified algorithm\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}",
"type": "dataframe",
"variable_name": "df_jobds"
},
"text/html": [
"\n",
" <div id=\"df-6b024cab-9084-49cf-88bf-332341858e91\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>category</th>\n",
" <th>clean_data</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>data science</td>\n",
" <td>farmer join team diverse professional farmer a...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>data science</td>\n",
" <td>immediate opening sharp data scientist strong ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>data science</td>\n",
" <td>candidate following background skill character...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>data science</td>\n",
" <td>blackrock blackrock help investor build better...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>data science</td>\n",
" <td>seeking extraordinary data scientist charlotte...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-6b024cab-9084-49cf-88bf-332341858e91')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-6b024cab-9084-49cf-88bf-332341858e91 button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-6b024cab-9084-49cf-88bf-332341858e91');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-3831eb73-c873-4a3e-b825-5b7397170eda\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-3831eb73-c873-4a3e-b825-5b7397170eda')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-3831eb73-c873-4a3e-b825-5b7397170eda button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"text/plain": [
" category clean_data\n",
"0 data science farmer join team diverse professional farmer a...\n",
"1 data science immediate opening sharp data scientist strong ...\n",
"2 data science candidate following background skill character...\n",
"3 data science blackrock blackrock help investor build better...\n",
"4 data science seeking extraordinary data scientist charlotte..."
]
},
"execution_count": 396,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_jobds = pd.read_csv(\"/content/drive/MyDrive/Dataset/Compfest16_AIC/output_dsjob.csv\")\n",
"df_jobds.drop(columns=['job_description'], inplace=True)\n",
"df_jobds.rename(columns={'job_title': 'category'}, inplace=True)\n",
"df_jobds['category'] = 'data science'\n",
"df_jobds.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 147
},
"id": "BsVEIB2dl9JC",
"outputId": "654d49d7-7f57-433f-e00c-17b914a69687"
},
"outputs": [
{
"data": {
"text/html": [
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>count</th>\n",
" </tr>\n",
" <tr>\n",
" <th>category</th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>data science</th>\n",
" <td>7738</td>\n",
" </tr>\n",
" </tbody>\n",
"</table><br><label><b>dtype:</b> int64</label>"
],
"text/plain": [
"category\n",
"data science 7738\n",
"Name: count, dtype: int64"
]
},
"execution_count": 397,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_jobds['category'].value_counts()"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "m1muGpmlsoK6"
},
"source": [
"# DATASET JOB DESCRIPTION 30K"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 206
},
"id": "fyLlhgg2ms_X",
"outputId": "81cdd10d-6cb1-4ab5-aa6c-5a39a7d9a2a3"
},
"outputs": [
{
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"summary": "{\n \"name\": \"df_joball\",\n \"rows\": 4988,\n \"fields\": [\n {\n \"column\": \"category\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 4116,\n \"samples\": [\n \"Head of Business Process (Hospitality - Cisarua)\",\n \"Head of HR Strategy & Development\",\n \"Content Creator Copywriter Specialist\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"clean_data\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 4985,\n \"samples\": [\n \"accountant accounting tax finance expertise experience managing finance retail company proficient using microsoft excel accounting software willing work semarang central java en ko rio one leading jewelry company semarang cv sentosa dik known kom bunga tanjung opening limited opportunity outstanding accountant join accounting tax supervisor placed semarang central java toko ma bunga tanjung believe best service client satisfaction important want provide world class service always working synergistically achieve common goal want work also learn together school life waiting cv requirement general accounting tax staff profession also intended looking position accounting tax finance accounting supervisor accounting tax supervisor finance supervisor accounting supervisor tax supervisor minimum education bachelor age twenty five thirty five year least three year experience accounting tax finance proficient using microsoft office powerpoint excel word outlook especially microsoft excel proficient using accounting system software experience working accounting tax retail company pleasant personality work quickly pay attention detail responsibility responsible bookkeeping company financial transaction offline store online store accounting function invoice receivables payable financial report control function budgeting general ledger reconciliation data quality connection posting accounting system monitor bank account reconciliation treasurer function cashier petty cash bank receipt payment create financial report manage appropriate tax transaction applicable provision vat pph twenty one pph twenty five corporate pph benefit full job permanent full time employment status fun family like working atmosphere thr meet criterion action send cv photo last salary february seventeen 2022allcvs handled strictly confidentially selected candidate contacted\",\n \"responsibility responsible collection effort customer arrears installment payment potentially risky company qualification minimum two year experience financial institution retail banking credit card coordinator strong analytical strategic skill field collection able collaborate third party related authority minimum associate degree graduate ac driving license motorbike like field work placement jakarta east bekasi regency\",\n \"duty responsibility greet customer friendly manner provide input customer interest drink need explain menu requested customer prepare serve coffee drink according recipe improve reputation coffee shop continuing maintain quality dish qualification age twenty thirty year receive education important thing experienced high work ethic minimum one year experience experience barista neat polite appearance\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}",
"type": "dataframe",
"variable_name": "df_joball"
},
"text/html": [
"\n",
" <div id=\"df-754dfe4d-149f-4e5a-b601-2bea83ee9e40\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>category</th>\n",
" <th>clean_data</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>PROCUREMENT & EXIM SUPERVISOR</td>\n",
" <td>procurement exim supervisor requirement 1 leas...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Staff Admin</td>\n",
" <td>qualification open age minimum education high ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Motion Graphic Designer</td>\n",
" <td>requirement bachelor degree equivalent design ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Asisten Associate Manager</td>\n",
" <td>crave freedom work get comfort zone faster sig...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Staff Design Development</td>\n",
" <td>job responsibility responsible process develop...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-754dfe4d-149f-4e5a-b601-2bea83ee9e40')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-754dfe4d-149f-4e5a-b601-2bea83ee9e40 button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-754dfe4d-149f-4e5a-b601-2bea83ee9e40');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-663360e9-0b39-4364-b663-2d483ac827ac\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-663360e9-0b39-4364-b663-2d483ac827ac')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-663360e9-0b39-4364-b663-2d483ac827ac button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"text/plain": [
" category \\\n",
"0 PROCUREMENT & EXIM SUPERVISOR \n",
"1 Staff Admin \n",
"2 Motion Graphic Designer \n",
"3 Asisten Associate Manager \n",
"4 Staff Design Development \n",
"\n",
" clean_data \n",
"0 procurement exim supervisor requirement 1 leas... \n",
"1 qualification open age minimum education high ... \n",
"2 requirement bachelor degree equivalent design ... \n",
"3 crave freedom work get comfort zone faster sig... \n",
"4 job responsibility responsible process develop... "
]
},
"execution_count": 398,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_joball = pd.read_csv(\"/content/drive/MyDrive/Dataset/Compfest16_AIC/combined_df.csv\")\n",
"df_joball.drop(columns=['id', 'location', 'salary_currency', 'career_level', 'experience_level', 'education_level', 'employment_type',\n",
" 'job_function', 'job_benefits', 'company_process_time', 'company_size', 'company_industry', 'job_description', 'salary'], inplace=True)\n",
"df_joball.rename(columns={'job_title': 'category'}, inplace=True)\n",
"df_joball.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "kaN4Rko0og9E"
},
"outputs": [],
"source": [
"category_counts = df_joball['category'].value_counts()\n",
"\n",
"categories_to_keep = category_counts[category_counts > 1].index\n",
"\n",
"df_joball = df_joball[df_joball['category'].isin(categories_to_keep)]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "vJV1_v6eLmnw",
"outputId": "d44d6e3b-69bd-45c0-b639-5fd60ebfbb5b"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Index: 1229 entries, 1 to 4983\n",
"Data columns (total 2 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 category 1229 non-null object\n",
" 1 clean_data 1229 non-null object\n",
"dtypes: object(2)\n",
"memory usage: 28.8+ KB\n"
]
}
],
"source": [
"df_joball.info()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "QXN9P8qgphwX",
"outputId": "b585d077-fc96-4396-d774-86b887104bdf"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<ipython-input-401-c78b11776ddb>:13: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace(values_to_replace, 'Sales')\n"
]
}
],
"source": [
"# REPLACE SALES\n",
"values_to_replace = ['Sales Executive', 'Sales', 'Sales Engineer', 'Sales Manager',\n",
" 'Sales Marketing', 'Sales Supervisor', 'SALES EXECUTIVE', 'SALES ENGINEER',\n",
" 'SALES', 'Sales Project', 'Salesman', 'Sales Representative', 'SALES MANAGER',\n",
" 'Sales Staff', 'SALES SUPERVISOR', 'Area Sales Manager', 'Sales Staff',\n",
" 'Admin Sales', 'Area Sales Supervisor', 'SALES MARKETING', 'Direct Sales',\n",
" 'Sales Admin', 'Sales Associate', 'Sales & Marketing Manager', 'Sales Motoris',\n",
" 'Sales Bahan Bangunan', 'Sales HORECA', 'Sales Assistant Manager', 'SALES TAKING ORDER',\n",
" 'Sales Executive (Jakarta)', 'Sales Consultant', 'Sales Administration', 'Sales Canvas',\n",
" 'Sales Specialist', 'Sales Marketing Executive', 'Sales Officer', 'Sales Trainer'\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'Sales')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "mSiCTHz-YKoA",
"outputId": "08c47370-179a-4efa-f734-4932882c5cbc"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<ipython-input-402-c40dc4288df1>:8: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace(values_to_replace, 'Accounting')\n"
]
}
],
"source": [
"# REPLACE ACCOUNTING\n",
"values_to_replace = ['Senior Staff Accounting', 'Staff Accounting & Tax', 'Staff Accounting', 'STAFF ACCOUNTING',\n",
" 'Finance & Accounting Staff', 'ACCOUNTING', 'Accounting Staff', 'Accounting',\n",
" 'Finance & Accounting', 'Finance Accounting Manager', 'Accounting Officer', 'Finance & Accounting Supervisor', 'Accounting Supervisor',\n",
" 'Accounting and Tax Staff', 'ACCOUNTING STAFF', 'Senior Accounting', 'FINANCE & ACCOUNTING STAFF',\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'Accounting')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "XPYucx_9Ztb6",
"outputId": "b698d34b-3cf1-4fa3-841e-2e78a06aa106"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<ipython-input-403-60447dd5744c>:10: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace(values_to_replace, 'Marketing')\n"
]
}
],
"source": [
"# REPLACE MARKETING\n",
"values_to_replace = ['Marketing', 'Marketing Executive', 'Digital Marketing', 'Marketing Manager',\n",
" 'Digital Marketing Officer', 'Marketing Communication Manager', 'Marketing Officer', 'Digital Marketing Specialist',\n",
" 'Staff Marketing', 'MARKETING', 'DIGITAL MARKETING', 'Head of Marketing', 'TELEMARKETING',\n",
" 'Senior Marketing Executive', 'STAFF MARKETING', 'Telemarketing', 'Marketing Coordinator',\n",
" 'Sales Marketing Executive', 'Online Marketing', 'Marketing Communication Specialist', 'MARKETING SUPPORT',\n",
" 'Digital Marketing Manager', 'Assistant Marketing Manager', 'Marketing Supervisor', 'Marketing Staff',\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'Marketing')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "B9_5hoeeeRHF",
"outputId": "23b79b2c-fe27-4a75-a1e6-663cecd07e4a"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<ipython-input-404-f5cb8712a4da>:5: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace(values_to_replace, 'software developer')\n"
]
}
],
"source": [
"# REPLACE SOFTWARE DEVELOPER\n",
"values_to_replace = ['Software Developer', 'Senior Software Engineer', 'Software Engineer'\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'software developer')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "zh7-X11febM8",
"outputId": "d46faf20-5e6f-4aed-8719-7e84b8891dfa"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<ipython-input-405-16fc1391e8d1>:1: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace('Software Quality Assurance (Automation)', 'Automation Testing')\n",
"<ipython-input-405-16fc1391e8d1>:2: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace('.NET Developer', 'DotNet Developer')\n",
"<ipython-input-405-16fc1391e8d1>:3: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace('Data Scientist', 'data science')\n",
"<ipython-input-405-16fc1391e8d1>:4: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace('Data Analyst', 'data science')\n",
"<ipython-input-405-16fc1391e8d1>:5: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace('Accounting', 'accountant')\n",
"<ipython-input-405-16fc1391e8d1>:6: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace('System Administrator', 'systems administrator')\n"
]
}
],
"source": [
"df_joball['category'] = df_joball['category'].replace('Software Quality Assurance (Automation)', 'Automation Testing')\n",
"df_joball['category'] = df_joball['category'].replace('.NET Developer', 'DotNet Developer')\n",
"df_joball['category'] = df_joball['category'].replace('Data Scientist', 'data science')\n",
"df_joball['category'] = df_joball['category'].replace('Data Analyst', 'data science')\n",
"df_joball['category'] = df_joball['category'].replace('Accounting', 'accountant')\n",
"df_joball['category'] = df_joball['category'].replace('System Administrator', 'systems administrator')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "RTIN6cBUeyV6",
"outputId": "99f6b710-8221-4341-d359-35abe4df4085"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<ipython-input-406-232a37a0b814>:6: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace(values_to_replace, 'hr')\n"
]
}
],
"source": [
"# REPLACE HR\n",
"values_to_replace = ['HRD Staff', 'HR Supervisor', 'HR Staff', 'HRD',\n",
" 'HR Manager', 'HR & GA Staff', 'HRD & GA Manager', 'HR MANAGER', 'HRD Manager'\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'hr')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "NtsUD5GvfygQ",
"outputId": "8654d54d-bb5a-444a-a8cf-02b1c64d5bde"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<ipython-input-407-8783d3b7c6f6>:6: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace(values_to_replace, 'web developer')\n"
]
}
],
"source": [
"# REPLACE WEB DEVELOPER\n",
"values_to_replace = ['Web Developer', 'Front End Developer', 'Frontend Developer', 'Front-end Developer', 'Web Programmer',\n",
" 'FULLSTACK DEVELOPER', 'Full Stack Developer', 'Back End Developer', 'Backend Engineer', 'Backend Developer'\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'web developer')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "ppJU3FkOiNHv",
"outputId": "0ad1fb9a-dd80-4970-f163-aa865220bf05"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<ipython-input-408-4902418d5910>:5: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace(values_to_replace, 'project manager')\n"
]
}
],
"source": [
"# REPLACE PROJECT MANAGER\n",
"values_to_replace = ['Project Manager (MEP)', 'PROJECT MANAGER', 'Assistant Project Manager', 'IT Project Manager', 'Project Manager',\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'project manager')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "dje-WAxCpWta",
"outputId": "d04bffd3-490b-4cc6-d034-29d376cf9936"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"<ipython-input-409-564aaebf8dd6>:5: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" df_joball['category'] = df_joball['category'].replace(values_to_replace, 'business development')\n"
]
}
],
"source": [
"values_to_replace = ['Business Development Officer', 'Business Development Manager', 'BUSINESS DEVELOPMENT MANAGER', 'Business Development'\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'business development')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "nu4fWVzzpfyu"
},
"outputs": [],
"source": [
"values_to_replace = ['Chef de Partie', 'Chef', 'Head Chef', 'Cook', 'COOK', 'Cook Helper'\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'chef')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "GiQ7ddeApocU"
},
"outputs": [],
"source": [
"values_to_replace = ['Finance, Accounting & Tax Manager', 'Finance Accounting Supervisor', 'Finance Officer', 'STAFF FINANCE', 'Staff Finance & Accounting',\n",
" 'Finance Accounting Staff', 'FINANCE STAFF', 'Finance Supervisor', 'Staff Finance', 'Finance', 'Finance Staff'\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'finance')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "Z540fxwgp2SP"
},
"outputs": [],
"source": [
"\n",
"values_to_replace = ['Tax Consultant', 'Senior Recruitment Consultant'\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'consultant')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "IlMZ9Ksap9dv"
},
"outputs": [],
"source": [
"values_to_replace = ['IT Business Analyst', 'Business Analyst','Senior IT Business Analys'\n",
" ]\n",
"\n",
"df_joball['category'] = df_joball['category'].replace(values_to_replace, 'business analyst')\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "ggpSu0U--1JH"
},
"outputs": [],
"source": [
"df_joball['category'] = df_joball['category'].str.lower()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "B9gPAkb3qCls"
},
"outputs": [],
"source": [
"# FILTER BY AVAILABLE ROLE\n",
"df_joball = df_joball[df_joball['category'].\n",
" isin(['java developer', 'data science', 'software developer',\n",
" 'systems administrator', 'project manager', 'sales',\n",
" 'accountant', 'business development', 'hr',\n",
" 'consultant', 'finance', 'chef', 'security analyst',\n",
" 'dotnet developer', 'devops engineer', 'automation testing',\n",
" 'ui/ux designer', 'web developer', 'business analyst',\n",
" ])]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "ch0ccJ9O-gIp",
"outputId": "329ec2c6-0a7e-4952-fa1e-92d45a6f2dd8"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Index: 458 entries, 15 to 4981\n",
"Data columns (total 2 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 category 458 non-null object\n",
" 1 clean_data 458 non-null object\n",
"dtypes: object(2)\n",
"memory usage: 10.7+ KB\n"
]
}
],
"source": [
"df_joball.info()"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "HsGd7NQZvFyh"
},
"source": [
"# DATASET IT JOBS 10K"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 206
},
"id": "XXl5A_Ept7if",
"outputId": "86faa44e-cdf0-43fe-86de-114c18785d12"
},
"outputs": [
{
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"summary": "{\n \"name\": \"df_job\",\n \"rows\": 9376,\n \"fields\": [\n {\n \"column\": \"category\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 25,\n \"samples\": [\n \"Machine Learning\",\n \"Technology Integration\",\n \"Data Scientist\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"clean_data\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 9327,\n \"samples\": [\n \"bachelor degree computer science related technical discipline equivalent combination education technical certification training work experience active t clearance five eight year directly related experience system administration window server operating system o two thousand eight two thousand twelve two thousand sixteen window desktop o seven ten window active directory ad group policy object gpo administrative experience hand experience exchange sharepoint m wsus vmware data server backup experience knowledge linux operating system\",\n \"job summary working direct supervision provides routine day today operation administrative support business unit large department assist coordination budget process improvement control specialized software function enabling department meet objective effective efficient manner essential duty responsibility analyzes monthly department budget report maintain expense control prepares commentary explanation variance management review assist system administration specialized software utilized business group support operation research resolve routine support issue follows ensure open issue resolved assist preparing user reference material troubleshoots resolve simple inquiry request internal external client review monitor department process procedure identify opportunity improve service delivery internal external customer may network external contact research recommend best practice coordinate budget preparation research collect input multiple internal external resource compiles variety operating financial statistical information needed respond management request coordinate work department may add commentary complete analysis report proposal assist communication best practice policy procedure initiative support operation help facilitate process improvement engaging appropriate resource issue identification resolution assist developing project plan cost including personnel fiscal requirement achieve defined objective may provide periodic update relative project resource fiscal plan performs duty assigned supervisory responsibility formal supervisory responsibility position provides informal assistance technical guidance training coworkers may lead project team plan supervise assignment lower level employee qualification perform job successfully individual must able perform essential duty satisfactorily requirement listed representative knowledge skill ability required reasonable accommodation may made enable individual disability perform essential function education experience bachelor degree babs equivalent four year college university plus minimum two year related work experience include budgeting finance business analytics equivalent combination education experience work experience related specific department business unit function preferred certificate license none communication skill excellent written verbal communication skill strong organizational analytical skill ability provide efficient timely reliable courteous service customer ability effectively present information financial knowledge requires knowledge financial term principle ability calculate intermediate figure percentage discount commission conduct basic financial analysis reasoning ability ability comprehend analyze interpret document ability solve problem involving several option situation requires intermediate analytical quantitative skill skill ability advanced proficiency microsoft office suite spreadsheet skill set include advanced function graphic pivottables scope responsibility decision made understanding procedure company policy achieve set result deadline responsible setting project deadline error judgment may cause short term impact coworkers supervisor\",\n \"science technology mission sixty year lawrence livermore national laboratory llnl applied science technology make world safer place seeking highly qualified scientist engineer join interdisciplinary team system analyst supporting program across global security principal directorate chemical biological explosive security nuclear threat reduction intelligence program energy infrastructure cybersecurity apply combination technical depth breadth critical thinking modeling simulation analysis understand multidomain problem area provide decision insight communicate option tradeoff facilitates integration new technology support customer mission position programmatically global security system analysis group administratively report payroll supervisor hiring organization position filled either thesis two s three level depending qualification additional job responsibility outlined assigned selected higher level essential duty provide solution requiring advanced analysis creative use innovation method problem intermediate complexity collaborating scientist researcher across variety technical discipline create analytical framework evaluate competing characteristic determine solution effectively meet customer stakeholder objective provide decision insight stakeholder moderately complex problem area develop evaluate apply physical computational simulation gain insight fairly complex system partner llnl scientist engineer bring research result practical use llnl global security program communicate technical concept intermediate complexity stakeholder concise effective way perform duty assigned addition thesis three level manage multiple parallel task priority customer stakeholder ensure deadline met lead various complex project leverage team member skill complete complex project task mentor staff assist recruiting effort serve primary technical point contact sponsor stakeholder participate development new program business qualification m engineering physical computer science related field equivalent combination education related experience comprehensive record technical achievement demonstrated ability approach hard problem enthusiasm creativity flexibility change focus necessary comprehensive analytical problem solving decision making skill develop creative solution moderately complex problem proficient verbal written interpersonal communication skill necessary effectively collaborate multidisciplinary team environment communicate technical information document work prepare present successful proposal high quality research paper ability travel offsite including potentially internationally sponsor customer interaction addition thesis three level significant experience leading system analysis project advanced analytical problem solving decision making skill develop creative solution complex problem demonstrated ability work independently effectively manage advanced concurrent technical task competing priority implement advanced research concept multidisciplinary team environment commitment deadline important project success desired qualification phd engineering physical computer science expertise one following area cybersecurity modeling simulation risk analysis data analytics chemical biological security explosive intelligence analysis radiological nuclear security energy system infrastructure protection expert knowledge substantial experience project manager principal investigator project competing priority loosely defined deliverable high visibility significant experience working department homeland security department energy intelligence community relevant government sponsor preemployment drug test external applicant selected position required pas post offer preemployment drug test security clearance position requires department energy eq level clearance selected initiate federal background investigation determine meet eligibility requirement access classified information matter additional q cleared employee subject random drug testing q level clearance requires u citizenship hold multiple citizenship u another country may required renounce non u citizenship doel q clearance processed granted note career indefinite position lab employee external candidate may considered position u lawrence livermore national laboratory llnl located san francisco bay area eastbay premier applied science laboratory part national nuclear security administration nnsa within department energy doell nls mission strengthening national security developing applying cutting edge science technology engineering respond vision quality integrity technical excellence scientific issue national importance laboratory current annual budget one eight billion employing approximately six five hundred employee llnl affirmative action equal opportunity employer qualified applicant receive consideration employment without regard race color religion marital status national origin ancestry sex sexual orientation gender identity disability medical condition protected veteran status age citizenship characteristic protected law\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}",
"type": "dataframe",
"variable_name": "df_job"
},
"text/html": [
"\n",
" <div id=\"df-f7a565db-5e1f-44da-95c9-f8c355803b39\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>category</th>\n",
" <th>clean_data</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Data Scientist</td>\n",
" <td>job description junior data scientist ibm work...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Data Scientist</td>\n",
" <td>overall summary data scientist data science so...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Data Scientist</td>\n",
" <td>team data science team newly formed applied re...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Data Scientist</td>\n",
" <td>need junior data scientist ny area remote succ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Data Scientist</td>\n",
" <td>want help guide core business spot using insig...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-f7a565db-5e1f-44da-95c9-f8c355803b39')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-f7a565db-5e1f-44da-95c9-f8c355803b39 button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-f7a565db-5e1f-44da-95c9-f8c355803b39');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-d6c8b7e6-6d16-40bf-a3af-d2ceb8be0d7c\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-d6c8b7e6-6d16-40bf-a3af-d2ceb8be0d7c')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-d6c8b7e6-6d16-40bf-a3af-d2ceb8be0d7c button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"text/plain": [
" category clean_data\n",
"0 Data Scientist job description junior data scientist ibm work...\n",
"1 Data Scientist overall summary data scientist data science so...\n",
"2 Data Scientist team data science team newly formed applied re...\n",
"3 Data Scientist need junior data scientist ny area remote succ...\n",
"4 Data Scientist want help guide core business spot using insig..."
]
},
"execution_count": 417,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_job = pd.read_csv(\"/content/drive/MyDrive/Dataset/Compfest16_AIC/it job full.csv\")\n",
"df_job.drop(columns=['ID', 'Job Title', 'Description'], inplace=True)\n",
"df_job.rename(columns={'Query': 'category'}, inplace=True)\n",
"df_job.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "C-JCQ9hLxwEP",
"outputId": "a0599023-af9e-4d03-ee2d-2cd190406e2f"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"RangeIndex: 9376 entries, 0 to 9375\n",
"Data columns (total 2 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 category 9376 non-null object\n",
" 1 clean_data 9376 non-null object\n",
"dtypes: object(2)\n",
"memory usage: 146.6+ KB\n"
]
}
],
"source": [
"df_job.info()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "zuTDmbOzxyUq",
"outputId": "3755f693-8b68-41ca-d7ac-d38c25813973"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"category 49\n",
"clean_data 49\n",
"dtype: int64\n"
]
}
],
"source": [
"train_duplicates = df_job[df_job['clean_data'].duplicated()].count()\n",
"print(train_duplicates)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "_Qx55NOp2nRc"
},
"outputs": [],
"source": [
"df_job = df_job.drop_duplicates(subset='clean_data', keep='first')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "CtMf82b88XXE"
},
"outputs": [],
"source": [
"# Ensure you're working with a copy of the DataFrame to avoid the warning\n",
"df_job = df_job.copy()\n",
"\n",
"# Perform the replacements using .loc\n",
"df_job.loc[df_job['category'] == 'IT Systems Administrator', 'category'] = 'systems administrator'\n",
"df_job.loc[df_job['category'] == 'Database Administrator', 'category'] = 'database administrator'\n",
"df_job.loc[df_job['category'] == 'Data Scientist', 'category'] = 'data science'\n",
"df_job.loc[df_job['category'] == 'Data Analyst', 'category'] = 'data science'\n",
"df_job.loc[df_job['category'] == 'Information Security Analyst', 'category'] = 'security analyst'\n",
"df_job.loc[df_job['category'].isin(['Business Intelligence Analyst', 'Business Analyst']), 'category'] = 'business analyst'\n",
"df_job.loc[df_job['category'] == 'Full Stack Developer', 'category'] = 'web developer'"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "6oVhgPVV9RCu"
},
"outputs": [],
"source": [
"# FILTER BY AVAILABLE ROLE\n",
"df_job = df_job[df_job['category'].isin(['data science', 'business analyst', 'database administrator', 'systems administrator', 'security analyst', 'web developer'])]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "VrHkyHlS2wR7",
"outputId": "295ec92c-be85-418b-8db6-d0e4613d292f"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Index: 3103 entries, 0 to 9023\n",
"Data columns (total 2 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 category 3103 non-null object\n",
" 1 clean_data 3103 non-null object\n",
"dtypes: object(2)\n",
"memory usage: 72.7+ KB\n"
]
}
],
"source": [
"df_job.info()"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "vxQdxyLMAEAT"
},
"source": [
"# MERGE DATASET JOB DESCRIPTION"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "cjyasnSO220k",
"outputId": "2a1114da-478d-4a2f-b198-46eba9c570f3"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"RangeIndex: 3561 entries, 0 to 3560\n",
"Data columns (total 2 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 category 3561 non-null object\n",
" 1 clean_data 3561 non-null object\n",
"dtypes: object(2)\n",
"memory usage: 55.8+ KB\n"
]
}
],
"source": [
"df_job = pd.concat([df_job, df_joball], axis=0, ignore_index=True)\n",
"df_job.info()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "9EdoEC19DINP",
"outputId": "0bda06d0-8c26-4625-abb9-64ca40aec202"
},
"outputs": [
{
"data": {
"text/plain": [
"20"
]
},
"execution_count": 425,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_job['category'].value_counts().count()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "2STQ-MtaCeAJ",
"outputId": "a351eaba-0525-4f56-e54e-2282123e8db1"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"category 0\n",
"clean_data 0\n",
"dtype: int64\n"
]
}
],
"source": [
"train_duplicates = df_job[df_job['clean_data'].duplicated()].count()\n",
"print(train_duplicates)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "zYugEf8-DGv5"
},
"outputs": [],
"source": [
"df_job = df_job.drop_duplicates(subset='clean_data', keep='first')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "SbmttzbsDL8r",
"outputId": "864997f2-faf5-4105-975b-3e2bc935a3d9"
},
"outputs": [
{
"data": {
"text/plain": [
"20"
]
},
"execution_count": 428,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_job['category'].value_counts().count()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "m-1Pb-gKDX7i",
"outputId": "29985fab-d318-4752-8981-fae886def20f"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"RangeIndex: 3561 entries, 0 to 3560\n",
"Data columns (total 2 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 category 3561 non-null object\n",
" 1 clean_data 3561 non-null object\n",
"dtypes: object(2)\n",
"memory usage: 55.8+ KB\n"
]
}
],
"source": [
"df_job.info()"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "LAfwoBsVBpAc"
},
"source": [
"# MERGE DATASET RESUME"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "UuPEBYRwBk-I",
"outputId": "9fa783c3-b564-4560-9178-39b262375103"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"RangeIndex: 25318 entries, 0 to 25317\n",
"Data columns (total 3 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 category 25318 non-null object\n",
" 1 clean_data 25318 non-null object\n",
" 2 text_length 25318 non-null int64 \n",
"dtypes: int64(1), object(2)\n",
"memory usage: 593.5+ KB\n"
]
}
],
"source": [
"df_resume = pd.concat([df_resume, df_resumehug], axis=0, ignore_index=True)\n",
"df_resume.info()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "yxnWI6yDdpsx",
"outputId": "69f0868e-bb50-4dd2-ea42-cf4d2070c21c"
},
"outputs": [
{
"data": {
"text/plain": [
"20"
]
},
"execution_count": 431,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_resume['category'].value_counts().count()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 178
},
"id": "LSsjbuDGdwMF",
"outputId": "cb614b66-ccb6-4e31-b3a8-9498b264a1d0"
},
"outputs": [
{
"data": {
"text/html": [
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>0</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>category</th>\n",
" <td>4</td>\n",
" </tr>\n",
" <tr>\n",
" <th>clean_data</th>\n",
" <td>4</td>\n",
" </tr>\n",
" <tr>\n",
" <th>text_length</th>\n",
" <td>4</td>\n",
" </tr>\n",
" </tbody>\n",
"</table><br><label><b>dtype:</b> int64</label>"
],
"text/plain": [
"category 4\n",
"clean_data 4\n",
"text_length 4\n",
"dtype: int64"
]
},
"execution_count": 432,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_resume[df_resume['clean_data'].duplicated()].count()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "zSViWWzudzEJ"
},
"outputs": [],
"source": [
"df_resume = df_resume.drop_duplicates(subset='clean_data', keep='first')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "Ej8i98zzd2iY",
"outputId": "a00bbcfb-f8e7-4a3f-a0b8-5dc28792ca78"
},
"outputs": [
{
"data": {
"text/plain": [
"20"
]
},
"execution_count": 434,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_resume['category'].value_counts().count()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "5mTz8iiud6fV",
"outputId": "5d97106c-ee18-4e96-b30a-7aa2e889b03e"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Index: 25314 entries, 0 to 25317\n",
"Data columns (total 2 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 category 25314 non-null object\n",
" 1 clean_data 25314 non-null object\n",
"dtypes: object(2)\n",
"memory usage: 593.3+ KB\n"
]
}
],
"source": [
"df_resume = df_resume.drop(columns=['text_length'])\n",
"df_resume.info()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 175
},
"id": "_5HscermkCa_",
"outputId": "d30e9c4d-1a64-43bc-a745-a7bcda1dc510"
},
"outputs": [
{
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"summary": "{\n \"name\": \"df_resume\",\n \"rows\": 4,\n \"fields\": [\n {\n \"column\": \"category\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 4,\n \"samples\": [\n 20,\n \"5804\",\n \"25314\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"clean_data\",\n \"properties\": {\n \"dtype\": \"string\",\n \"num_unique_values\": 3,\n \"samples\": [\n \"25314\",\n \"skill programming language python panda numpy scipy scikit learn matplotlib sql java javascript jquery machine learning regression svm na\\u00e3 bayes knn random forest decision tree boosting technique cluster analysis word embedding sentiment analysis natural language processing dimensionality reduction topic modelling lda nmf pca neural net database visualization mysql sqlserver cassandra hbase elasticsearch d3 j dc j plotly kibana matplotlib ggplot tableau others regular expression html cs angular logstash kafka python flask git docker computer vision open cv understanding deep detail data science assurance associate data science assurance associate ernst young llp skill detail javascript experience twenty four month jquery experience twenty four month python experience detail company ernst young llp description fraud investigation dispute service assurance technology assisted review tar technology assisted review assist accelerating review process run analytics generate report core member team helped developing automated review platform tool scratch assisting discovery domain tool implement predictive coding topic modelling automating review resulting reduced labor cost time spent lawyer review understand end end flow solution research development classification model predictive analysis mining information present text data worked analyzing output precision monitoring entire tool tar assist predictive coding topic modelling evidence following ey standard developed classifier model order identify red flag fraud related issue tool technology python scikit learn tfidf word2vec doc2vec cosine similarity na\\u00e3 bayes lda nmf topic modelling vader text blob sentiment analysis matplot lib tableau dashboard reporting multiple data science analytic project usa client text analytics motor vehicle customer review data received customer feedback survey data past one year performed sentiment positive negative neutral time series analysis customer comment across category created heat map term survey category based frequency word extracted positive negative word across survey category plotted word cloud created customized tableau dashboard effective reporting visualization chatbot developed user friendly chatbot one product handle simple question hour operation reservation option chat bot serf entire product related question giving overview tool via qa platform also give recommendation response user question build chain relevant answer intelligence build pipeline question per user requirement asks relevant recommended question tool technology python natural language processing nltk spacy topic modelling sentiment analysis word embedding scikit learn javascript jquery sqlserver information governance organization make informed decision information store integrated information governance portfolio synthesizes intelligence across unstructured data source facilitates action ensure organization best positioned counter information risk scan data multiple source format parse different file format extract meta data information push result indexing elastic search created customized interactive dashboard using kibana preforming rot analysis data give information data help identify content either redundant outdated trivial preforming full text search analysis elastic search predefined method tag pii personally identifiable information social security number address name etc frequently targeted cyber attack tool technology python flask elastic search kibana fraud analytic platform fraud analytics investigative platform review red flag case fap fraud analytics investigative platform inbuilt case manager suite analytics various erp system used client interrogate accounting system identifying anomaly indicator fraud running advanced analytics tool technology html javascript sqlserver jquery cs bootstrap node j d3 j dc j\",\n \"1\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}",
"type": "dataframe"
},
"text/html": [
"\n",
" <div id=\"df-b162d3bc-3e44-4bfe-8178-60bac4f740ba\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>category</th>\n",
" <th>clean_data</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>count</th>\n",
" <td>25314</td>\n",
" <td>25314</td>\n",
" </tr>\n",
" <tr>\n",
" <th>unique</th>\n",
" <td>20</td>\n",
" <td>25314</td>\n",
" </tr>\n",
" <tr>\n",
" <th>top</th>\n",
" <td>software developer</td>\n",
" <td>skill programming language python panda numpy ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>freq</th>\n",
" <td>5804</td>\n",
" <td>1</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-b162d3bc-3e44-4bfe-8178-60bac4f740ba')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-b162d3bc-3e44-4bfe-8178-60bac4f740ba button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-b162d3bc-3e44-4bfe-8178-60bac4f740ba');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-2f1c7b22-0b94-486d-a275-591cedc8a496\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-2f1c7b22-0b94-486d-a275-591cedc8a496')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-2f1c7b22-0b94-486d-a275-591cedc8a496 button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"text/plain": [
" category clean_data\n",
"count 25314 25314\n",
"unique 20 25314\n",
"top software developer skill programming language python panda numpy ...\n",
"freq 5804 1"
]
},
"execution_count": 436,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_resume.describe()"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "8ESVu_4gd_-y"
},
"source": [
"# Merge training dataset"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "NTcgkyOyrc7u",
"outputId": "71c8569a-bcdd-454d-c3cc-50f224b2ee2e"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.series.Series'>\n",
"RangeIndex: 452 entries, 0 to 451\n",
"Series name: category\n",
"Non-Null Count Dtype \n",
"-------------- ----- \n",
"452 non-null object\n",
"dtypes: object(1)\n",
"memory usage: 3.7+ KB\n",
"None\n",
"<class 'pandas.core.series.Series'>\n",
"RangeIndex: 637 entries, 0 to 636\n",
"Series name: category\n",
"Non-Null Count Dtype \n",
"-------------- ----- \n",
"637 non-null object\n",
"dtypes: object(1)\n",
"memory usage: 5.1+ KB\n",
"None\n"
]
}
],
"source": [
"def sample_or_all(group):\n",
" return group.head(40)\n",
"\n",
"# Apply the function to each group\n",
"df_jd = df_job.groupby('category').apply(sample_or_all).reset_index(drop=True)\n",
"\n",
"print(df_jd['category'].info())\n",
"\n",
"# Apply the function to each group\n",
"df_res = df_resume.groupby('category').apply(sample_or_all).reset_index(drop=True)\n",
"\n",
"print(df_res['category'].info())"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 206
},
"id": "_d97s5ePt5NF",
"outputId": "4001fd0b-dc23-4c73-888b-8b0b105a9f0b"
},
"outputs": [
{
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"summary": "{\n \"name\": \"df_label1\",\n \"rows\": 15718,\n \"fields\": [\n {\n \"column\": \"clean_cv\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 637,\n \"samples\": [\n \"participated intra college cricket competition various sport event group dance college cultural programme education detail msc computer science pune pune university bsc computer science pune pune university hsc semi english pune maharashatra board ssc semi english pune maharashatra board dot net developer dot net developer skill detail html cs sql experience six month javascript experience le one year month sql two thousand twelve experience le one year detail company description\",\n \"network administrator span lnetworkspan span ladministratorspan greer sc work experience network administrator department education spartanburg sc present implemented local area network lan wide area network wan intranet extranets data network maintained network availability multiple networking environment administering cisco campusbased switching environment fiberbased copperbased ethernet connectivity 1gig 10gig installs manages maintains cisco switching component support campus wan distributed core architecture work cisco chassisbased system internet circuit termination equipment advanced cisco management tool managed cisco prime infrastructure analyze network health workflow access information security requirement performing router switch administration interface configuration switching protocol experience network router switch strong cisco switch router configuration experience workd knowledge tcpip dns acls arp radius ipv6 dhcp intrusion prevention authentication isp circuit connection developed execute test plan check infrastructure system performance performed network modeling analysis defined diagram design business technology initiative enforced policy standardizing system network technician u department state dc enterprise work changed password unlocked account need added device new softwareapplications need troubleshoot application freezing printer working hardware actively troubleshoot level issue transferred call appropriate technician assigned ticket filed issue sorted ticket answered field need supportedcomputer network operating system o include program record version linux microsoft windowsserver io alcatel xosaos designed installed maintained repaireddata communication link fiberoptic tactical fiberoptic cabling analyzedand evaluated system output designand manipulateddatabase information produce nonroutine reportsweekly aviation logistics specialist united state marine corp jacksonville nc deployed 26th meu deployed al assad worked buying team product ordered proactively minimize stock situation plan truckload stock transfer well order inventory maintain healthy product level evaluating buying report sale trend tracked managed adjustment 3pl hmi database reconcile change well investigate resolve discrepancy kept 3pl web portal updated change respond alert timely manner processed invoice 3pl ensure accurate timely resolution maintained regular proactive communication 3pl team participated buying meeting prepared question information skus need reviewed discussed based inventory analysis prepared analysis reporting overall statistic offered continuous improvement idea overall process needed used forklift microsoft office managed designated group packup kit aviation asset well group designated packup kit support aircraft squadron recommend approved asset stocking packup kit recommend consumable item inclusion commutated various customersrepresentatives via telephone email naval message rectify discrepancy ordered stocked required repairable consumables approved increase decrease loaded stock item record sir navy enterprise resource planning nerp database master record file mrf nalcomis database ensured picking ticket pulled delivered timely manner ensured complete order entered automated system determined problem may affectdelay material availability initiate corrective action conducted onload onboard offload inventory cycle count maintained local carcasstracking program accurately track account part material education bachelor bachelor science cybersecurity purdue university global west lafayette present associate associate degree diesel technology applied service management wyo techblairsville blairsville pa military service branch united state marine corp rank corporal certificationslicenses epa refrigerant recovery recycling certification core type present epa refrigerant recovery recycling certification present certified vsat installer basic vsat theory course introduction vsat frequency band satellite orbit vsat link terminology vsat latency rain fade sun outage solar transit event adaptive coding modulation acm linear polarization circular polarization decibel db dc voltage rf safety vsat glossary term tool equipment documentation hand tool cable software test equipment adaptor comms spare consumables ppe documentation checklist indoor equipment equipment rack ups scpc modem comtech paradise datacom tdma outdoor equipment low noise block lnb upconverter buc rf feed assembly antenna sat dish antenna offset antenna mount nonpenetrating mount rf coax ntype connector termination ftype connector termination power grounding stabilized autoaquire antenna stabilized antenna theory acu configuration sea tel antenna intellian spacetrack antenna remote site site survey arrival install location jha take work area dish alignment dish pointing elevation azimuth polarization remote commissioning compression point 1db point test cross polarization xpol voip data site documentation fault dish pointing dish movement low rx signal tx power problem slow data poor voice crosspol issue certified fiber optic technician certified premise cabling technician cpct\",\n \"cpa candidate strong financial accounting audit experience knowledge internal control enterprise risk management gl pl b reconciliation work paper cost cash control ap ar different accounting software participated coordination financial planning budget management function monitored analyzed operating result budget managed preparation official report actual revenue transfer expense financial outlook forecast collaborated department manager corporate staff develop business plan created guide financial control planning procedure exceptional communication interpersonal skill adept forming strong working relationship diverse internal external business partner account receivable payable payroll corporate expense analysis tax proficiency bookkeeping reporting journal entry account reconciliation entrusted process high responsibility task work independently demonstrated professionalism communicating department manager client supplier interacted wide variety personality developing business plan preparing report supervised role mapping workflow delegated task oversaw work coworkers enhanced leadership teamwork team coordination ability strong quantitative technical accounting skill independently driven accomplish immediate assigned goal long term company objective highlight analytical reasoning financial statement analysis strength regulatory reporting compliance testing knowledge understands foreign tax reporting budget forecasting expertise account reconciliation expert peoplesoft knowledge great plain familiarity complex problem solving excellent managerial technique strong organizational skill sec call reporting proficiency general ledger accounting expert customer relation superior research skill flexible team player advanced computer proficiency pc mac effective time management accomplishment formally recognized excellence achieved financial analysis budgeting forecasting experience volunteer accountant company name city state federal compliance review preparation corporation insurance partnership private foundation tax return coordinate fixed asset accountant necessary information correct tax depreciation calculation review tax depreciation calculation schedule accuracy analyze accrual account deductibility pertaining provision tax return assist completion tax footnote statement identify reportable transaction disclosure consolidated tax return prepare tax filing new entity dissolution liquidation assist audit request research implementation tax consequence participate implementation new provision fixed asset erp system accountant company name city state responsible various general accounting duty including account payable banking check request special project needed processed account payable including purchase order entry invoice approval entry follow vendor aging reporting processed check various credit assisted end close financial reporting performed reconciliation bank account including reconciliation deposit account receivable maintaining accounting record preparing account management information small business accountancy advising client business transaction merger acquisition corporate finance advising client area business improvement dealing insolvency detecting preventing fraud forensic accounting managing junior colleague accountant manager company name city state performed periodic budgeting modeling project cash requirement prepared financial regulatory report required law regulation addition opening office ajman sharjah prepared annual expense forecast including necessary recommended action required manage cost achieve budget executed account receivable reporting enhancement reconciliation procedure order integrate quickbooks accounting software vision software managed accounting operation accounting close account reporting reconciliation received recorded banked cash check voucher well reconciled record bank transaction developed online invoicing procedure several customer order streamline account receivable process reduced invoice turn performed complex general accounting function including preparation journal entry account analysis balance sheet reconciliation education master business administration accounting keller graduate school management city state master science accounting financial management keller graduate school management city state u certificate essential bookkeeping computerized accounting technology holding ny driving license type skill proficient microsoft office suite access quickbooks turbo tax vision accounting software peach tree dac easy sage peoplesoft advance microsoft excel\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"clean_jd\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 452,\n \"samples\": [\n \"design deliver solu bi sale partner mp expert sale academy program foundation continuous development program analyze day today need training sale team manage new solu bi sale partner mp orientation product training create training module solu bi sale partner mp stay date current market trend changing demand sale environment maintaining existing solu bi sale partner mp expert achieve target beyond target requirement bachelor degree human resource business administration marketing relevant field proven two year experience sale trainer similar role preferable ecommerce banking multi finance insurance mlm industry strong data excel formula hand experience elearning platform solid communication presentation ability ability design effective sale training program great interpersonal\",\n \"applicant position preferred experience finance accounting field breve tab experience using microsoft dynamic nav sap program self motivated personnel manage knowledge fast learner able work independently following qualification job summary responsible account transaction ensuring business target within area reached preparing documentation relating account payable account receivable tax bank account payable handle daily bookkeeping invoice payable bank payment voucher make sure ap balance correct prepare payment schedule based cash availability due date invoice communicate local vendor balance payable payment detail account receivable prepare bank receipt payment received fixed asset maintain fixed asset register update data regularly case correction disposal transfer asset tax calculate prepare tax payment tax article twenty three twenty six four two twenty five liaise tax officer external auditor bank prepare monthly bank reconciliation general accounting handle bookkeeping posting accrual depreciation entry amortization expense monthly basis others checking employee monthly claim handle petty cash transaction monitor cash advance ad hoc k task finance accounting manager requirement university graduate bachelor degree accounting major fresh graduate welcome 2 year experience finance accounting field breve tab preferred preferable experience using microsoft dynamic nav sap program strong skill microsoft office excel advance powerpoint word proficient english language important age maximum twenty seven year old\",\n \"benefit competitive salary medical dental vision insurance four hundred one k retirement saving plan life insurance tuition assistance wellness reimbursement travel insurance paid holiday vacation cybersecurity analyst role within information technology cybersecurity group support company cybersecurity service cybersecurity analyst protect confidentiality integrity availability central hudson information technical environment also support enterprise security goal objective responsibility perform security risk assessment system implementation project ensure proper security control configuration implemented testing effectiveness understand analyze existing network security architecture security best practice provide recommendation ensure alignment internal policy monitor analyze security alert including trend root cause analysis detect respond mitigate information security related vulnerability incident evaluate system specific vulnerability scan work various department remediate high risk item assist responding cybersecurity incident including investigating documenting incident according incident response plan coordinate external consultant security assessment including developing implementing action plan address finding perform duty required assigned may include risk compliance assignment qualification required associate degree computer information system computer science cybersecurity related field study least three year experience information cybersecurity technical support lieu degree least five year experience information cybersecurity technical support demonstrated understanding network topology architecture protocol addressing scheme across multiple platform knowledge demonstrated ability operate window based linux based security tool well developed written verbal communication presentation skill planning organizational skill proven interpersonal facilitation negotiation problem resolution skill must able work minimal supervision work well pressure must able adapt variety assignment preferred bachelor degree computer information system computer science information security information assurance management information system one following certification scism security caspcisspcsslporgiac experience following highly desirable network management understanding packet dump data parsing system log basic scripting language siem please go click search career opportunity button follow direction submit application upload resume desired position application sent via email u mail accepted phone call agency please reply held strict confidence qualified applicant receive consideration employment discriminated basis race color religion sex sexual orientation gender identity national origin age disability protected veteran status central hudson gas electric corporation take affirmative action support policy employ advance employment individual minority woman protected veteran individual disability v evra federal contractor\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"label\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0,\n \"min\": 1,\n \"max\": 1,\n \"num_unique_values\": 1,\n \"samples\": [\n 1\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}",
"type": "dataframe",
"variable_name": "df_label1"
},
"text/html": [
"\n",
" <div id=\"df-ca3f0a26-da1c-43d2-a9dd-74f6b6d7aa2a\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>clean_cv</th>\n",
" <th>clean_jd</th>\n",
" <th>label</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>minimum education requirement bachelor degree ...</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>hiring talented candidate join accounting team...</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>duty proficient working excel skilled working ...</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>job description responsible supervising checki...</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>qualification one bachelor degree finance acco...</td>\n",
" <td>1</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-ca3f0a26-da1c-43d2-a9dd-74f6b6d7aa2a')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-ca3f0a26-da1c-43d2-a9dd-74f6b6d7aa2a button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-ca3f0a26-da1c-43d2-a9dd-74f6b6d7aa2a');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-99b9750f-2cf1-4942-b3fa-40de4c481ef9\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-99b9750f-2cf1-4942-b3fa-40de4c481ef9')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-99b9750f-2cf1-4942-b3fa-40de4c481ef9 button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"text/plain": [
" clean_cv \\\n",
"0 result oriented organized bilingual accounting... \n",
"1 result oriented organized bilingual accounting... \n",
"2 result oriented organized bilingual accounting... \n",
"3 result oriented organized bilingual accounting... \n",
"4 result oriented organized bilingual accounting... \n",
"\n",
" clean_jd label \n",
"0 minimum education requirement bachelor degree ... 1 \n",
"1 hiring talented candidate join accounting team... 1 \n",
"2 duty proficient working excel skilled working ... 1 \n",
"3 job description responsible supervising checki... 1 \n",
"4 qualification one bachelor degree finance acco... 1 "
]
},
"execution_count": 490,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Rename columns for clarity\n",
"df_jd1 = df_jd.rename(columns={'clean_data': 'clean_jd'})\n",
"df_cv1 = df_res.rename(columns={'clean_data': 'clean_cv'})\n",
"\n",
"# Create all possible pairs of job descriptions and CVs\n",
"df_pairs1 = pd.merge(df_cv1.assign(key=1), df_jd1.assign(key=1), on='key').drop('key', axis=1)\n",
"\n",
"# Filter pairs where categories match\n",
"df_pairs1 = df_pairs1[df_pairs1['category_x'] == df_pairs1['category_y']]\n",
"\n",
"# Assign labels\n",
"df_pairs1['label'] = 1\n",
"\n",
"# Rename columns for clarity\n",
"df_pairs1 = df_pairs1.rename(columns={'category_x': 'category_cv', 'category_y': 'category_jd'})\n",
"\n",
"# Select the desired columns\n",
"df_label1 = df_pairs1[['clean_cv', 'clean_jd', 'label']]\n",
"\n",
"df_label1.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "znc72rJFx-jk",
"outputId": "e704f0ed-e968-46d4-dfce-26e441ee4309"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Index: 15718 entries, 0 to 287923\n",
"Data columns (total 3 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 clean_cv 15718 non-null object\n",
" 1 clean_jd 15718 non-null object\n",
" 2 label 15718 non-null int64 \n",
"dtypes: int64(1), object(2)\n",
"memory usage: 491.2+ KB\n"
]
}
],
"source": [
"df_label1.info()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "j80Lj-Idv-7i",
"outputId": "4330206e-da46-4727-c904-9b1d81b7e784"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.series.Series'>\n",
"RangeIndex: 119 entries, 0 to 118\n",
"Series name: category\n",
"Non-Null Count Dtype \n",
"-------------- ----- \n",
"119 non-null object\n",
"dtypes: object(1)\n",
"memory usage: 1.1+ KB\n",
"None\n",
"<class 'pandas.core.series.Series'>\n",
"RangeIndex: 137 entries, 0 to 136\n",
"Series name: category\n",
"Non-Null Count Dtype \n",
"-------------- ----- \n",
"137 non-null object\n",
"dtypes: object(1)\n",
"memory usage: 1.2+ KB\n",
"None\n"
]
}
],
"source": [
"def sample_or_all(group):\n",
" return group.head(7)\n",
"\n",
"# Apply the function to each group\n",
"df_jd = df_job.groupby('category').apply(sample_or_all).reset_index(drop=True)\n",
"\n",
"print(df_jd['category'].info())\n",
"\n",
"# Apply the function to each group\n",
"df_res = df_resume.groupby('category').apply(sample_or_all).reset_index(drop=True)\n",
"\n",
"print(df_res['category'].info())"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 206
},
"id": "1T6ms0zkxkRt",
"outputId": "bf799a25-9ae6-40eb-88e7-689f1e8834c1"
},
"outputs": [
{
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"summary": "{\n \"name\": \"df_label0\",\n \"rows\": 15485,\n \"fields\": [\n {\n \"column\": \"clean_cv\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 137,\n \"samples\": [\n \"java developer span span ldeveloperspan java developer starmount life baton rouge la work experience java developer starmount life baton rouge la present description starmount life insurance company part unum group offer consumer driven insurance solution group dental vision product customized approach valuable coverage option promote physical financial wellness help member protect planning responsibility involved phase software development life cycle sdlc including analysis design development testing project used spring boot create standalone application used eclipse integrated development environment coding debugging testing application module involved developing presentation layer application module using angular js2 xhtml html5 jquery ajax cs designed developed microservices business component using spring boot knowledge creation typescript reusable component service consume rest apis using component based architecture provided angular implemented spring boot service combination angular front end form microservice oriented application angular j used parse json file using rest web service configured based microservices spring boot used objectrelational mapping tool hibernate jpa achieve object database table persistency developed hibernate pojo class hibernate configuration file hibernate mapping file configured swaggerui registered micro service eureka server monitor service health check boot admin console analyze fix issue related rest web service application response implemented backend service using springboot worked developing rest service expose processed data service experience working nosql mongo db apache cassandra implemented spring security spring transaction application worked swagger rest json test data postman testing web service documentation web api experienced framework application like spring core spring aop mvc batch spring security spring boot integration micro service existing system architecture involved configuration spring framework hibernate mapping tool configured mq queue topic publish message topic consume published message worked docker deploy microservices modern container increase isolation experience spring ribbon kafka broker service handle heavy traffic used spring core annotation dependency injection used apache camel integrate spring framework developed communication different application using mq series jms spring integration configured monitored numerous cassandra nosql instance deployment micro service via aws beanstalk lambda worked daos pull data source database converted json format published kafka stream implemented continuous delivery pipeline docker jenkins github aws amis extensively followed test driven development implement application business logic work flow process integration application module followed pair programming analysis design development integration testing deploy application used xml xsd xpath jaxb message transformation mapping extensively followed agile scrum methodology xp implement application module configured used hudson jenkins tool continues integration build deploy application used building deploying web application websphere configuring dependency plugins resource wrote junit test case line application code performed validation environment javaj2ee jsp springboot hibernate soap rest jaxrs jms mq series sql plsql jaxb xml html5 cs javascript jquery ajax json angularjs eclipse jboss maven nexus aws db2 kafka cassandra micro service autosys uml agile xp jenkins github stash jira junit log4j soapui unix shell scripting java developer att california description att inc american multinational conglomerate holding company world largest telecommunication company second largest provider mobile telephone service largest provider fixed telephone service united state att communication responsibility implemented business layer using core java spring bean using dependency injection spring annotation implemented micro service using spring boot spring cloud microservices enabled discovery using eureka server used s3 bucket manage document management rds host database experience nosql database like cassandra mongo db created customized amis based already existing aws ec2 instance using create image functionality hence using snapshot disaster recovery optimized full text search function connecting nosql db like mongodb elastic search implemented mongodb database concept locking transaction index replication used rabbit mq queue implementation multithreaded synchronization process using jms queue consumption request used micro service architecture bootbased service interacting combination rest mq leveraging aws build test deploy micro service involved design development ui component using framework angularjs javascript html cs bootstrap experienced using kafka distributed publishersubscriber messaging system involved implementation enterprise integration web service legacy system using soap rest added security soap w security experience working kafka camel used spring security authentication authorization extensively set jenkins server build job provide automated build based polling git source control system consumed rest based micro service rest template based restful apis used docker possible production development environment fast possible interactive use responsible continuous integration ci continuous delivery cd process implementation using jenkins along linux shell script automate routine job created web service using spring rest controller return json frontend developed serverside service using java spring web service soap restful wsdl jaxb jaxrpc used soap ui tool testing web service connectivity environment java j2ee servletfilters jsp jstl springboot microservices spring security angular j cassandra javascript html cs bootstrap rest pivotal cloud foundry aws ec2 s3 eureka rabbit mq kafka soap restful nosql mongo db elastic search sts junit jenkins log4j jira docker git java developer bbva compass plano tx description bbva compass banking list largest bank united state part project role develop web application meet mortgage need client loan deposit multi loan deposit teller referral responsibility involved gathering analyzing business requirement converting technical specification developed class diagram sequence diagram part module design documentation agile delivery software using practice short iteration scrum involved developing distributed transactional secure portable application based java technology using ejb technology implemented presentation layer using spring framework developed javascript clientside validation used strut framework develop application based mvc design pattern developed user interface using jstl custom tag library htmlxhtml javascript cs used jdbc database connectivity sql server java api including jdbc jaxp jdom query patent data database transfer data various format soap used protocol send request response form xml message wsdl used expose web service using apache axis used j2ee design pattern like service locator data access object factory pattern mvc singleton pattern created consumed soaprestful web service restful web service used retrieve update data populated implemented persistence layer using hibernate use pojos represent persistence database table pojos serialized java class would business process implemented hibernate using spring framework created session factory dao hibernate transaction implemented using framework refactored code migrate hibernate2x version hibernate3 ie moved xml mapping annotation created ldap service user authentication authorization involve junit testing debugging bug fixing worked multithreading participated discussion business expert understand business requirement mold technical requirement toward development designed uml diagram using rational rose built functionality front end jsps take data model xml using xslt convert xsl html prepared test case integration testing used java message service jms reliable asynchronous exchange important information loan teller application designed developed message driven bean consumed message java message queue deployed component development environment system test environment uat environment used simple maven project archetype project developing application provided jar file ui application use test driven development approach used involved writing many unit integration test case environment java javascript hibernate strut jstl custom tag library html xhtml cs jdbc jaxp jdom plsql jms junit rational rose eclipse ide svn mysqljboss application server education bachelor\",\n \"outbound sale career overview call center representative versed customer support high call volume environment superior computer skill telephone etiquette core strength exceptional communication skill microsoft outlook word excel m window proficient adherence high customer service skilled call center operation standard adheres customer service procedure customer focused customer service award quick learner accomplishment customer service award quick learner work experience outbound sale company name city state answered average call per day addressing customer inquiry solving problem providing new product information described product customer accurately explained detail care merchandise politely assisted customer via telephone answered product question date knowledge sale store promotion ensured superior customer experience addressing customer concern demonstrating empathy resolving problem spot built long term customer relationship advised customer purchase promotion routinely answered customer question regarding merchandise pricing effectively managed high volume inbound outbound customer call evaluated consumer report basis managed customer call effectively efficiently complex fast paced challenging call center environment resolved service pricing technical problem customer asking clear specific question receptionist company name city state scheduled appointment registered patient distributed sample pharmaceutical prescribed professionally courteously verified appointment time patient adeptly managed multi line phone system pleasantly greeted patient verified patient eligibility claim status insurance agency prepared patient chart accurately neatly clinic diligently filed followed third party claim coordinated luncheon pharmaceutical representative researched cpt icd coding discrepancy compliance reimbursement accuracy resourcefully used various coding book procedure manual line encoders precisely evaluated verified benefit eligibility updated patient financial information guarantee accuracy treated patient family visitor peer staff provider pleasant courteous manner provider rep company name city state assisted maintenance medical chart electronic medical record filing op report test result home care form meticulously identified rectified inconsistency deficiency discrepancy medical documentation prepared patient chart accurately neatly clinic prepared patient chart pre admission consent form necessary researched question concern provider provided detailed response updated patient financial information guarantee accuracy organized department accordance administrative guideline order provide specified nursing service meet legal organizational medical staff guideline participated facility survey inspection made authorized governmental agency confirmed accurate completion form report admission transfer discharge resident initiated audit process evaluate thoroughness documentation maintenance facility standard cole manage vision twinsburg oh effectively managed high volume inbound outbound customer call accurately documented researched resolved customer service issue managed customer call effectively efficiently complex fast paced challenging call center environment managed high call volume tact professionalism educational background high school diploma north marion high high school diploma general north marion high school mannington wv diploma webster college city state diploma paralegal webster college fairmont wv office webster college city state degree office technology webster college fairmont wv diploma medical brown mackie college city state diploma medical office brown mackie college akron oh skill pricing sale inbound outbound audit documentation filing inspection maintenance medical record basis receptionist customer inquiry sale sale telephone benefit claim coding cpt icd icd icd9 coding icd coding multi line multi line phone multi line phone system phone system customer service retail sale award call center representative customer support etiquette excel microsoft outlook operation outlook word paralegal\",\n \"education detail tech electronics instrumentation engineering jaunpur uttar pradesh vbs purvanchal university automation tester automation tester tech mahindra skill detail company detail company tech mahindra description mumbai present project contribution tech mahindra project title payment gateway jio money role automation tester responsibility analyzing manual test case create automation script working redwood tool automation maintained regression pack per project requirement performed api testing created automation script api testing enhancing framework support cross functionality testing execute test case evaluate test result manual automated testing maintaining script per requirement adding new automated test improve automated test coverage functional regression performed automation testing analyzing test result report defect bug tracking system drive issue resolution preparation test data different test condition ensure coverage business rule performed sanity ad hoc regression testing participated defect triage meeting developer validate severity bug responsible tracking bug life cycle worked development team ensure testing issue resolved project description jio money jio payment gateway provides facility merchant user enable pay jio money feature include purchase bill payment load money short cash purchase pay merchant pay user etc inscripts project title cometchat role automation tester responsibility created automation framework bug report using page object data driven framework automated email test script handling qa ticket coordinate development team project description cometchat chat solution site app help grow customer base exponentially drastically increase time spent user cometchat several useful feature like one one chat group chat audio video call screen sharing game real time chat translation mobile apps desktop messenger project title web tracker role sr software tester responsibility creation test scenario test script test case execution test case ad hoc manual testing regression testing automation testing test script using tool selenium webdriver project description accomplishment web tracker aim provide time sheet facility customer release contains following feature related employee time tracking task assignment tracker submission reminder approval notification hayaan infotech project title real estate agent website role sr software tester responsibility creation test scenario test case execution test case smoke testing black box testing ad hoc manual testing regression testing project description project web page graphical html representation neighborhood made different type house apartment several sale people around country responsible selling house apartment web site web site help user purchase request estate property project title commerce website role software tester responsibility creation test scenario test case execution test case ad hoc manual testing smoke testing black box testing regression testing project description project includes order processing invoice generated printing packaging slip order payment return material authorization label sheet printing order processing application big main entity involved order processing customer sale person admin project title enquiry invoice system role software tester responsibility creation test scenario test case execution test case smoke testing black box testing ad hoc manual testing regression testing project description application browser based application reduce investment hardware software proposed system contains following module offer database management reporting various activity company application comprise following module inquiry estimation quotation negotiation purchase order system delivery system mi report company inscripts pvt ltd description company haayan infotech pvt ltd description\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"clean_jd\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 119,\n \"samples\": [\n \"ensure recruitment selection process required company usermanager making monthly report monthly annual recruitment update op regulation regarding recruitment selection process liaise third party headhunter outsourcing university college regarding recruitment certain level hiring process assist new hire board handle payroll process attendance time calculation liaise hr coordinator develop effective efficient hr system including performance appraisal kpi translation requirement candidate must posse least bachelor degree psychology human resource management mandarin fluency oral written least two year working experience related field required position required skill psychological test scoring interview labor law kpi preferably staff non management non supervisor specialized human resource equivalent willing business travel recruitment certified hr staff recruitment selection staff\",\n \"job working closely cto drive product vision prioritize roadmap based market opportunity manage data driven prioritization ensure timely execution engage closely drive collaboration cross functional team engineer designer business develop improvement solution support growth product responsibility lead product development process vybe score product set product roadmap spring goal prioritize backlog gain deep understanding influencers user need user research client feedback partner closely engineering operation business team solve practical challenge rapidly produce multiple concept prototype industry standard tool setup success metric communicate key stakeholder requirement two four year full time work experience product management onab2c consumer facing product bsc computer science engineering similar field plus hand experience managing stage product lifecycle extensively used data user research improve product\",\n \"detailed description minimum qualification please refer website duty description detailed description duty description please refer website additional comment starting salary fifty six six hundred four zero resume evaluated determine whether candidate proceed interview phase process\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"label\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0,\n \"min\": 0,\n \"max\": 0,\n \"num_unique_values\": 1,\n \"samples\": [\n 0\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}",
"type": "dataframe",
"variable_name": "df_label0"
},
"text/html": [
"\n",
" <div id=\"df-f2df23be-b773-4111-b845-f3a2aa9fb917\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>clean_cv</th>\n",
" <th>clean_jd</th>\n",
" <th>label</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>requirement candidate must posse least bachelo...</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>develop test plan mind map test script test da...</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>junior business planning analyst gucci new yor...</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>10</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>analyzes make recommendation revenue cycle bus...</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>11</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>detailed description minimum qualification ple...</td>\n",
" <td>0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-f2df23be-b773-4111-b845-f3a2aa9fb917')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-f2df23be-b773-4111-b845-f3a2aa9fb917 button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-f2df23be-b773-4111-b845-f3a2aa9fb917');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-f8e2c81d-cbfb-41f5-ba9f-78e12a401c9a\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-f8e2c81d-cbfb-41f5-ba9f-78e12a401c9a')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-f8e2c81d-cbfb-41f5-ba9f-78e12a401c9a button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"text/plain": [
" clean_cv \\\n",
"7 result oriented organized bilingual accounting... \n",
"8 result oriented organized bilingual accounting... \n",
"9 result oriented organized bilingual accounting... \n",
"10 result oriented organized bilingual accounting... \n",
"11 result oriented organized bilingual accounting... \n",
"\n",
" clean_jd label \n",
"7 requirement candidate must posse least bachelo... 0 \n",
"8 develop test plan mind map test script test da... 0 \n",
"9 junior business planning analyst gucci new yor... 0 \n",
"10 analyzes make recommendation revenue cycle bus... 0 \n",
"11 detailed description minimum qualification ple... 0 "
]
},
"execution_count": 486,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Rename columns for clarity\n",
"df_jd2 = df_jd.rename(columns={'clean_data': 'clean_jd'})\n",
"df_cv2 = df_res.rename(columns={'clean_data': 'clean_cv'})\n",
"\n",
"# Create all possible pairs of job descriptions and CVs\n",
"df_pairs2 = pd.merge(df_cv2.assign(key=1), df_jd2.assign(key=1), on='key').drop('key', axis=1)\n",
"\n",
"# Filter pairs where categories match\n",
"df_pairs2 = df_pairs2[df_pairs2['category_x'] != df_pairs2['category_y']]\n",
"\n",
"# Assign labels\n",
"df_pairs2['label'] = 0\n",
"\n",
"# Rename columns for clarity\n",
"df_pairs2 = df_pairs2.rename(columns={'category_x': 'category_cv', 'category_y': 'category_jd'})\n",
"\n",
"# Select the desired columns\n",
"df_label0 = df_pairs2[['clean_cv', 'clean_jd', 'label']]\n",
"\n",
"df_label0.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "caRYiBhLxsIE",
"outputId": "43844153-00de-47ad-c775-673fd0bb3cf7"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"Index: 15485 entries, 7 to 16295\n",
"Data columns (total 3 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 clean_cv 15485 non-null object\n",
" 1 clean_jd 15485 non-null object\n",
" 2 label 15485 non-null int64 \n",
"dtypes: int64(1), object(2)\n",
"memory usage: 483.9+ KB\n"
]
}
],
"source": [
"df_label0.info()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 206
},
"id": "b5lud2i2xuoZ",
"outputId": "d8f02819-586d-4e24-8783-a108586fd372"
},
"outputs": [
{
"data": {
"application/vnd.google.colaboratory.intrinsic+json": {
"summary": "{\n \"name\": \"df\",\n \"rows\": 31203,\n \"fields\": [\n {\n \"column\": \"clean_cv\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 637,\n \"samples\": [\n \"participated intra college cricket competition various sport event group dance college cultural programme education detail msc computer science pune pune university bsc computer science pune pune university hsc semi english pune maharashatra board ssc semi english pune maharashatra board dot net developer dot net developer skill detail html cs sql experience six month javascript experience le one year month sql two thousand twelve experience le one year detail company description\",\n \"network administrator span lnetworkspan span ladministratorspan greer sc work experience network administrator department education spartanburg sc present implemented local area network lan wide area network wan intranet extranets data network maintained network availability multiple networking environment administering cisco campusbased switching environment fiberbased copperbased ethernet connectivity 1gig 10gig installs manages maintains cisco switching component support campus wan distributed core architecture work cisco chassisbased system internet circuit termination equipment advanced cisco management tool managed cisco prime infrastructure analyze network health workflow access information security requirement performing router switch administration interface configuration switching protocol experience network router switch strong cisco switch router configuration experience workd knowledge tcpip dns acls arp radius ipv6 dhcp intrusion prevention authentication isp circuit connection developed execute test plan check infrastructure system performance performed network modeling analysis defined diagram design business technology initiative enforced policy standardizing system network technician u department state dc enterprise work changed password unlocked account need added device new softwareapplications need troubleshoot application freezing printer working hardware actively troubleshoot level issue transferred call appropriate technician assigned ticket filed issue sorted ticket answered field need supportedcomputer network operating system o include program record version linux microsoft windowsserver io alcatel xosaos designed installed maintained repaireddata communication link fiberoptic tactical fiberoptic cabling analyzedand evaluated system output designand manipulateddatabase information produce nonroutine reportsweekly aviation logistics specialist united state marine corp jacksonville nc deployed 26th meu deployed al assad worked buying team product ordered proactively minimize stock situation plan truckload stock transfer well order inventory maintain healthy product level evaluating buying report sale trend tracked managed adjustment 3pl hmi database reconcile change well investigate resolve discrepancy kept 3pl web portal updated change respond alert timely manner processed invoice 3pl ensure accurate timely resolution maintained regular proactive communication 3pl team participated buying meeting prepared question information skus need reviewed discussed based inventory analysis prepared analysis reporting overall statistic offered continuous improvement idea overall process needed used forklift microsoft office managed designated group packup kit aviation asset well group designated packup kit support aircraft squadron recommend approved asset stocking packup kit recommend consumable item inclusion commutated various customersrepresentatives via telephone email naval message rectify discrepancy ordered stocked required repairable consumables approved increase decrease loaded stock item record sir navy enterprise resource planning nerp database master record file mrf nalcomis database ensured picking ticket pulled delivered timely manner ensured complete order entered automated system determined problem may affectdelay material availability initiate corrective action conducted onload onboard offload inventory cycle count maintained local carcasstracking program accurately track account part material education bachelor bachelor science cybersecurity purdue university global west lafayette present associate associate degree diesel technology applied service management wyo techblairsville blairsville pa military service branch united state marine corp rank corporal certificationslicenses epa refrigerant recovery recycling certification core type present epa refrigerant recovery recycling certification present certified vsat installer basic vsat theory course introduction vsat frequency band satellite orbit vsat link terminology vsat latency rain fade sun outage solar transit event adaptive coding modulation acm linear polarization circular polarization decibel db dc voltage rf safety vsat glossary term tool equipment documentation hand tool cable software test equipment adaptor comms spare consumables ppe documentation checklist indoor equipment equipment rack ups scpc modem comtech paradise datacom tdma outdoor equipment low noise block lnb upconverter buc rf feed assembly antenna sat dish antenna offset antenna mount nonpenetrating mount rf coax ntype connector termination ftype connector termination power grounding stabilized autoaquire antenna stabilized antenna theory acu configuration sea tel antenna intellian spacetrack antenna remote site site survey arrival install location jha take work area dish alignment dish pointing elevation azimuth polarization remote commissioning compression point 1db point test cross polarization xpol voip data site documentation fault dish pointing dish movement low rx signal tx power problem slow data poor voice crosspol issue certified fiber optic technician certified premise cabling technician cpct\",\n \"cpa candidate strong financial accounting audit experience knowledge internal control enterprise risk management gl pl b reconciliation work paper cost cash control ap ar different accounting software participated coordination financial planning budget management function monitored analyzed operating result budget managed preparation official report actual revenue transfer expense financial outlook forecast collaborated department manager corporate staff develop business plan created guide financial control planning procedure exceptional communication interpersonal skill adept forming strong working relationship diverse internal external business partner account receivable payable payroll corporate expense analysis tax proficiency bookkeeping reporting journal entry account reconciliation entrusted process high responsibility task work independently demonstrated professionalism communicating department manager client supplier interacted wide variety personality developing business plan preparing report supervised role mapping workflow delegated task oversaw work coworkers enhanced leadership teamwork team coordination ability strong quantitative technical accounting skill independently driven accomplish immediate assigned goal long term company objective highlight analytical reasoning financial statement analysis strength regulatory reporting compliance testing knowledge understands foreign tax reporting budget forecasting expertise account reconciliation expert peoplesoft knowledge great plain familiarity complex problem solving excellent managerial technique strong organizational skill sec call reporting proficiency general ledger accounting expert customer relation superior research skill flexible team player advanced computer proficiency pc mac effective time management accomplishment formally recognized excellence achieved financial analysis budgeting forecasting experience volunteer accountant company name city state federal compliance review preparation corporation insurance partnership private foundation tax return coordinate fixed asset accountant necessary information correct tax depreciation calculation review tax depreciation calculation schedule accuracy analyze accrual account deductibility pertaining provision tax return assist completion tax footnote statement identify reportable transaction disclosure consolidated tax return prepare tax filing new entity dissolution liquidation assist audit request research implementation tax consequence participate implementation new provision fixed asset erp system accountant company name city state responsible various general accounting duty including account payable banking check request special project needed processed account payable including purchase order entry invoice approval entry follow vendor aging reporting processed check various credit assisted end close financial reporting performed reconciliation bank account including reconciliation deposit account receivable maintaining accounting record preparing account management information small business accountancy advising client business transaction merger acquisition corporate finance advising client area business improvement dealing insolvency detecting preventing fraud forensic accounting managing junior colleague accountant manager company name city state performed periodic budgeting modeling project cash requirement prepared financial regulatory report required law regulation addition opening office ajman sharjah prepared annual expense forecast including necessary recommended action required manage cost achieve budget executed account receivable reporting enhancement reconciliation procedure order integrate quickbooks accounting software vision software managed accounting operation accounting close account reporting reconciliation received recorded banked cash check voucher well reconciled record bank transaction developed online invoicing procedure several customer order streamline account receivable process reduced invoice turn performed complex general accounting function including preparation journal entry account analysis balance sheet reconciliation education master business administration accounting keller graduate school management city state master science accounting financial management keller graduate school management city state u certificate essential bookkeeping computerized accounting technology holding ny driving license type skill proficient microsoft office suite access quickbooks turbo tax vision accounting software peach tree dac easy sage peoplesoft advance microsoft excel\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"clean_jd\",\n \"properties\": {\n \"dtype\": \"category\",\n \"num_unique_values\": 452,\n \"samples\": [\n \"design deliver solu bi sale partner mp expert sale academy program foundation continuous development program analyze day today need training sale team manage new solu bi sale partner mp orientation product training create training module solu bi sale partner mp stay date current market trend changing demand sale environment maintaining existing solu bi sale partner mp expert achieve target beyond target requirement bachelor degree human resource business administration marketing relevant field proven two year experience sale trainer similar role preferable ecommerce banking multi finance insurance mlm industry strong data excel formula hand experience elearning platform solid communication presentation ability ability design effective sale training program great interpersonal\",\n \"applicant position preferred experience finance accounting field breve tab experience using microsoft dynamic nav sap program self motivated personnel manage knowledge fast learner able work independently following qualification job summary responsible account transaction ensuring business target within area reached preparing documentation relating account payable account receivable tax bank account payable handle daily bookkeeping invoice payable bank payment voucher make sure ap balance correct prepare payment schedule based cash availability due date invoice communicate local vendor balance payable payment detail account receivable prepare bank receipt payment received fixed asset maintain fixed asset register update data regularly case correction disposal transfer asset tax calculate prepare tax payment tax article twenty three twenty six four two twenty five liaise tax officer external auditor bank prepare monthly bank reconciliation general accounting handle bookkeeping posting accrual depreciation entry amortization expense monthly basis others checking employee monthly claim handle petty cash transaction monitor cash advance ad hoc k task finance accounting manager requirement university graduate bachelor degree accounting major fresh graduate welcome 2 year experience finance accounting field breve tab preferred preferable experience using microsoft dynamic nav sap program strong skill microsoft office excel advance powerpoint word proficient english language important age maximum twenty seven year old\",\n \"benefit competitive salary medical dental vision insurance four hundred one k retirement saving plan life insurance tuition assistance wellness reimbursement travel insurance paid holiday vacation cybersecurity analyst role within information technology cybersecurity group support company cybersecurity service cybersecurity analyst protect confidentiality integrity availability central hudson information technical environment also support enterprise security goal objective responsibility perform security risk assessment system implementation project ensure proper security control configuration implemented testing effectiveness understand analyze existing network security architecture security best practice provide recommendation ensure alignment internal policy monitor analyze security alert including trend root cause analysis detect respond mitigate information security related vulnerability incident evaluate system specific vulnerability scan work various department remediate high risk item assist responding cybersecurity incident including investigating documenting incident according incident response plan coordinate external consultant security assessment including developing implementing action plan address finding perform duty required assigned may include risk compliance assignment qualification required associate degree computer information system computer science cybersecurity related field study least three year experience information cybersecurity technical support lieu degree least five year experience information cybersecurity technical support demonstrated understanding network topology architecture protocol addressing scheme across multiple platform knowledge demonstrated ability operate window based linux based security tool well developed written verbal communication presentation skill planning organizational skill proven interpersonal facilitation negotiation problem resolution skill must able work minimal supervision work well pressure must able adapt variety assignment preferred bachelor degree computer information system computer science information security information assurance management information system one following certification scism security caspcisspcsslporgiac experience following highly desirable network management understanding packet dump data parsing system log basic scripting language siem please go click search career opportunity button follow direction submit application upload resume desired position application sent via email u mail accepted phone call agency please reply held strict confidence qualified applicant receive consideration employment discriminated basis race color religion sex sexual orientation gender identity national origin age disability protected veteran status central hudson gas electric corporation take affirmative action support policy employ advance employment individual minority woman protected veteran individual disability v evra federal contractor\"\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n },\n {\n \"column\": \"label\",\n \"properties\": {\n \"dtype\": \"number\",\n \"std\": 0,\n \"min\": 0,\n \"max\": 1,\n \"num_unique_values\": 2,\n \"samples\": [\n 0,\n 1\n ],\n \"semantic_type\": \"\",\n \"description\": \"\"\n }\n }\n ]\n}",
"type": "dataframe",
"variable_name": "df"
},
"text/html": [
"\n",
" <div id=\"df-b0cd304c-9ee0-47ad-b7ef-0b74f2c74a9a\" class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>clean_cv</th>\n",
" <th>clean_jd</th>\n",
" <th>label</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>minimum education requirement bachelor degree ...</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>hiring talented candidate join accounting team...</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>duty proficient working excel skilled working ...</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>job description responsible supervising checki...</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>result oriented organized bilingual accounting...</td>\n",
" <td>qualification one bachelor degree finance acco...</td>\n",
" <td>1</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <div class=\"colab-df-buttons\">\n",
"\n",
" <div class=\"colab-df-container\">\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-b0cd304c-9ee0-47ad-b7ef-0b74f2c74a9a')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
"\n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
" <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
" </svg>\n",
" </button>\n",
"\n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" .colab-df-buttons div {\n",
" margin-bottom: 4px;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-b0cd304c-9ee0-47ad-b7ef-0b74f2c74a9a button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-b0cd304c-9ee0-47ad-b7ef-0b74f2c74a9a');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
"\n",
"\n",
"<div id=\"df-1735967c-63b7-4922-ab15-e14ac9ac3e8e\">\n",
" <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-1735967c-63b7-4922-ab15-e14ac9ac3e8e')\"\n",
" title=\"Suggest charts\"\n",
" style=\"display:none;\">\n",
"\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <g>\n",
" <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
" </g>\n",
"</svg>\n",
" </button>\n",
"\n",
"<style>\n",
" .colab-df-quickchart {\n",
" --bg-color: #E8F0FE;\n",
" --fill-color: #1967D2;\n",
" --hover-bg-color: #E2EBFA;\n",
" --hover-fill-color: #174EA6;\n",
" --disabled-fill-color: #AAA;\n",
" --disabled-bg-color: #DDD;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-quickchart {\n",
" --bg-color: #3B4455;\n",
" --fill-color: #D2E3FC;\n",
" --hover-bg-color: #434B5C;\n",
" --hover-fill-color: #FFFFFF;\n",
" --disabled-bg-color: #3B4455;\n",
" --disabled-fill-color: #666;\n",
" }\n",
"\n",
" .colab-df-quickchart {\n",
" background-color: var(--bg-color);\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: var(--fill-color);\n",
" height: 32px;\n",
" padding: 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-quickchart:hover {\n",
" background-color: var(--hover-bg-color);\n",
" box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: var(--button-hover-fill-color);\n",
" }\n",
"\n",
" .colab-df-quickchart-complete:disabled,\n",
" .colab-df-quickchart-complete:disabled:hover {\n",
" background-color: var(--disabled-bg-color);\n",
" fill: var(--disabled-fill-color);\n",
" box-shadow: none;\n",
" }\n",
"\n",
" .colab-df-spinner {\n",
" border: 2px solid var(--fill-color);\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" animation:\n",
" spin 1s steps(1) infinite;\n",
" }\n",
"\n",
" @keyframes spin {\n",
" 0% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" border-left-color: var(--fill-color);\n",
" }\n",
" 20% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 30% {\n",
" border-color: transparent;\n",
" border-left-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 40% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-top-color: var(--fill-color);\n",
" }\n",
" 60% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" }\n",
" 80% {\n",
" border-color: transparent;\n",
" border-right-color: var(--fill-color);\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" 90% {\n",
" border-color: transparent;\n",
" border-bottom-color: var(--fill-color);\n",
" }\n",
" }\n",
"</style>\n",
"\n",
" <script>\n",
" async function quickchart(key) {\n",
" const quickchartButtonEl =\n",
" document.querySelector('#' + key + ' button');\n",
" quickchartButtonEl.disabled = true; // To prevent multiple clicks.\n",
" quickchartButtonEl.classList.add('colab-df-spinner');\n",
" try {\n",
" const charts = await google.colab.kernel.invokeFunction(\n",
" 'suggestCharts', [key], {});\n",
" } catch (error) {\n",
" console.error('Error during call to suggestCharts:', error);\n",
" }\n",
" quickchartButtonEl.classList.remove('colab-df-spinner');\n",
" quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
" }\n",
" (() => {\n",
" let quickchartButtonEl =\n",
" document.querySelector('#df-1735967c-63b7-4922-ab15-e14ac9ac3e8e button');\n",
" quickchartButtonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
" })();\n",
" </script>\n",
"</div>\n",
"\n",
" </div>\n",
" </div>\n"
],
"text/plain": [
" clean_cv \\\n",
"0 result oriented organized bilingual accounting... \n",
"1 result oriented organized bilingual accounting... \n",
"2 result oriented organized bilingual accounting... \n",
"3 result oriented organized bilingual accounting... \n",
"4 result oriented organized bilingual accounting... \n",
"\n",
" clean_jd label \n",
"0 minimum education requirement bachelor degree ... 1 \n",
"1 hiring talented candidate join accounting team... 1 \n",
"2 duty proficient working excel skilled working ... 1 \n",
"3 job description responsible supervising checki... 1 \n",
"4 qualification one bachelor degree finance acco... 1 "
]
},
"execution_count": 492,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df = pd.concat([df_label1, df_label0], axis=0, ignore_index=True)\n",
"df.head()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "OsRyJW4dyOpg",
"outputId": "04b7c791-8a21-4233-fb7c-9456565305c2"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"RangeIndex: 31203 entries, 0 to 31202\n",
"Data columns (total 3 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 clean_cv 31203 non-null object\n",
" 1 clean_jd 31203 non-null object\n",
" 2 label 31203 non-null int64 \n",
"dtypes: int64(1), object(2)\n",
"memory usage: 731.4+ KB\n"
]
}
],
"source": [
"df.info()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 178
},
"id": "z1WRGkqMyPkz",
"outputId": "cfc7980d-d7f2-409f-f0de-019e3bd2620d"
},
"outputs": [
{
"data": {
"text/html": [
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>count</th>\n",
" </tr>\n",
" <tr>\n",
" <th>label</th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>15718</td>\n",
" </tr>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>15485</td>\n",
" </tr>\n",
" </tbody>\n",
"</table><br><label><b>dtype:</b> int64</label>"
],
"text/plain": [
"label\n",
"1 15718\n",
"0 15485\n",
"Name: count, dtype: int64"
]
},
"execution_count": 494,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df['label'].value_counts()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "NJXX9fIxySWp"
},
"outputs": [],
"source": [
"df.to_csv(\"/content/drive/MyDrive/Dataset/Compfest16_AIC/data_supervised.csv\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "0TK9vf9eykJ5"
},
"outputs": [],
"source": []
}
],
"metadata": {
"colab": {
"authorship_tag": "ABX9TyPTRlP+VT+7KWR18Msj2Hig",
"include_colab_link": true,
"mount_file_id": "1fkiLuMgXUvkJzbGbXxBuFX4ZiNoyuHL4",
"provenance": []
},
"kernelspec": {
"display_name": "Python 3",
"name": "python3"
},
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|