Instructions to use chirag2706/gpt2_code_generation_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use chirag2706/gpt2_code_generation_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="chirag2706/gpt2_code_generation_model")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("chirag2706/gpt2_code_generation_model") model = AutoModelForCausalLM.from_pretrained("chirag2706/gpt2_code_generation_model", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use chirag2706/gpt2_code_generation_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "chirag2706/gpt2_code_generation_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "chirag2706/gpt2_code_generation_model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/chirag2706/gpt2_code_generation_model
- SGLang
How to use chirag2706/gpt2_code_generation_model with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "chirag2706/gpt2_code_generation_model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "chirag2706/gpt2_code_generation_model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "chirag2706/gpt2_code_generation_model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "chirag2706/gpt2_code_generation_model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use chirag2706/gpt2_code_generation_model with Docker Model Runner:
docker model run hf.co/chirag2706/gpt2_code_generation_model
File size: 433,817 Bytes
b4567c3 | 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 | 2020-06-11 20:32:12,836 - crisis_transformers.trainer - INFO - Use pytorch device: cuda, with gpu_number=2
2020-06-11 20:32:14,855 - crisis_transformers.trainer - INFO - Warmup-steps: 55716
2020-06-11 20:32:14,856 - crisis_transformers.trainer - INFO - ***** Running training *****
2020-06-11 20:32:14,857 - crisis_transformers.trainer - INFO - Num of training examples (actually iterations per epoch for Iterable Dataset) = 69642
2020-06-11 20:32:14,857 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 20:32:14,857 - crisis_transformers.trainer - INFO - Steps per Epoch = 17411 or iterations per epoch = 17411
2020-06-11 20:32:14,857 - crisis_transformers.trainer - INFO - Num of Epochs = 16
2020-06-11 20:32:14,857 - crisis_transformers.trainer - INFO - Best score (perplexity) = -inf
2020-06-11 20:32:14,857 - crisis_transformers.trainer - INFO - Eval every 400 steps or every 400 iterations
2020-06-11 20:32:14,857 - crisis_transformers.trainer - INFO - Early stop = 20
2020-06-11 20:32:14,857 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 20:32:14,857 - crisis_transformers.trainer - INFO - Total optimization steps = 278576
2020-06-11 20:32:14,857 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 20:39:27,466 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=400
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Best score (perplexity) = -96754087231488.0
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 13s
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Steps = 400/278576
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - dev_loss = 32.203194 || dev_eval_scores = {'perplexity': 96754087231488.0}
2020-06-11 20:39:28,626 - crisis_transformers.trainer - INFO - train_loss = 34.87022018432617
2020-06-11 20:39:28,627 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 20:46:40,538 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=800
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Best score (perplexity) = -11848.5537109375
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-11 20:46:44,659 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 20:46:44,660 - crisis_transformers.trainer - INFO - Steps = 800/278576
2020-06-11 20:46:44,660 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 20:46:44,660 - crisis_transformers.trainer - INFO - dev_loss = 9.379961 || dev_eval_scores = {'perplexity': 11848.5537109375}
2020-06-11 20:46:44,660 - crisis_transformers.trainer - INFO - train_loss = 22.25151824951172
2020-06-11 20:46:44,660 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 20:53:56,085 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=1200
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Best score (perplexity) = -82.30923461914062
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Steps = 1200/278576
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 20:53:59,828 - crisis_transformers.trainer - INFO - dev_loss = 4.410483 || dev_eval_scores = {'perplexity': 82.30923461914062}
2020-06-11 20:53:59,829 - crisis_transformers.trainer - INFO - train_loss = 15.844202995300293
2020-06-11 20:53:59,829 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Best score (perplexity) = -82.30923461914062
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 21:01:11,585 - crisis_transformers.trainer - INFO - Steps = 1600/278576
2020-06-11 21:01:11,586 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 21:01:11,586 - crisis_transformers.trainer - INFO - dev_loss = 4.528600 || dev_eval_scores = {'perplexity': 92.62876892089844}
2020-06-11 21:01:11,586 - crisis_transformers.trainer - INFO - train_loss = 12.387160301208496
2020-06-11 21:01:11,586 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 21:08:22,662 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:08:26,396 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=2000
2020-06-11 21:08:26,396 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Best score (perplexity) = -13.568625450134277
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Steps = 2000/278576
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - dev_loss = 2.607760 || dev_eval_scores = {'perplexity': 13.568625450134277}
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO - train_loss = 10.256034851074219
2020-06-11 21:08:26,397 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 21:15:38,560 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:15:42,293 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=2400
2020-06-11 21:15:42,293 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 21:15:42,293 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Best score (perplexity) = -8.842060089111328
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Steps = 2400/278576
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - dev_loss = 2.179520 || dev_eval_scores = {'perplexity': 8.842060089111328}
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO - train_loss = 8.810672760009766
2020-06-11 21:15:42,294 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 21:22:54,836 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=2800
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Best score (perplexity) = -6.2656636238098145
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Steps = 2800/278576
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - dev_loss = 1.835085 || dev_eval_scores = {'perplexity': 6.2656636238098145}
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO - train_loss = 7.770569324493408
2020-06-11 21:22:58,961 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 21:30:11,274 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 21:30:11,274 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Best score (perplexity) = -6.2656636238098145
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Steps = 3200/278576
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - dev_loss = 1.864289 || dev_eval_scores = {'perplexity': 6.451348781585693}
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO - train_loss = 6.985172748565674
2020-06-11 21:30:11,275 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 21:37:22,915 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=3600
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Best score (perplexity) = -4.507174015045166
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Steps = 3600/278576
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 21:37:27,050 - crisis_transformers.trainer - INFO - dev_loss = 1.505670 || dev_eval_scores = {'perplexity': 4.507174015045166}
2020-06-11 21:37:27,051 - crisis_transformers.trainer - INFO - train_loss = 6.368422985076904
2020-06-11 21:37:27,051 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 21:44:38,761 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=4000
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Best score (perplexity) = -4.046299457550049
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Steps = 4000/278576
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - dev_loss = 1.397803 || dev_eval_scores = {'perplexity': 4.046299457550049}
2020-06-11 21:44:42,509 - crisis_transformers.trainer - INFO - train_loss = 5.87202262878418
2020-06-11 21:44:42,510 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 21:51:54,477 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:51:58,342 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=4400
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Best score (perplexity) = -3.7213120460510254
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Steps = 4400/278576
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - dev_loss = 1.314076 || dev_eval_scores = {'perplexity': 3.7213120460510254}
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO - train_loss = 5.462299346923828
2020-06-11 21:51:58,343 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 21:59:10,274 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=4800
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Best score (perplexity) = -3.609790325164795
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Steps = 4800/278576
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 21:59:14,545 - crisis_transformers.trainer - INFO - dev_loss = 1.283650 || dev_eval_scores = {'perplexity': 3.609790325164795}
2020-06-11 21:59:14,546 - crisis_transformers.trainer - INFO - train_loss = 5.118622303009033
2020-06-11 21:59:14,546 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 22:06:26,200 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=5200
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Best score (perplexity) = -3.5901994705200195
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Steps = 5200/278576
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 22:06:29,929 - crisis_transformers.trainer - INFO - dev_loss = 1.278208 || dev_eval_scores = {'perplexity': 3.5901994705200195}
2020-06-11 22:06:29,930 - crisis_transformers.trainer - INFO - train_loss = 4.828340530395508
2020-06-11 22:06:29,930 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 22:13:41,909 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=5600
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Best score (perplexity) = -3.394659996032715
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Steps = 5600/278576
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 22:13:46,201 - crisis_transformers.trainer - INFO - dev_loss = 1.222204 || dev_eval_scores = {'perplexity': 3.394659996032715}
2020-06-11 22:13:46,202 - crisis_transformers.trainer - INFO - train_loss = 4.5767903327941895
2020-06-11 22:13:46,202 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 22:20:57,774 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 22:20:57,774 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:20:57,774 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 22:20:57,774 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-11 22:20:57,774 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 22:20:57,774 - crisis_transformers.trainer - INFO - Best score (perplexity) = -3.394659996032715
2020-06-11 22:20:57,774 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 22:20:57,774 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 22:20:57,774 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 22:20:57,774 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-11 22:20:57,775 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 22:20:57,775 - crisis_transformers.trainer - INFO - Steps = 6000/278576
2020-06-11 22:20:57,775 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 22:20:57,775 - crisis_transformers.trainer - INFO - dev_loss = 1.227896 || dev_eval_scores = {'perplexity': 3.41403865814209}
2020-06-11 22:20:57,775 - crisis_transformers.trainer - INFO - train_loss = 4.356290340423584
2020-06-11 22:20:57,775 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 22:28:09,137 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:28:13,001 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=6400
2020-06-11 22:28:13,001 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Best score (perplexity) = -3.263387680053711
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Steps = 6400/278576
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - dev_loss = 1.182766 || dev_eval_scores = {'perplexity': 3.263387680053711}
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO - train_loss = 4.162957668304443
2020-06-11 22:28:13,002 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 22:35:25,098 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 22:35:25,098 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:35:25,098 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 22:35:25,098 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-11 22:35:25,098 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 22:35:25,098 - crisis_transformers.trainer - INFO - Best score (perplexity) = -3.263387680053711
2020-06-11 22:35:25,098 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 22:35:25,098 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 22:35:25,098 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 22:35:25,099 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-11 22:35:25,099 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 22:35:25,099 - crisis_transformers.trainer - INFO - Steps = 6800/278576
2020-06-11 22:35:25,099 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 22:35:25,099 - crisis_transformers.trainer - INFO - dev_loss = 1.188739 || dev_eval_scores = {'perplexity': 3.2829389572143555}
2020-06-11 22:35:25,099 - crisis_transformers.trainer - INFO - train_loss = 3.991642713546753
2020-06-11 22:35:25,099 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 22:42:37,188 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=7200
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Best score (perplexity) = -3.1454687118530273
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-11 22:42:41,101 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 22:42:41,102 - crisis_transformers.trainer - INFO - Steps = 7200/278576
2020-06-11 22:42:41,102 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 22:42:41,102 - crisis_transformers.trainer - INFO - dev_loss = 1.145963 || dev_eval_scores = {'perplexity': 3.1454687118530273}
2020-06-11 22:42:41,102 - crisis_transformers.trainer - INFO - train_loss = 3.8384640216827393
2020-06-11 22:42:41,102 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 22:49:53,052 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=7600
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Best score (perplexity) = -3.0853919982910156
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Steps = 7600/278576
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 22:49:56,891 - crisis_transformers.trainer - INFO - dev_loss = 1.126679 || dev_eval_scores = {'perplexity': 3.0853919982910156}
2020-06-11 22:49:56,892 - crisis_transformers.trainer - INFO - train_loss = 3.701063871383667
2020-06-11 22:49:56,892 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 22:57:08,463 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:57:12,524 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=8000
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Best score (perplexity) = -3.04101824760437
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Steps = 8000/278576
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - dev_loss = 1.112192 || dev_eval_scores = {'perplexity': 3.04101824760437}
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO - train_loss = 3.575878143310547
2020-06-11 22:57:12,525 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 23:04:23,771 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=8400
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.996488571166992
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Steps = 8400/278576
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 23:04:27,583 - crisis_transformers.trainer - INFO - dev_loss = 1.097441 || dev_eval_scores = {'perplexity': 2.996488571166992}
2020-06-11 23:04:27,584 - crisis_transformers.trainer - INFO - train_loss = 3.4622840881347656
2020-06-11 23:04:27,584 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 23:11:39,153 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:11:43,019 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=8800
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.9609262943267822
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Steps = 8800/278576
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - dev_loss = 1.085502 || dev_eval_scores = {'perplexity': 2.9609262943267822}
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO - train_loss = 3.3580634593963623
2020-06-11 23:11:43,020 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 23:18:54,591 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:18:58,463 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=9200
2020-06-11 23:18:58,463 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 23:18:58,463 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:18:58,463 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.9230592250823975
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - Steps = 9200/278576
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - dev_loss = 1.072631 || dev_eval_scores = {'perplexity': 2.9230592250823975}
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO - train_loss = 3.2615966796875
2020-06-11 23:18:58,464 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 23:26:10,441 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=9600
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.886868715286255
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 23:26:13,940 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 23:26:13,941 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 23:26:13,941 - crisis_transformers.trainer - INFO - Steps = 9600/278576
2020-06-11 23:26:13,941 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 23:26:13,941 - crisis_transformers.trainer - INFO - dev_loss = 1.060172 || dev_eval_scores = {'perplexity': 2.886868715286255}
2020-06-11 23:26:13,941 - crisis_transformers.trainer - INFO - train_loss = 3.1728854179382324
2020-06-11 23:26:13,941 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 23:33:25,705 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=10000
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.836120128631592
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 23:33:30,017 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-11 23:33:30,018 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 23:33:30,018 - crisis_transformers.trainer - INFO - Steps = 10000/278576
2020-06-11 23:33:30,018 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 23:33:30,018 - crisis_transformers.trainer - INFO - dev_loss = 1.042437 || dev_eval_scores = {'perplexity': 2.836120128631592}
2020-06-11 23:33:30,018 - crisis_transformers.trainer - INFO - train_loss = 3.091641664505005
2020-06-11 23:33:30,018 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 23:40:41,837 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:40:45,836 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=10400
2020-06-11 23:40:45,836 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 23:40:45,836 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:40:45,836 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 23:40:45,836 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 23:40:45,836 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 23:40:45,836 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.8059732913970947
2020-06-11 23:40:45,836 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 23:40:45,836 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 23:40:45,836 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 23:40:45,837 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 23:40:45,837 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 23:40:45,837 - crisis_transformers.trainer - INFO - Steps = 10400/278576
2020-06-11 23:40:45,837 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 23:40:45,837 - crisis_transformers.trainer - INFO - dev_loss = 1.031750 || dev_eval_scores = {'perplexity': 2.8059732913970947}
2020-06-11 23:40:45,837 - crisis_transformers.trainer - INFO - train_loss = 3.0152587890625
2020-06-11 23:40:45,837 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 23:47:57,612 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=10800
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.772104263305664
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Steps = 10800/278576
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 23:48:02,018 - crisis_transformers.trainer - INFO - dev_loss = 1.019607 || dev_eval_scores = {'perplexity': 2.772104263305664}
2020-06-11 23:48:02,019 - crisis_transformers.trainer - INFO - train_loss = 2.9444949626922607
2020-06-11 23:48:02,019 - crisis_transformers.trainer - INFO -
********************************************
2020-06-11 23:55:13,323 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=11200
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.7492218017578125
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Steps = 11200/278576
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - dev_loss = 1.011318 || dev_eval_scores = {'perplexity': 2.7492218017578125}
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO - train_loss = 2.8781516551971436
2020-06-11 23:55:17,272 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 00:02:29,325 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=11600
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.7139976024627686
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 00:02:33,443 - crisis_transformers.trainer - INFO - Steps = 11600/278576
2020-06-12 00:02:33,444 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 00:02:33,444 - crisis_transformers.trainer - INFO - dev_loss = 0.998423 || dev_eval_scores = {'perplexity': 2.7139976024627686}
2020-06-12 00:02:33,444 - crisis_transformers.trainer - INFO - train_loss = 2.816199541091919
2020-06-12 00:02:33,444 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 00:09:45,484 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=12000
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.68788480758667
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Steps = 12000/278576
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 00:09:49,444 - crisis_transformers.trainer - INFO - dev_loss = 0.988755 || dev_eval_scores = {'perplexity': 2.68788480758667}
2020-06-12 00:09:49,445 - crisis_transformers.trainer - INFO - train_loss = 2.7574315071105957
2020-06-12 00:09:49,445 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 00:17:00,535 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:17:04,295 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=12400
2020-06-12 00:17:04,295 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 00:17:04,295 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:17:04,295 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 00:17:04,295 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 00:17:04,295 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 00:17:04,295 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.654526710510254
2020-06-12 00:17:04,295 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 00:17:04,296 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 00:17:04,296 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 00:17:04,296 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 00:17:04,296 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 00:17:04,296 - crisis_transformers.trainer - INFO - Steps = 12400/278576
2020-06-12 00:17:04,296 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 00:17:04,296 - crisis_transformers.trainer - INFO - dev_loss = 0.976266 || dev_eval_scores = {'perplexity': 2.654526710510254}
2020-06-12 00:17:04,296 - crisis_transformers.trainer - INFO - train_loss = 2.7026596069335938
2020-06-12 00:17:04,296 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 00:24:16,075 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=12800
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.6282081604003906
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 00:24:19,961 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 00:24:19,962 - crisis_transformers.trainer - INFO - Steps = 12800/278576
2020-06-12 00:24:19,962 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 00:24:19,962 - crisis_transformers.trainer - INFO - dev_loss = 0.966302 || dev_eval_scores = {'perplexity': 2.6282081604003906}
2020-06-12 00:24:19,962 - crisis_transformers.trainer - INFO - train_loss = 2.650250196456909
2020-06-12 00:24:19,962 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 00:31:31,505 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=13200
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.6085095405578613
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Steps = 13200/278576
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - dev_loss = 0.958779 || dev_eval_scores = {'perplexity': 2.6085095405578613}
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO - train_loss = 2.600867986679077
2020-06-12 00:31:35,203 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 00:38:46,576 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:38:50,406 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=13600
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.572343587875366
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Steps = 13600/278576
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - dev_loss = 0.944817 || dev_eval_scores = {'perplexity': 2.572343587875366}
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO - train_loss = 2.55434513092041
2020-06-12 00:38:50,407 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 00:46:01,097 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=14000
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.5420730113983154
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Steps = 14000/278576
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - dev_loss = 0.932980 || dev_eval_scores = {'perplexity': 2.5420730113983154}
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO - train_loss = 2.509788751602173
2020-06-12 00:46:05,257 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 00:53:16,943 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:53:20,794 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=14400
2020-06-12 00:53:20,794 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 00:53:20,794 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 00:53:20,794 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 00:53:20,794 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.508371114730835
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - Steps = 14400/278576
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - dev_loss = 0.919634 || dev_eval_scores = {'perplexity': 2.508371114730835}
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO - train_loss = 2.4678986072540283
2020-06-12 00:53:20,795 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 01:00:31,540 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=14800
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.4876623153686523
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Steps = 14800/278576
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - dev_loss = 0.911343 || dev_eval_scores = {'perplexity': 2.4876623153686523}
2020-06-12 01:00:35,779 - crisis_transformers.trainer - INFO - train_loss = 2.428267002105713
2020-06-12 01:00:35,780 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 01:07:47,187 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:07:51,019 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=15200
2020-06-12 01:07:51,019 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 01:07:51,019 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:07:51,019 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 01:07:51,019 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 01:07:51,019 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.46309757232666
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO - Steps = 15200/278576
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO - dev_loss = 0.901420 || dev_eval_scores = {'perplexity': 2.46309757232666}
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO - train_loss = 2.3902571201324463
2020-06-12 01:07:51,020 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 01:15:02,762 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:15:06,595 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=15600
2020-06-12 01:15:06,595 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 01:15:06,595 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:15:06,595 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 01:15:06,595 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 01:15:06,595 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 01:15:06,595 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.4311938285827637
2020-06-12 01:15:06,595 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 01:15:06,595 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 01:15:06,595 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 01:15:06,596 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 01:15:06,596 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 01:15:06,596 - crisis_transformers.trainer - INFO - Steps = 15600/278576
2020-06-12 01:15:06,596 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 01:15:06,596 - crisis_transformers.trainer - INFO - dev_loss = 0.888382 || dev_eval_scores = {'perplexity': 2.4311938285827637}
2020-06-12 01:15:06,596 - crisis_transformers.trainer - INFO - train_loss = 2.354424238204956
2020-06-12 01:15:06,596 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 01:22:18,392 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:22:22,372 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=16000
2020-06-12 01:22:22,372 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 01:22:22,372 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:22:22,372 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 01:22:22,372 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 01:22:22,372 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 01:22:22,372 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.4099924564361572
2020-06-12 01:22:22,372 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 01:22:22,372 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 01:22:22,372 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 01:22:22,373 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 01:22:22,373 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 01:22:22,373 - crisis_transformers.trainer - INFO - Steps = 16000/278576
2020-06-12 01:22:22,373 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 01:22:22,373 - crisis_transformers.trainer - INFO - dev_loss = 0.879624 || dev_eval_scores = {'perplexity': 2.4099924564361572}
2020-06-12 01:22:22,373 - crisis_transformers.trainer - INFO - train_loss = 2.319091796875
2020-06-12 01:22:22,373 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 01:29:33,829 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:29:37,786 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=16400
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.3866090774536133
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Steps = 16400/278576
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - dev_loss = 0.869874 || dev_eval_scores = {'perplexity': 2.3866090774536133}
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO - train_loss = 2.285768747329712
2020-06-12 01:29:37,787 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 01:36:48,893 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=16800
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.3575546741485596
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Steps = 16800/278576
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - dev_loss = 0.857625 || dev_eval_scores = {'perplexity': 2.3575546741485596}
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO - train_loss = 2.253655433654785
2020-06-12 01:36:52,733 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 01:44:04,158 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Save check-point at epoch=0 step=17200
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.3273518085479736
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Epoch = 1/16
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Steps = 17200/278576
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 01:44:08,000 - crisis_transformers.trainer - INFO - dev_loss = 0.844731 || dev_eval_scores = {'perplexity': 2.3273518085479736}
2020-06-12 01:44:08,001 - crisis_transformers.trainer - INFO - train_loss = 2.22310733795166
2020-06-12 01:44:08,001 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 01:46:08,626 - crisis_transformers.trainer - INFO - epoch 1 ends, 15 epoches left
2020-06-12 01:46:08,628 - crisis_transformers.trainer - INFO -
global_average_loss=2.207577705383301,global_steps=17411 on training set
2020-06-12 01:51:18,826 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=189
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.306220054626465
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Steps = 17600/278576
2020-06-12 01:51:22,899 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 01:51:22,900 - crisis_transformers.trainer - INFO - dev_loss = 0.835610 || dev_eval_scores = {'perplexity': 2.306220054626465}
2020-06-12 01:51:22,900 - crisis_transformers.trainer - INFO - train_loss = 0.8919339776039124
2020-06-12 01:51:22,900 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 01:58:34,239 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:58:38,515 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=589
2020-06-12 01:58:38,515 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 01:58:38,515 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 01:58:38,515 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 01:58:38,515 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 01:58:38,515 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 01:58:38,515 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.282672166824341
2020-06-12 01:58:38,515 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 01:58:38,515 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 01:58:38,516 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 01:58:38,516 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 01:58:38,516 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 01:58:38,516 - crisis_transformers.trainer - INFO - Steps = 18000/278576
2020-06-12 01:58:38,516 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 01:58:38,516 - crisis_transformers.trainer - INFO - dev_loss = 0.825347 || dev_eval_scores = {'perplexity': 2.282672166824341}
2020-06-12 01:58:38,516 - crisis_transformers.trainer - INFO - train_loss = 0.9102271199226379
2020-06-12 01:58:38,516 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 02:05:49,927 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:05:53,796 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=989
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.261589288711548
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Steps = 18400/278576
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - dev_loss = 0.816068 || dev_eval_scores = {'perplexity': 2.261589288711548}
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO - train_loss = 0.9082818031311035
2020-06-12 02:05:53,797 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 02:13:04,838 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=1389
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.2358696460723877
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Steps = 18800/278576
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - dev_loss = 0.804630 || dev_eval_scores = {'perplexity': 2.2358696460723877}
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO - train_loss = 0.9062302708625793
2020-06-12 02:13:08,577 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 02:20:19,901 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:20:23,756 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=1789
2020-06-12 02:20:23,756 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 02:20:23,756 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:20:23,756 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 02:20:23,756 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 02:20:23,756 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 02:20:23,756 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.210675001144409
2020-06-12 02:20:23,757 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 02:20:23,757 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 02:20:23,757 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 02:20:23,757 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 02:20:23,757 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 02:20:23,757 - crisis_transformers.trainer - INFO - Steps = 19200/278576
2020-06-12 02:20:23,757 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 02:20:23,757 - crisis_transformers.trainer - INFO - dev_loss = 0.793298 || dev_eval_scores = {'perplexity': 2.210675001144409}
2020-06-12 02:20:23,757 - crisis_transformers.trainer - INFO - train_loss = 0.8982809782028198
2020-06-12 02:20:23,757 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 02:27:35,383 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=2189
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.1900641918182373
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Steps = 19600/278576
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 02:27:39,229 - crisis_transformers.trainer - INFO - dev_loss = 0.783931 || dev_eval_scores = {'perplexity': 2.1900641918182373}
2020-06-12 02:27:39,230 - crisis_transformers.trainer - INFO - train_loss = 0.8898405432701111
2020-06-12 02:27:39,230 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 02:34:50,458 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:34:54,307 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=2589
2020-06-12 02:34:54,307 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 02:34:54,307 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:34:54,307 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 02:34:54,307 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 02:34:54,307 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 02:34:54,307 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.169043779373169
2020-06-12 02:34:54,307 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 02:34:54,308 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 02:34:54,308 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 02:34:54,308 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 02:34:54,308 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 02:34:54,308 - crisis_transformers.trainer - INFO - Steps = 20000/278576
2020-06-12 02:34:54,308 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 02:34:54,308 - crisis_transformers.trainer - INFO - dev_loss = 0.774286 || dev_eval_scores = {'perplexity': 2.169043779373169}
2020-06-12 02:34:54,308 - crisis_transformers.trainer - INFO - train_loss = 0.8851494789123535
2020-06-12 02:34:54,308 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 02:42:06,145 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:42:09,896 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=2989
2020-06-12 02:42:09,896 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 02:42:09,896 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:42:09,896 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 02:42:09,896 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 02:42:09,896 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 02:42:09,896 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.140289783477783
2020-06-12 02:42:09,896 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 02:42:09,897 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 02:42:09,897 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 02:42:09,897 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 02:42:09,897 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 02:42:09,897 - crisis_transformers.trainer - INFO - Steps = 20400/278576
2020-06-12 02:42:09,897 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 02:42:09,897 - crisis_transformers.trainer - INFO - dev_loss = 0.760941 || dev_eval_scores = {'perplexity': 2.140289783477783}
2020-06-12 02:42:09,897 - crisis_transformers.trainer - INFO - train_loss = 0.8793467283248901
2020-06-12 02:42:09,897 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 02:49:21,789 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=3389
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.121040105819702
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Steps = 20800/278576
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 02:49:25,274 - crisis_transformers.trainer - INFO - dev_loss = 0.751907 || dev_eval_scores = {'perplexity': 2.121040105819702}
2020-06-12 02:49:25,275 - crisis_transformers.trainer - INFO - train_loss = 0.871684730052948
2020-06-12 02:49:25,275 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 02:56:37,107 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:56:41,332 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=3789
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.0992023944854736
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Steps = 21200/278576
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - dev_loss = 0.741557 || dev_eval_scores = {'perplexity': 2.0992023944854736}
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO - train_loss = 0.8670705556869507
2020-06-12 02:56:41,333 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 03:03:52,858 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:03:56,767 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=4189
2020-06-12 03:03:56,767 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 03:03:56,767 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:03:56,767 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 03:03:56,767 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 03:03:56,767 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 03:03:56,767 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.0718014240264893
2020-06-12 03:03:56,767 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 03:03:56,767 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 03:03:56,768 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 03:03:56,768 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 03:03:56,768 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 03:03:56,768 - crisis_transformers.trainer - INFO - Steps = 21600/278576
2020-06-12 03:03:56,768 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 03:03:56,768 - crisis_transformers.trainer - INFO - dev_loss = 0.728418 || dev_eval_scores = {'perplexity': 2.0718014240264893}
2020-06-12 03:03:56,768 - crisis_transformers.trainer - INFO - train_loss = 0.8624909520149231
2020-06-12 03:03:56,768 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 03:11:08,681 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:11:12,544 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=4589
2020-06-12 03:11:12,544 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 03:11:12,544 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:11:12,544 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 03:11:12,544 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 03:11:12,544 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.0530827045440674
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO - Steps = 22000/278576
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO - dev_loss = 0.719342 || dev_eval_scores = {'perplexity': 2.0530827045440674}
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO - train_loss = 0.8574584126472473
2020-06-12 03:11:12,545 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 03:18:23,725 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:18:27,499 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=4989
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.0336155891418457
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Steps = 22400/278576
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - dev_loss = 0.709815 || dev_eval_scores = {'perplexity': 2.0336155891418457}
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO - train_loss = 0.8504697680473328
2020-06-12 03:18:27,500 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 03:25:39,057 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=5389
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Best score (perplexity) = -2.0098047256469727
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Steps = 22800/278576
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - dev_loss = 0.698038 || dev_eval_scores = {'perplexity': 2.0098047256469727}
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO - train_loss = 0.8460281491279602
2020-06-12 03:25:43,393 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 03:32:54,836 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:32:58,726 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=5789
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.9868273735046387
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Steps = 23200/278576
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - dev_loss = 0.686539 || dev_eval_scores = {'perplexity': 1.9868273735046387}
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO - train_loss = 0.8407670855522156
2020-06-12 03:32:58,727 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 03:40:09,514 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=6189
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.9708765745162964
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Steps = 23600/278576
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 03:40:13,425 - crisis_transformers.trainer - INFO - dev_loss = 0.678478 || dev_eval_scores = {'perplexity': 1.9708765745162964}
2020-06-12 03:40:13,426 - crisis_transformers.trainer - INFO - train_loss = 0.8364319205284119
2020-06-12 03:40:13,426 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 03:47:25,312 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=6589
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.950257420539856
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Steps = 24000/278576
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 03:47:28,665 - crisis_transformers.trainer - INFO - dev_loss = 0.667961 || dev_eval_scores = {'perplexity': 1.950257420539856}
2020-06-12 03:47:28,666 - crisis_transformers.trainer - INFO - train_loss = 0.8307074308395386
2020-06-12 03:47:28,666 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 03:54:40,261 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:54:44,220 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=6989
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.9251375198364258
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Steps = 24400/278576
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - dev_loss = 0.654997 || dev_eval_scores = {'perplexity': 1.9251375198364258}
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO - train_loss = 0.8253822922706604
2020-06-12 03:54:44,221 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 04:01:55,402 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:01:59,672 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=7389
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.9091284275054932
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Steps = 24800/278576
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - dev_loss = 0.646647 || dev_eval_scores = {'perplexity': 1.9091284275054932}
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO - train_loss = 0.8205176591873169
2020-06-12 04:01:59,673 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 04:09:10,549 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=7789
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.8884336948394775
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Steps = 25200/278576
2020-06-12 04:09:14,287 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 04:09:14,288 - crisis_transformers.trainer - INFO - dev_loss = 0.635748 || dev_eval_scores = {'perplexity': 1.8884336948394775}
2020-06-12 04:09:14,288 - crisis_transformers.trainer - INFO - train_loss = 0.8162734508514404
2020-06-12 04:09:14,288 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 04:16:26,145 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:16:30,187 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=8189
2020-06-12 04:16:30,187 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 04:16:30,187 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:16:30,187 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 04:16:30,187 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 04:16:30,187 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 04:16:30,187 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.8698856830596924
2020-06-12 04:16:30,187 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 04:16:30,187 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 04:16:30,187 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 04:16:30,188 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 04:16:30,188 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 04:16:30,188 - crisis_transformers.trainer - INFO - Steps = 25600/278576
2020-06-12 04:16:30,188 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 04:16:30,188 - crisis_transformers.trainer - INFO - dev_loss = 0.625877 || dev_eval_scores = {'perplexity': 1.8698856830596924}
2020-06-12 04:16:30,188 - crisis_transformers.trainer - INFO - train_loss = 0.811458170413971
2020-06-12 04:16:30,188 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 04:23:41,295 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:23:45,346 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=8589
2020-06-12 04:23:45,346 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 04:23:45,346 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.8487507104873657
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Steps = 26000/278576
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - dev_loss = 0.614510 || dev_eval_scores = {'perplexity': 1.8487507104873657}
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO - train_loss = 0.8066449761390686
2020-06-12 04:23:45,347 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 04:30:56,930 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=8989
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.8316272497177124
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Steps = 26400/278576
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 04:31:01,239 - crisis_transformers.trainer - INFO - dev_loss = 0.605205 || dev_eval_scores = {'perplexity': 1.8316272497177124}
2020-06-12 04:31:01,240 - crisis_transformers.trainer - INFO - train_loss = 0.802518904209137
2020-06-12 04:31:01,240 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 04:38:12,636 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=9389
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.8143984079360962
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Steps = 26800/278576
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 04:38:16,325 - crisis_transformers.trainer - INFO - dev_loss = 0.595754 || dev_eval_scores = {'perplexity': 1.8143984079360962}
2020-06-12 04:38:16,326 - crisis_transformers.trainer - INFO - train_loss = 0.7970281839370728
2020-06-12 04:38:16,326 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 04:45:27,487 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:45:31,784 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=9789
2020-06-12 04:45:31,784 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 04:45:31,784 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:45:31,784 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 04:45:31,784 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 04:45:31,784 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.7961244583129883
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO - Steps = 27200/278576
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO - dev_loss = 0.585631 || dev_eval_scores = {'perplexity': 1.7961244583129883}
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO - train_loss = 0.7928464412689209
2020-06-12 04:45:31,785 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 04:52:42,555 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=10189
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.7843670845031738
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 04:52:46,377 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 04:52:46,378 - crisis_transformers.trainer - INFO - Steps = 27600/278576
2020-06-12 04:52:46,378 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 04:52:46,378 - crisis_transformers.trainer - INFO - dev_loss = 0.579064 || dev_eval_scores = {'perplexity': 1.7843670845031738}
2020-06-12 04:52:46,378 - crisis_transformers.trainer - INFO - train_loss = 0.7886567711830139
2020-06-12 04:52:46,378 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 04:59:57,976 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:00:01,818 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=10589
2020-06-12 05:00:01,818 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 05:00:01,818 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.764768123626709
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Steps = 28000/278576
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - dev_loss = 0.568019 || dev_eval_scores = {'perplexity': 1.764768123626709}
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO - train_loss = 0.7840659618377686
2020-06-12 05:00:01,819 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 05:07:12,938 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=10989
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.7483080625534058
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Steps = 28400/278576
2020-06-12 05:07:16,789 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 05:07:16,790 - crisis_transformers.trainer - INFO - dev_loss = 0.558648 || dev_eval_scores = {'perplexity': 1.7483080625534058}
2020-06-12 05:07:16,790 - crisis_transformers.trainer - INFO - train_loss = 0.7798082828521729
2020-06-12 05:07:16,790 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 05:14:27,901 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=11389
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.7391985654830933
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Steps = 28800/278576
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 05:14:32,042 - crisis_transformers.trainer - INFO - dev_loss = 0.553424 || dev_eval_scores = {'perplexity': 1.7391985654830933}
2020-06-12 05:14:32,043 - crisis_transformers.trainer - INFO - train_loss = 0.7753340601921082
2020-06-12 05:14:32,043 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 05:21:43,000 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=11789
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.7198398113250732
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Steps = 29200/278576
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 05:21:46,790 - crisis_transformers.trainer - INFO - dev_loss = 0.542231 || dev_eval_scores = {'perplexity': 1.7198398113250732}
2020-06-12 05:21:46,791 - crisis_transformers.trainer - INFO - train_loss = 0.7709231972694397
2020-06-12 05:21:46,791 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 05:28:58,330 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:29:02,113 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=12189
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.6953392028808594
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Steps = 29600/278576
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - dev_loss = 0.527883 || dev_eval_scores = {'perplexity': 1.6953392028808594}
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO - train_loss = 0.7663020491600037
2020-06-12 05:29:02,114 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 05:36:13,699 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=12589
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.684487223625183
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Steps = 30000/278576
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - dev_loss = 0.521461 || dev_eval_scores = {'perplexity': 1.684487223625183}
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO - train_loss = 0.7620025277137756
2020-06-12 05:36:17,973 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 05:43:29,168 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=12989
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.6656123399734497
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 05:43:33,180 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 05:43:33,181 - crisis_transformers.trainer - INFO - Steps = 30400/278576
2020-06-12 05:43:33,181 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 05:43:33,181 - crisis_transformers.trainer - INFO - dev_loss = 0.510193 || dev_eval_scores = {'perplexity': 1.6656123399734497}
2020-06-12 05:43:33,181 - crisis_transformers.trainer - INFO - train_loss = 0.7573661208152771
2020-06-12 05:43:33,181 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 05:50:44,231 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=13389
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.651535987854004
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Steps = 30800/278576
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 05:50:48,564 - crisis_transformers.trainer - INFO - dev_loss = 0.501706 || dev_eval_scores = {'perplexity': 1.651535987854004}
2020-06-12 05:50:48,565 - crisis_transformers.trainer - INFO - train_loss = 0.7526668906211853
2020-06-12 05:50:48,565 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 05:57:59,864 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:58:03,697 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=13789
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.6361221075057983
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Steps = 31200/278576
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - dev_loss = 0.492329 || dev_eval_scores = {'perplexity': 1.6361221075057983}
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO - train_loss = 0.7481159567832947
2020-06-12 05:58:03,698 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 06:05:14,807 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:05:18,556 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=14189
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.6220632791519165
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Steps = 31600/278576
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - dev_loss = 0.483699 || dev_eval_scores = {'perplexity': 1.6220632791519165}
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO - train_loss = 0.7438127994537354
2020-06-12 06:05:18,557 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 06:12:30,611 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:12:34,360 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=14589
2020-06-12 06:12:34,360 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 06:12:34,360 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:12:34,360 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 06:12:34,360 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 06:12:34,360 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 06:12:34,360 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.610316276550293
2020-06-12 06:12:34,361 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 06:12:34,361 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 06:12:34,361 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 06:12:34,361 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 06:12:34,361 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 06:12:34,361 - crisis_transformers.trainer - INFO - Steps = 32000/278576
2020-06-12 06:12:34,361 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 06:12:34,361 - crisis_transformers.trainer - INFO - dev_loss = 0.476431 || dev_eval_scores = {'perplexity': 1.610316276550293}
2020-06-12 06:12:34,361 - crisis_transformers.trainer - INFO - train_loss = 0.7390771508216858
2020-06-12 06:12:34,361 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 06:19:45,562 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=14989
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.5992158651351929
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Steps = 32400/278576
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 06:19:49,380 - crisis_transformers.trainer - INFO - dev_loss = 0.469513 || dev_eval_scores = {'perplexity': 1.5992158651351929}
2020-06-12 06:19:49,381 - crisis_transformers.trainer - INFO - train_loss = 0.7345605492591858
2020-06-12 06:19:49,381 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 06:27:00,549 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:27:04,344 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=15389
2020-06-12 06:27:04,344 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 06:27:04,344 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.581007480621338
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Steps = 32800/278576
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - dev_loss = 0.458062 || dev_eval_scores = {'perplexity': 1.581007480621338}
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO - train_loss = 0.7301263809204102
2020-06-12 06:27:04,345 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 06:34:16,032 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=15789
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.571539044380188
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Steps = 33200/278576
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 06:34:19,879 - crisis_transformers.trainer - INFO - dev_loss = 0.452055 || dev_eval_scores = {'perplexity': 1.571539044380188}
2020-06-12 06:34:19,880 - crisis_transformers.trainer - INFO - train_loss = 0.7254016399383545
2020-06-12 06:34:19,880 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 06:41:30,980 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:41:34,818 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=16189
2020-06-12 06:41:34,818 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.5561637878417969
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Steps = 33600/278576
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - dev_loss = 0.442224 || dev_eval_scores = {'perplexity': 1.5561637878417969}
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO - train_loss = 0.7213504314422607
2020-06-12 06:41:34,819 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 06:48:46,476 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:48:50,324 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=16589
2020-06-12 06:48:50,324 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 06:48:50,324 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:48:50,324 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 06:48:50,324 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 06:48:50,324 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 06:48:50,324 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.5447299480438232
2020-06-12 06:48:50,324 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 06:48:50,324 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 06:48:50,325 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 06:48:50,325 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 06:48:50,325 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 06:48:50,325 - crisis_transformers.trainer - INFO - Steps = 34000/278576
2020-06-12 06:48:50,325 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 06:48:50,325 - crisis_transformers.trainer - INFO - dev_loss = 0.434849 || dev_eval_scores = {'perplexity': 1.5447299480438232}
2020-06-12 06:48:50,325 - crisis_transformers.trainer - INFO - train_loss = 0.7172350883483887
2020-06-12 06:48:50,325 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 06:56:02,163 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=16989
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.5317991971969604
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Steps = 34400/278576
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - dev_loss = 0.426443 || dev_eval_scores = {'perplexity': 1.5317991971969604}
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO - train_loss = 0.7126625180244446
2020-06-12 06:56:05,999 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 07:03:17,948 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Save check-point at epoch=1 step=17389
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.5181857347488403
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Epoch = 2/16
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Steps = 34800/278576
2020-06-12 07:03:22,232 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 07:03:22,233 - crisis_transformers.trainer - INFO - dev_loss = 0.417516 || dev_eval_scores = {'perplexity': 1.5181857347488403}
2020-06-12 07:03:22,233 - crisis_transformers.trainer - INFO - train_loss = 0.7084499001502991
2020-06-12 07:03:22,233 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 07:03:34,765 - crisis_transformers.trainer - INFO - epoch 2 ends, 14 epoches left
2020-06-12 07:03:34,767 - crisis_transformers.trainer - INFO -
global_average_loss=1.457897663116455,global_steps=34822 on training set
2020-06-12 07:10:33,578 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=378
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.5065593719482422
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Steps = 35200/278576
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 07:10:37,319 - crisis_transformers.trainer - INFO - dev_loss = 0.409828 || dev_eval_scores = {'perplexity': 1.5065593719482422}
2020-06-12 07:10:37,320 - crisis_transformers.trainer - INFO - train_loss = 0.5077053904533386
2020-06-12 07:10:37,320 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 07:17:48,578 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:17:52,866 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=778
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.4995406866073608
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Steps = 35600/278576
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 07:17:52,867 - crisis_transformers.trainer - INFO - dev_loss = 0.405159 || dev_eval_scores = {'perplexity': 1.4995406866073608}
2020-06-12 07:17:52,868 - crisis_transformers.trainer - INFO - train_loss = 0.5084229111671448
2020-06-12 07:17:52,868 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 07:25:04,279 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=1178
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.4872630834579468
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Steps = 36000/278576
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - dev_loss = 0.396938 || dev_eval_scores = {'perplexity': 1.4872630834579468}
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO - train_loss = 0.5008477568626404
2020-06-12 07:25:08,441 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 07:32:19,554 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=1578
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.4724860191345215
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Steps = 36400/278576
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - dev_loss = 0.386952 || dev_eval_scores = {'perplexity': 1.4724860191345215}
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO - train_loss = 0.49597886204719543
2020-06-12 07:32:23,792 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 07:39:35,241 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:39:39,063 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=1978
2020-06-12 07:39:39,063 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 07:39:39,063 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:39:39,063 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 07:39:39,063 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 07:39:39,063 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 07:39:39,063 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.4704307317733765
2020-06-12 07:39:39,064 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 07:39:39,064 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 07:39:39,064 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 07:39:39,064 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 07:39:39,064 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 07:39:39,064 - crisis_transformers.trainer - INFO - Steps = 36800/278576
2020-06-12 07:39:39,064 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 07:39:39,064 - crisis_transformers.trainer - INFO - dev_loss = 0.385555 || dev_eval_scores = {'perplexity': 1.4704307317733765}
2020-06-12 07:39:39,064 - crisis_transformers.trainer - INFO - train_loss = 0.4925973117351532
2020-06-12 07:39:39,064 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 07:46:50,212 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:46:54,091 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=2378
2020-06-12 07:46:54,091 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.4530060291290283
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Steps = 37200/278576
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - dev_loss = 0.373635 || dev_eval_scores = {'perplexity': 1.4530060291290283}
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO - train_loss = 0.4874938130378723
2020-06-12 07:46:54,092 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 07:54:05,635 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=2778
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.4396711587905884
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Steps = 37600/278576
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 07:54:09,864 - crisis_transformers.trainer - INFO - dev_loss = 0.364415 || dev_eval_scores = {'perplexity': 1.4396711587905884}
2020-06-12 07:54:09,865 - crisis_transformers.trainer - INFO - train_loss = 0.4848006069660187
2020-06-12 07:54:09,865 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 08:01:21,053 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:01:25,371 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=3178
2020-06-12 08:01:25,371 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 08:01:25,371 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.4313539266586304
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Steps = 38000/278576
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - dev_loss = 0.358621 || dev_eval_scores = {'perplexity': 1.4313539266586304}
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO - train_loss = 0.4819473922252655
2020-06-12 08:01:25,372 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 08:08:36,819 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=3578
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.4217482805252075
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Steps = 38400/278576
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 08:08:40,629 - crisis_transformers.trainer - INFO - dev_loss = 0.351887 || dev_eval_scores = {'perplexity': 1.4217482805252075}
2020-06-12 08:08:40,630 - crisis_transformers.trainer - INFO - train_loss = 0.47801968455314636
2020-06-12 08:08:40,630 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 08:15:51,675 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:15:55,394 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=3978
2020-06-12 08:15:55,394 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 08:15:55,394 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.4130357503890991
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Steps = 38800/278576
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - dev_loss = 0.345740 || dev_eval_scores = {'perplexity': 1.4130357503890991}
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO - train_loss = 0.4750809073448181
2020-06-12 08:15:55,395 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 08:23:07,471 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:23:11,318 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=4378
2020-06-12 08:23:11,318 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 08:23:11,318 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:23:11,318 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 08:23:11,318 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 08:23:11,318 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 08:23:11,318 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.4030141830444336
2020-06-12 08:23:11,318 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 08:23:11,319 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 08:23:11,319 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 08:23:11,319 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 08:23:11,319 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 08:23:11,319 - crisis_transformers.trainer - INFO - Steps = 39200/278576
2020-06-12 08:23:11,319 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 08:23:11,319 - crisis_transformers.trainer - INFO - dev_loss = 0.338623 || dev_eval_scores = {'perplexity': 1.4030141830444336}
2020-06-12 08:23:11,319 - crisis_transformers.trainer - INFO - train_loss = 0.4713905453681946
2020-06-12 08:23:11,319 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 08:30:22,512 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:30:26,227 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=4778
2020-06-12 08:30:26,227 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 08:30:26,227 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:30:26,227 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 08:30:26,227 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 08:30:26,227 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 08:30:26,227 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.391721487045288
2020-06-12 08:30:26,227 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 08:30:26,227 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 08:30:26,227 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 08:30:26,228 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 08:30:26,228 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 08:30:26,228 - crisis_transformers.trainer - INFO - Steps = 39600/278576
2020-06-12 08:30:26,228 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 08:30:26,228 - crisis_transformers.trainer - INFO - dev_loss = 0.330542 || dev_eval_scores = {'perplexity': 1.391721487045288}
2020-06-12 08:30:26,228 - crisis_transformers.trainer - INFO - train_loss = 0.4688350260257721
2020-06-12 08:30:26,228 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 08:37:37,836 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=5178
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.3863202333450317
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Steps = 40000/278576
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 08:37:41,641 - crisis_transformers.trainer - INFO - dev_loss = 0.326653 || dev_eval_scores = {'perplexity': 1.3863202333450317}
2020-06-12 08:37:41,642 - crisis_transformers.trainer - INFO - train_loss = 0.4653063714504242
2020-06-12 08:37:41,642 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 08:44:52,891 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:44:56,707 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=5578
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.3764472007751465
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Steps = 40400/278576
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - dev_loss = 0.319506 || dev_eval_scores = {'perplexity': 1.3764472007751465}
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO - train_loss = 0.4616211950778961
2020-06-12 08:44:56,708 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 08:52:07,568 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=5978
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.3701869249343872
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Steps = 40800/278576
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - dev_loss = 0.314947 || dev_eval_scores = {'perplexity': 1.3701869249343872}
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO - train_loss = 0.4588777422904968
2020-06-12 08:52:11,277 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 08:59:22,571 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=6378
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.3665746450424194
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Steps = 41200/278576
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - dev_loss = 0.312307 || dev_eval_scores = {'perplexity': 1.3665746450424194}
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO - train_loss = 0.4553696811199188
2020-06-12 08:59:26,446 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 09:06:37,730 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=6778
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.35618257522583
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 09:06:41,569 - crisis_transformers.trainer - INFO - Steps = 41600/278576
2020-06-12 09:06:41,570 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 09:06:41,570 - crisis_transformers.trainer - INFO - dev_loss = 0.304674 || dev_eval_scores = {'perplexity': 1.35618257522583}
2020-06-12 09:06:41,570 - crisis_transformers.trainer - INFO - train_loss = 0.4522298574447632
2020-06-12 09:06:41,570 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 09:13:52,744 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:13:56,458 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=7178
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.347740888595581
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Steps = 42000/278576
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - dev_loss = 0.298430 || dev_eval_scores = {'perplexity': 1.347740888595581}
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO - train_loss = 0.4496159553527832
2020-06-12 09:13:56,459 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 09:21:07,688 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=7578
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.3386039733886719
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Steps = 42400/278576
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 09:21:11,509 - crisis_transformers.trainer - INFO - dev_loss = 0.291627 || dev_eval_scores = {'perplexity': 1.3386039733886719}
2020-06-12 09:21:11,510 - crisis_transformers.trainer - INFO - train_loss = 0.44657158851623535
2020-06-12 09:21:11,510 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 09:28:22,370 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=7978
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.3325072526931763
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Steps = 42800/278576
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - dev_loss = 0.287062 || dev_eval_scores = {'perplexity': 1.3325072526931763}
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO - train_loss = 0.4432190954685211
2020-06-12 09:28:26,197 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 09:35:37,349 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=8378
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.3274871110916138
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Steps = 43200/278576
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 09:35:41,210 - crisis_transformers.trainer - INFO - dev_loss = 0.283288 || dev_eval_scores = {'perplexity': 1.3274871110916138}
2020-06-12 09:35:41,211 - crisis_transformers.trainer - INFO - train_loss = 0.4402396082878113
2020-06-12 09:35:41,211 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 09:42:52,444 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:42:56,294 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=8778
2020-06-12 09:42:56,294 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 09:42:56,294 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:42:56,294 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 09:42:56,294 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 09:42:56,294 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 09:42:56,294 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.315727710723877
2020-06-12 09:42:56,294 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 09:42:56,295 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 09:42:56,295 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 09:42:56,295 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 09:42:56,295 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 09:42:56,295 - crisis_transformers.trainer - INFO - Steps = 43600/278576
2020-06-12 09:42:56,295 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 09:42:56,295 - crisis_transformers.trainer - INFO - dev_loss = 0.274390 || dev_eval_scores = {'perplexity': 1.315727710723877}
2020-06-12 09:42:56,295 - crisis_transformers.trainer - INFO - train_loss = 0.43725401163101196
2020-06-12 09:42:56,295 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 09:50:07,902 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=9178
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.3152892589569092
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Steps = 44000/278576
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - dev_loss = 0.274057 || dev_eval_scores = {'perplexity': 1.3152892589569092}
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO - train_loss = 0.43421682715415955
2020-06-12 09:50:12,219 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 09:57:23,789 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:57:27,692 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=9578
2020-06-12 09:57:27,692 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 09:57:27,692 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.306022047996521
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Steps = 44400/278576
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - dev_loss = 0.266986 || dev_eval_scores = {'perplexity': 1.306022047996521}
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO - train_loss = 0.43124547600746155
2020-06-12 09:57:27,693 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 10:04:38,908 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:04:42,860 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=9978
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.3020490407943726
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Steps = 44800/278576
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - dev_loss = 0.263939 || dev_eval_scores = {'perplexity': 1.3020490407943726}
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO - train_loss = 0.42827215790748596
2020-06-12 10:04:42,861 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 10:11:53,676 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:11:57,556 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=10378
2020-06-12 10:11:57,556 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 10:11:57,556 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:11:57,556 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 10:11:57,556 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2914035320281982
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - Steps = 45200/278576
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - dev_loss = 0.255730 || dev_eval_scores = {'perplexity': 1.2914035320281982}
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO - train_loss = 0.4252185821533203
2020-06-12 10:11:57,557 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 10:19:08,790 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=10778
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2862516641616821
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 10:19:12,161 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 10:19:12,162 - crisis_transformers.trainer - INFO - Steps = 45600/278576
2020-06-12 10:19:12,162 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 10:19:12,162 - crisis_transformers.trainer - INFO - dev_loss = 0.251732 || dev_eval_scores = {'perplexity': 1.2862516641616821}
2020-06-12 10:19:12,162 - crisis_transformers.trainer - INFO - train_loss = 0.4227924942970276
2020-06-12 10:19:12,162 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 10:26:22,943 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:26:27,198 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=11178
2020-06-12 10:26:27,198 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 10:26:27,198 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.282753825187683
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Steps = 46000/278576
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - dev_loss = 0.249009 || dev_eval_scores = {'perplexity': 1.282753825187683}
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO - train_loss = 0.41981765627861023
2020-06-12 10:26:27,199 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 10:33:37,608 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:33:41,331 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=11578
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2747212648391724
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Steps = 46400/278576
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - dev_loss = 0.242728 || dev_eval_scores = {'perplexity': 1.2747212648391724}
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO - train_loss = 0.41709834337234497
2020-06-12 10:33:41,332 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 10:40:52,557 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=11978
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.270970106124878
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Steps = 46800/278576
2020-06-12 10:40:56,240 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 10:40:56,241 - crisis_transformers.trainer - INFO - dev_loss = 0.239781 || dev_eval_scores = {'perplexity': 1.270970106124878}
2020-06-12 10:40:56,241 - crisis_transformers.trainer - INFO - train_loss = 0.41438814997673035
2020-06-12 10:40:56,241 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 10:48:07,184 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=12378
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2681171894073486
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Steps = 47200/278576
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 10:48:11,365 - crisis_transformers.trainer - INFO - dev_loss = 0.237533 || dev_eval_scores = {'perplexity': 1.2681171894073486}
2020-06-12 10:48:11,366 - crisis_transformers.trainer - INFO - train_loss = 0.4116062819957733
2020-06-12 10:48:11,366 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 10:55:21,839 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 10:55:21,839 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2681171894073486
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 10s
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Steps = 47600/278576
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - dev_loss = 0.237603 || dev_eval_scores = {'perplexity': 1.268206000328064}
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO - train_loss = 0.4090476334095001
2020-06-12 10:55:21,840 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 11:02:33,440 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=13178
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2570724487304688
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Steps = 48000/278576
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - dev_loss = 0.228786 || dev_eval_scores = {'perplexity': 1.2570724487304688}
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO - train_loss = 0.40632161498069763
2020-06-12 11:02:37,076 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 11:09:48,383 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:09:51,983 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=13578
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.252106785774231
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Steps = 48400/278576
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - dev_loss = 0.224828 || dev_eval_scores = {'perplexity': 1.252106785774231}
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO - train_loss = 0.40354153513908386
2020-06-12 11:09:51,984 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 11:17:03,692 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=13978
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2468602657318115
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 11:17:07,245 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 11:17:07,246 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 11:17:07,246 - crisis_transformers.trainer - INFO - Steps = 48800/278576
2020-06-12 11:17:07,246 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 11:17:07,246 - crisis_transformers.trainer - INFO - dev_loss = 0.220629 || dev_eval_scores = {'perplexity': 1.2468602657318115}
2020-06-12 11:17:07,246 - crisis_transformers.trainer - INFO - train_loss = 0.40087953209877014
2020-06-12 11:17:07,246 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 11:24:17,752 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:24:21,750 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=14378
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.241665244102478
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Steps = 49200/278576
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - dev_loss = 0.216453 || dev_eval_scores = {'perplexity': 1.241665244102478}
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO - train_loss = 0.3984794318675995
2020-06-12 11:24:21,751 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 11:31:32,613 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:31:36,096 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=14778
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2373579740524292
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Steps = 49600/278576
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - dev_loss = 0.212978 || dev_eval_scores = {'perplexity': 1.2373579740524292}
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO - train_loss = 0.3960722088813782
2020-06-12 11:31:36,097 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 11:38:48,257 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=15178
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2339407205581665
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Steps = 50000/278576
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - dev_loss = 0.210213 || dev_eval_scores = {'perplexity': 1.2339407205581665}
2020-06-12 11:38:51,723 - crisis_transformers.trainer - INFO - train_loss = 0.39352700114250183
2020-06-12 11:38:51,724 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 11:46:03,817 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:46:07,113 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=15578
2020-06-12 11:46:07,113 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 11:46:07,113 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:46:07,113 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 11:46:07,113 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 11:46:07,113 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 11:46:07,113 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2312901020050049
2020-06-12 11:46:07,113 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 11:46:07,114 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 11:46:07,114 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 11:46:07,114 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 11:46:07,114 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 11:46:07,114 - crisis_transformers.trainer - INFO - Steps = 50400/278576
2020-06-12 11:46:07,114 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 11:46:07,114 - crisis_transformers.trainer - INFO - dev_loss = 0.208062 || dev_eval_scores = {'perplexity': 1.2312901020050049}
2020-06-12 11:46:07,114 - crisis_transformers.trainer - INFO - train_loss = 0.39096903800964355
2020-06-12 11:46:07,114 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 11:53:18,503 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:53:21,880 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=15978
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2268590927124023
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Steps = 50800/278576
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 11:53:21,881 - crisis_transformers.trainer - INFO - dev_loss = 0.204457 || dev_eval_scores = {'perplexity': 1.2268590927124023}
2020-06-12 11:53:21,882 - crisis_transformers.trainer - INFO - train_loss = 0.3884601294994354
2020-06-12 11:53:21,882 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 12:00:33,247 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:00:36,497 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=16378
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.224045991897583
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Steps = 51200/278576
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - dev_loss = 0.202162 || dev_eval_scores = {'perplexity': 1.224045991897583}
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO - train_loss = 0.38594967126846313
2020-06-12 12:00:36,498 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 12:07:47,479 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:07:51,260 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=16778
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.21811842918396
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Steps = 51600/278576
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - dev_loss = 0.197307 || dev_eval_scores = {'perplexity': 1.21811842918396}
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO - train_loss = 0.3834236264228821
2020-06-12 12:07:51,261 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 12:15:01,910 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:15:05,101 - crisis_transformers.trainer - INFO - Save check-point at epoch=2 step=17178
2020-06-12 12:15:05,103 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 12:15:05,103 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:15:05,103 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 12:15:05,103 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 12:15:05,103 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2158831357955933
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 13s
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO - Epoch = 3/16
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO - Steps = 52000/278576
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO - dev_loss = 0.195471 || dev_eval_scores = {'perplexity': 1.2158831357955933}
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO - train_loss = 0.3809737265110016
2020-06-12 12:15:05,104 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 12:17:19,046 - crisis_transformers.trainer - INFO - epoch 3 ends, 13 epoches left
2020-06-12 12:17:19,049 - crisis_transformers.trainer - INFO -
global_average_loss=1.0984210968017578,global_steps=52233 on training set
2020-06-12 12:22:16,490 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=167
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2130458354949951
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Steps = 52400/278576
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 12:22:19,854 - crisis_transformers.trainer - INFO - dev_loss = 0.193134 || dev_eval_scores = {'perplexity': 1.2130458354949951}
2020-06-12 12:22:19,855 - crisis_transformers.trainer - INFO - train_loss = 0.25673729181289673
2020-06-12 12:22:19,855 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 12:29:30,907 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=567
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.210909128189087
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 12:29:34,508 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 12:29:34,509 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 12:29:34,509 - crisis_transformers.trainer - INFO - Steps = 52800/278576
2020-06-12 12:29:34,509 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 12:29:34,509 - crisis_transformers.trainer - INFO - dev_loss = 0.191371 || dev_eval_scores = {'perplexity': 1.210909128189087}
2020-06-12 12:29:34,509 - crisis_transformers.trainer - INFO - train_loss = 0.25955724716186523
2020-06-12 12:29:34,509 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 12:36:45,199 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:36:48,918 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=967
2020-06-12 12:36:48,918 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 12:36:48,918 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:36:48,918 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 12:36:48,918 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 12:36:48,918 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 12:36:48,918 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2072252035140991
2020-06-12 12:36:48,918 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 12:36:48,918 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 12:36:48,918 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 12:36:48,919 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 12:36:48,919 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 12:36:48,919 - crisis_transformers.trainer - INFO - Steps = 53200/278576
2020-06-12 12:36:48,919 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 12:36:48,919 - crisis_transformers.trainer - INFO - dev_loss = 0.188325 || dev_eval_scores = {'perplexity': 1.2072252035140991}
2020-06-12 12:36:48,919 - crisis_transformers.trainer - INFO - train_loss = 0.2595442533493042
2020-06-12 12:36:48,920 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 12:43:59,962 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:44:03,265 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=1367
2020-06-12 12:44:03,280 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 12:44:03,280 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:44:03,280 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 12:44:03,280 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 12:44:03,280 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 12:44:03,280 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2031614780426025
2020-06-12 12:44:03,280 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 12:44:03,280 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 12:44:03,280 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 12:44:03,281 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 12:44:03,281 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 12:44:03,281 - crisis_transformers.trainer - INFO - Steps = 53600/278576
2020-06-12 12:44:03,281 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 12:44:03,282 - crisis_transformers.trainer - INFO - dev_loss = 0.184953 || dev_eval_scores = {'perplexity': 1.2031614780426025}
2020-06-12 12:44:03,297 - crisis_transformers.trainer - INFO - train_loss = 0.25946447253227234
2020-06-12 12:44:03,297 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 12:51:15,360 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:51:18,633 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=1767
2020-06-12 12:51:18,648 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 12:51:18,648 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:51:18,649 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 12:51:18,649 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 12:51:18,649 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 12:51:18,649 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2021421194076538
2020-06-12 12:51:18,649 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 12:51:18,649 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 12:51:18,649 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 12:51:18,650 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 12:51:18,650 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 12:51:18,650 - crisis_transformers.trainer - INFO - Steps = 54000/278576
2020-06-12 12:51:18,650 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 12:51:18,650 - crisis_transformers.trainer - INFO - dev_loss = 0.184105 || dev_eval_scores = {'perplexity': 1.2021421194076538}
2020-06-12 12:51:18,669 - crisis_transformers.trainer - INFO - train_loss = 0.2583455443382263
2020-06-12 12:51:18,669 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2021421194076538
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Steps = 54400/278576
2020-06-12 12:58:30,080 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 12:58:30,081 - crisis_transformers.trainer - INFO - dev_loss = 0.184208 || dev_eval_scores = {'perplexity': 1.2022662162780762}
2020-06-12 12:58:30,081 - crisis_transformers.trainer - INFO - train_loss = 0.25629064440727234
2020-06-12 12:58:30,081 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 13:05:42,132 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 13:05:42,133 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:05:42,133 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 13:05:42,133 - crisis_transformers.trainer - INFO - Early stop count = 2/20
2020-06-12 13:05:42,133 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 13:05:42,133 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2021421194076538
2020-06-12 13:05:42,133 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 13:05:42,133 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 13:05:42,133 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 13:05:42,134 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 13:05:42,134 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 13:05:42,134 - crisis_transformers.trainer - INFO - Steps = 54800/278576
2020-06-12 13:05:42,134 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 13:05:42,134 - crisis_transformers.trainer - INFO - dev_loss = 0.187595 || dev_eval_scores = {'perplexity': 1.2063448429107666}
2020-06-12 13:05:42,134 - crisis_transformers.trainer - INFO - train_loss = 0.25469452142715454
2020-06-12 13:05:42,134 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 13:12:53,734 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 13:12:53,736 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:12:53,736 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 13:12:53,736 - crisis_transformers.trainer - INFO - Early stop count = 3/20
2020-06-12 13:12:53,736 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 13:12:53,736 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.2021421194076538
2020-06-12 13:12:53,737 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 13:12:53,737 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 13:12:53,737 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 13:12:53,737 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 13:12:53,737 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 13:12:53,737 - crisis_transformers.trainer - INFO - Steps = 55200/278576
2020-06-12 13:12:53,737 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 13:12:53,737 - crisis_transformers.trainer - INFO - dev_loss = 0.184251 || dev_eval_scores = {'perplexity': 1.2023180723190308}
2020-06-12 13:12:53,737 - crisis_transformers.trainer - INFO - train_loss = 0.25338509678840637
2020-06-12 13:12:53,737 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 13:20:04,638 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:20:07,839 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=3367
2020-06-12 13:20:07,854 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 13:20:07,854 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:20:07,854 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 13:20:07,854 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 13:20:07,854 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 13:20:07,854 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.191463589668274
2020-06-12 13:20:07,854 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 13:20:07,854 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 13:20:07,854 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 13:20:07,855 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 13:20:07,856 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 13:20:07,856 - crisis_transformers.trainer - INFO - Steps = 55600/278576
2020-06-12 13:20:07,856 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 13:20:07,856 - crisis_transformers.trainer - INFO - dev_loss = 0.175182 || dev_eval_scores = {'perplexity': 1.191463589668274}
2020-06-12 13:20:07,876 - crisis_transformers.trainer - INFO - train_loss = 0.2521595358848572
2020-06-12 13:20:07,876 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 13:27:19,652 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:27:22,821 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=3767
2020-06-12 13:27:22,836 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 13:27:22,836 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:27:22,836 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 13:27:22,836 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 13:27:22,836 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 13:27:22,836 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1891900300979614
2020-06-12 13:27:22,836 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 13:27:22,836 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 13:27:22,837 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 13:27:22,837 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 13:27:22,837 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 13:27:22,837 - crisis_transformers.trainer - INFO - Steps = 56000/278576
2020-06-12 13:27:22,837 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 13:27:22,837 - crisis_transformers.trainer - INFO - dev_loss = 0.173272 || dev_eval_scores = {'perplexity': 1.1891900300979614}
2020-06-12 13:27:22,856 - crisis_transformers.trainer - INFO - train_loss = 0.251168429851532
2020-06-12 13:27:22,856 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1891900300979614
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Steps = 56400/278576
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - dev_loss = 0.174895 || dev_eval_scores = {'perplexity': 1.1911215782165527}
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO - train_loss = 0.2495262175798416
2020-06-12 13:34:34,678 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 13:41:45,895 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:41:49,254 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=4567
2020-06-12 13:41:49,270 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 13:41:49,270 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:41:49,270 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 13:41:49,270 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 13:41:49,270 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 13:41:49,270 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1830016374588013
2020-06-12 13:41:49,270 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 13:41:49,271 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 13:41:49,271 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 13:41:49,272 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 13:41:49,272 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 13:41:49,272 - crisis_transformers.trainer - INFO - Steps = 56800/278576
2020-06-12 13:41:49,272 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 13:41:49,272 - crisis_transformers.trainer - INFO - dev_loss = 0.168055 || dev_eval_scores = {'perplexity': 1.1830016374588013}
2020-06-12 13:41:49,290 - crisis_transformers.trainer - INFO - train_loss = 0.24820448458194733
2020-06-12 13:41:49,290 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 13:49:01,184 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:49:04,330 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=4967
2020-06-12 13:49:04,346 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 13:49:04,346 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:49:04,346 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 13:49:04,346 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 13:49:04,346 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 13:49:04,346 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1823091506958008
2020-06-12 13:49:04,346 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 13:49:04,346 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 13:49:04,346 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 13:49:04,348 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 13:49:04,348 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 13:49:04,348 - crisis_transformers.trainer - INFO - Steps = 57200/278576
2020-06-12 13:49:04,348 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 13:49:04,348 - crisis_transformers.trainer - INFO - dev_loss = 0.167469 || dev_eval_scores = {'perplexity': 1.1823091506958008}
2020-06-12 13:49:04,366 - crisis_transformers.trainer - INFO - train_loss = 0.24676309525966644
2020-06-12 13:49:04,366 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1823091506958008
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Steps = 57600/278576
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - dev_loss = 0.168122 || dev_eval_scores = {'perplexity': 1.1830805540084839}
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO - train_loss = 0.2456163614988327
2020-06-12 13:56:16,108 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 14:03:27,611 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 14:03:27,612 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:03:27,612 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 14:03:27,612 - crisis_transformers.trainer - INFO - Early stop count = 2/20
2020-06-12 14:03:27,612 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 14:03:27,612 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1823091506958008
2020-06-12 14:03:27,612 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 14:03:27,612 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 14:03:27,612 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 14:03:27,612 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 14:03:27,612 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 14:03:27,613 - crisis_transformers.trainer - INFO - Steps = 58000/278576
2020-06-12 14:03:27,613 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 14:03:27,613 - crisis_transformers.trainer - INFO - dev_loss = 0.168360 || dev_eval_scores = {'perplexity': 1.1833629608154297}
2020-06-12 14:03:27,613 - crisis_transformers.trainer - INFO - train_loss = 0.24447211623191833
2020-06-12 14:03:27,613 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 14:10:39,369 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:10:42,563 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=6167
2020-06-12 14:10:42,580 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 14:10:42,580 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:10:42,580 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 14:10:42,580 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 14:10:42,580 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 14:10:42,580 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1757748126983643
2020-06-12 14:10:42,580 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 14:10:42,580 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 14:10:42,580 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 14:10:42,581 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 14:10:42,581 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 14:10:42,581 - crisis_transformers.trainer - INFO - Steps = 58400/278576
2020-06-12 14:10:42,581 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 14:10:42,581 - crisis_transformers.trainer - INFO - dev_loss = 0.161927 || dev_eval_scores = {'perplexity': 1.1757748126983643}
2020-06-12 14:10:42,599 - crisis_transformers.trainer - INFO - train_loss = 0.24326415359973907
2020-06-12 14:10:42,599 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 14:17:54,473 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:17:57,675 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=6567
2020-06-12 14:17:57,691 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 14:17:57,691 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:17:57,691 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 14:17:57,691 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 14:17:57,691 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 14:17:57,691 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1724531650543213
2020-06-12 14:17:57,691 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 14:17:57,691 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 14:17:57,691 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 14:17:57,692 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 14:17:57,692 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 14:17:57,692 - crisis_transformers.trainer - INFO - Steps = 58800/278576
2020-06-12 14:17:57,692 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 14:17:57,692 - crisis_transformers.trainer - INFO - dev_loss = 0.159098 || dev_eval_scores = {'perplexity': 1.1724531650543213}
2020-06-12 14:17:57,710 - crisis_transformers.trainer - INFO - train_loss = 0.24194355309009552
2020-06-12 14:17:57,710 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 14:25:09,648 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:25:13,392 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=6967
2020-06-12 14:25:13,407 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 14:25:13,407 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:25:13,407 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 14:25:13,407 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 14:25:13,407 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 14:25:13,407 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1723699569702148
2020-06-12 14:25:13,407 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 14:25:13,407 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 14:25:13,407 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 14:25:13,408 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 14:25:13,408 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 14:25:13,408 - crisis_transformers.trainer - INFO - Steps = 59200/278576
2020-06-12 14:25:13,408 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 14:25:13,408 - crisis_transformers.trainer - INFO - dev_loss = 0.159027 || dev_eval_scores = {'perplexity': 1.1723699569702148}
2020-06-12 14:25:13,426 - crisis_transformers.trainer - INFO - train_loss = 0.24068011343479156
2020-06-12 14:25:13,426 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 14:32:25,725 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:32:28,988 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=7367
2020-06-12 14:32:29,004 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 14:32:29,004 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:32:29,004 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 14:32:29,004 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 14:32:29,004 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 14:32:29,004 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1677402257919312
2020-06-12 14:32:29,004 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 14:32:29,004 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 14:32:29,004 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 14:32:29,005 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 14:32:29,005 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 14:32:29,005 - crisis_transformers.trainer - INFO - Steps = 59600/278576
2020-06-12 14:32:29,005 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 14:32:29,005 - crisis_transformers.trainer - INFO - dev_loss = 0.155071 || dev_eval_scores = {'perplexity': 1.1677402257919312}
2020-06-12 14:32:29,024 - crisis_transformers.trainer - INFO - train_loss = 0.23944209516048431
2020-06-12 14:32:29,024 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1677402257919312
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Steps = 60000/278576
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - dev_loss = 0.160010 || dev_eval_scores = {'perplexity': 1.1735223531723022}
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO - train_loss = 0.23837868869304657
2020-06-12 14:39:41,605 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 14:46:52,988 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:46:55,997 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=8167
2020-06-12 14:46:56,013 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 14:46:56,013 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:46:56,013 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 14:46:56,013 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 14:46:56,013 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 14:46:56,013 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1659613847732544
2020-06-12 14:46:56,013 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 14:46:56,013 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 14:46:56,013 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 14:46:56,014 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 14:46:56,015 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 14:46:56,015 - crisis_transformers.trainer - INFO - Steps = 60400/278576
2020-06-12 14:46:56,015 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 14:46:56,015 - crisis_transformers.trainer - INFO - dev_loss = 0.153546 || dev_eval_scores = {'perplexity': 1.1659613847732544}
2020-06-12 14:46:56,033 - crisis_transformers.trainer - INFO - train_loss = 0.23715026676654816
2020-06-12 14:46:56,033 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 14:54:07,918 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:54:10,976 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=8567
2020-06-12 14:54:10,989 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.165794014930725
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Steps = 60800/278576
2020-06-12 14:54:10,990 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 14:54:10,991 - crisis_transformers.trainer - INFO - dev_loss = 0.153402 || dev_eval_scores = {'perplexity': 1.165794014930725}
2020-06-12 14:54:11,007 - crisis_transformers.trainer - INFO - train_loss = 0.23593905568122864
2020-06-12 14:54:11,007 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 15:01:22,795 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:01:25,973 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=8967
2020-06-12 15:01:25,989 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 15:01:25,989 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:01:25,989 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 15:01:25,989 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 15:01:25,989 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 15:01:25,989 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.161121129989624
2020-06-12 15:01:25,989 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 15:01:25,989 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 15:01:25,989 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 15:01:25,990 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 15:01:25,990 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 15:01:25,990 - crisis_transformers.trainer - INFO - Steps = 61200/278576
2020-06-12 15:01:25,990 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 15:01:25,990 - crisis_transformers.trainer - INFO - dev_loss = 0.149386 || dev_eval_scores = {'perplexity': 1.161121129989624}
2020-06-12 15:01:26,009 - crisis_transformers.trainer - INFO - train_loss = 0.2347162663936615
2020-06-12 15:01:26,009 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 15:08:37,941 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:08:41,095 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=9367
2020-06-12 15:08:41,110 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 15:08:41,110 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:08:41,110 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 15:08:41,110 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 15:08:41,111 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 15:08:41,111 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.159262776374817
2020-06-12 15:08:41,111 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 15:08:41,111 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 15:08:41,111 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 15:08:41,112 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 15:08:41,112 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 15:08:41,112 - crisis_transformers.trainer - INFO - Steps = 61600/278576
2020-06-12 15:08:41,112 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 15:08:41,112 - crisis_transformers.trainer - INFO - dev_loss = 0.147784 || dev_eval_scores = {'perplexity': 1.159262776374817}
2020-06-12 15:08:41,131 - crisis_transformers.trainer - INFO - train_loss = 0.2334117591381073
2020-06-12 15:08:41,131 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 15:15:53,144 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.159262776374817
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Steps = 62000/278576
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - dev_loss = 0.149117 || dev_eval_scores = {'perplexity': 1.1608085632324219}
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO - train_loss = 0.23231545090675354
2020-06-12 15:15:53,145 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 15:23:04,214 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:23:07,484 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=10167
2020-06-12 15:23:07,500 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 15:23:07,500 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:23:07,500 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 15:23:07,500 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 15:23:07,500 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 15:23:07,500 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1586897373199463
2020-06-12 15:23:07,501 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 15:23:07,501 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 15:23:07,501 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 15:23:07,502 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 15:23:07,502 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 15:23:07,502 - crisis_transformers.trainer - INFO - Steps = 62400/278576
2020-06-12 15:23:07,502 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 15:23:07,502 - crisis_transformers.trainer - INFO - dev_loss = 0.147290 || dev_eval_scores = {'perplexity': 1.1586897373199463}
2020-06-12 15:23:07,520 - crisis_transformers.trainer - INFO - train_loss = 0.23095978796482086
2020-06-12 15:23:07,520 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 15:30:19,155 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:30:22,774 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=10567
2020-06-12 15:30:22,775 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 15:30:22,775 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:30:22,775 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 15:30:22,775 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 15:30:22,775 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 15:30:22,776 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.155853509902954
2020-06-12 15:30:22,776 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 15:30:22,776 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 15:30:22,776 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 15:30:22,777 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 15:30:22,777 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 15:30:22,777 - crisis_transformers.trainer - INFO - Steps = 62800/278576
2020-06-12 15:30:22,777 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 15:30:22,777 - crisis_transformers.trainer - INFO - dev_loss = 0.144839 || dev_eval_scores = {'perplexity': 1.155853509902954}
2020-06-12 15:30:22,777 - crisis_transformers.trainer - INFO - train_loss = 0.22986294329166412
2020-06-12 15:30:22,777 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 15:37:34,325 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 15:37:34,325 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.155853509902954
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Steps = 63200/278576
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - dev_loss = 0.146531 || dev_eval_scores = {'perplexity': 1.1578106880187988}
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO - train_loss = 0.2286159247159958
2020-06-12 15:37:34,326 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 15:44:45,801 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:44:48,841 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=11367
2020-06-12 15:44:48,857 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 15:44:48,857 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:44:48,857 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 15:44:48,857 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 15:44:48,857 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 15:44:48,857 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1531232595443726
2020-06-12 15:44:48,857 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 15:44:48,857 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 15:44:48,857 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 15:44:48,858 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 15:44:48,858 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 15:44:48,858 - crisis_transformers.trainer - INFO - Steps = 63600/278576
2020-06-12 15:44:48,858 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 15:44:48,858 - crisis_transformers.trainer - INFO - dev_loss = 0.142474 || dev_eval_scores = {'perplexity': 1.1531232595443726}
2020-06-12 15:44:48,865 - crisis_transformers.trainer - INFO - train_loss = 0.22760188579559326
2020-06-12 15:44:48,865 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 15:52:00,452 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:52:04,180 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=11767
2020-06-12 15:52:04,195 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 15:52:04,196 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:52:04,196 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 15:52:04,196 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 15:52:04,196 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 15:52:04,196 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1524842977523804
2020-06-12 15:52:04,196 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 15:52:04,196 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 15:52:04,196 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 15:52:04,197 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 15:52:04,197 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 15:52:04,197 - crisis_transformers.trainer - INFO - Steps = 64000/278576
2020-06-12 15:52:04,197 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 15:52:04,197 - crisis_transformers.trainer - INFO - dev_loss = 0.141920 || dev_eval_scores = {'perplexity': 1.1524842977523804}
2020-06-12 15:52:04,203 - crisis_transformers.trainer - INFO - train_loss = 0.22645704448223114
2020-06-12 15:52:04,203 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 15:59:15,356 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:59:18,493 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=12167
2020-06-12 15:59:18,496 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 15:59:18,496 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 15:59:18,496 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 15:59:18,496 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 15:59:18,496 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 15:59:18,497 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1517306566238403
2020-06-12 15:59:18,497 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 15:59:18,497 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 15:59:18,497 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 15:59:18,498 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 15:59:18,498 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 15:59:18,498 - crisis_transformers.trainer - INFO - Steps = 64400/278576
2020-06-12 15:59:18,498 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 15:59:18,498 - crisis_transformers.trainer - INFO - dev_loss = 0.141266 || dev_eval_scores = {'perplexity': 1.1517306566238403}
2020-06-12 15:59:18,511 - crisis_transformers.trainer - INFO - train_loss = 0.22518599033355713
2020-06-12 15:59:18,511 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 16:06:30,098 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:06:33,674 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=12567
2020-06-12 16:06:33,689 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 16:06:33,689 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:06:33,689 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 16:06:33,689 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 16:06:33,689 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 16:06:33,689 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1506377458572388
2020-06-12 16:06:33,689 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 16:06:33,689 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 16:06:33,689 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 16:06:33,690 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 16:06:33,690 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 16:06:33,690 - crisis_transformers.trainer - INFO - Steps = 64800/278576
2020-06-12 16:06:33,690 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 16:06:33,690 - crisis_transformers.trainer - INFO - dev_loss = 0.140316 || dev_eval_scores = {'perplexity': 1.1506377458572388}
2020-06-12 16:06:33,705 - crisis_transformers.trainer - INFO - train_loss = 0.2241048812866211
2020-06-12 16:06:33,705 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 16:13:44,939 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:13:48,305 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=12967
2020-06-12 16:13:48,319 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 16:13:48,319 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:13:48,320 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 16:13:48,320 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 16:13:48,320 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 16:13:48,320 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1486502885818481
2020-06-12 16:13:48,320 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 16:13:48,320 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 16:13:48,320 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 16:13:48,321 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 16:13:48,321 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 16:13:48,321 - crisis_transformers.trainer - INFO - Steps = 65200/278576
2020-06-12 16:13:48,321 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 16:13:48,321 - crisis_transformers.trainer - INFO - dev_loss = 0.138588 || dev_eval_scores = {'perplexity': 1.1486502885818481}
2020-06-12 16:13:48,348 - crisis_transformers.trainer - INFO - train_loss = 0.22296540439128876
2020-06-12 16:13:48,348 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 16:21:01,926 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:21:05,595 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=13367
2020-06-12 16:21:05,596 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 16:21:05,596 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:21:05,596 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 16:21:05,596 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 16:21:05,596 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 16:21:05,596 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1468722820281982
2020-06-12 16:21:05,596 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 16:21:05,596 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 16:21:05,596 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 16:21:05,597 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 17s
2020-06-12 16:21:05,597 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 16:21:05,597 - crisis_transformers.trainer - INFO - Steps = 65600/278576
2020-06-12 16:21:05,597 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 16:21:05,597 - crisis_transformers.trainer - INFO - dev_loss = 0.137039 || dev_eval_scores = {'perplexity': 1.1468722820281982}
2020-06-12 16:21:05,597 - crisis_transformers.trainer - INFO - train_loss = 0.2220388650894165
2020-06-12 16:21:05,597 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 16:28:16,835 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:28:20,007 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=13767
2020-06-12 16:28:20,008 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 16:28:20,008 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:28:20,008 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 16:28:20,008 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 16:28:20,008 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 16:28:20,008 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1454410552978516
2020-06-12 16:28:20,008 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 16:28:20,008 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 16:28:20,008 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 16:28:20,009 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 16:28:20,009 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 16:28:20,009 - crisis_transformers.trainer - INFO - Steps = 66000/278576
2020-06-12 16:28:20,009 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 16:28:20,009 - crisis_transformers.trainer - INFO - dev_loss = 0.135790 || dev_eval_scores = {'perplexity': 1.1454410552978516}
2020-06-12 16:28:20,010 - crisis_transformers.trainer - INFO - train_loss = 0.22106683254241943
2020-06-12 16:28:20,010 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 16:35:31,636 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:35:35,306 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=14167
2020-06-12 16:35:35,322 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 16:35:35,322 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:35:35,322 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 16:35:35,322 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 16:35:35,322 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 16:35:35,322 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1435331106185913
2020-06-12 16:35:35,322 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 16:35:35,322 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 16:35:35,322 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 16:35:35,323 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 16:35:35,323 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 16:35:35,323 - crisis_transformers.trainer - INFO - Steps = 66400/278576
2020-06-12 16:35:35,323 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 16:35:35,323 - crisis_transformers.trainer - INFO - dev_loss = 0.134123 || dev_eval_scores = {'perplexity': 1.1435331106185913}
2020-06-12 16:35:35,324 - crisis_transformers.trainer - INFO - train_loss = 0.2200937420129776
2020-06-12 16:35:35,324 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 16:42:46,589 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 16:42:46,589 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:42:46,589 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 16:42:46,589 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1435331106185913
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - Steps = 66800/278576
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - dev_loss = 0.139419 || dev_eval_scores = {'perplexity': 1.1496059894561768}
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO - train_loss = 0.21907271444797516
2020-06-12 16:42:46,590 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 16:49:57,796 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:50:01,478 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=14967
2020-06-12 16:50:01,491 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 16:50:01,491 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:50:01,491 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 16:50:01,491 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 16:50:01,491 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 16:50:01,491 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1425509452819824
2020-06-12 16:50:01,491 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 16:50:01,491 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 16:50:01,491 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 16:50:01,492 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 16:50:01,492 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 16:50:01,492 - crisis_transformers.trainer - INFO - Steps = 67200/278576
2020-06-12 16:50:01,492 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 16:50:01,492 - crisis_transformers.trainer - INFO - dev_loss = 0.133263 || dev_eval_scores = {'perplexity': 1.1425509452819824}
2020-06-12 16:50:01,500 - crisis_transformers.trainer - INFO - train_loss = 0.2180401235818863
2020-06-12 16:50:01,500 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 16:57:12,820 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:57:15,939 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=15367
2020-06-12 16:57:15,940 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 16:57:15,940 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 16:57:15,940 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 16:57:15,940 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 16:57:15,940 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 16:57:15,940 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1421887874603271
2020-06-12 16:57:15,940 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 16:57:15,940 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 16:57:15,940 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 16:57:15,941 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 16:57:15,941 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 16:57:15,941 - crisis_transformers.trainer - INFO - Steps = 67600/278576
2020-06-12 16:57:15,941 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 16:57:15,941 - crisis_transformers.trainer - INFO - dev_loss = 0.132946 || dev_eval_scores = {'perplexity': 1.1421887874603271}
2020-06-12 16:57:15,941 - crisis_transformers.trainer - INFO - train_loss = 0.2170739322900772
2020-06-12 16:57:15,941 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 17:04:27,191 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 17:04:27,191 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:04:27,191 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 17:04:27,191 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 17:04:27,191 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 17:04:27,191 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1421887874603271
2020-06-12 17:04:27,192 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 17:04:27,192 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 17:04:27,192 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 17:04:27,192 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 17:04:27,192 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 17:04:27,192 - crisis_transformers.trainer - INFO - Steps = 68000/278576
2020-06-12 17:04:27,192 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 17:04:27,192 - crisis_transformers.trainer - INFO - dev_loss = 0.133038 || dev_eval_scores = {'perplexity': 1.1422935724258423}
2020-06-12 17:04:27,192 - crisis_transformers.trainer - INFO - train_loss = 0.21610437333583832
2020-06-12 17:04:27,192 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 17:11:38,816 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:11:41,945 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=16167
2020-06-12 17:11:41,958 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 17:11:41,958 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:11:41,958 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 17:11:41,958 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 17:11:41,958 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 17:11:41,958 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1390084028244019
2020-06-12 17:11:41,958 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 17:11:41,958 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 17:11:41,958 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 17:11:41,959 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 17:11:41,959 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 17:11:41,959 - crisis_transformers.trainer - INFO - Steps = 68400/278576
2020-06-12 17:11:41,959 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 17:11:41,959 - crisis_transformers.trainer - INFO - dev_loss = 0.130158 || dev_eval_scores = {'perplexity': 1.1390084028244019}
2020-06-12 17:11:41,975 - crisis_transformers.trainer - INFO - train_loss = 0.21520239114761353
2020-06-12 17:11:41,975 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 17:18:54,648 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 17:18:54,648 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:18:54,649 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 17:18:54,649 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 17:18:54,649 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 17:18:54,649 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1390084028244019
2020-06-12 17:18:54,649 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 17:18:54,649 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 17:18:54,649 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 17:18:54,650 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 17:18:54,650 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 17:18:54,650 - crisis_transformers.trainer - INFO - Steps = 68800/278576
2020-06-12 17:18:54,650 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 17:18:54,650 - crisis_transformers.trainer - INFO - dev_loss = 0.130209 || dev_eval_scores = {'perplexity': 1.1390659809112549}
2020-06-12 17:18:54,650 - crisis_transformers.trainer - INFO - train_loss = 0.21429920196533203
2020-06-12 17:18:54,650 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 17:26:06,245 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Early stop count = 2/20
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1390084028244019
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Steps = 69200/278576
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - dev_loss = 0.131858 || dev_eval_scores = {'perplexity': 1.1409462690353394}
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO - train_loss = 0.2133215069770813
2020-06-12 17:26:06,248 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 17:33:18,361 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:33:21,478 - crisis_transformers.trainer - INFO - Save check-point at epoch=3 step=17367
2020-06-12 17:33:21,481 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 17:33:21,481 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:33:21,481 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 17:33:21,481 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 17:33:21,481 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 17:33:21,481 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.135805368423462
2020-06-12 17:33:21,481 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 17:33:21,481 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 17:33:21,481 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 17:33:21,483 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 17:33:21,483 - crisis_transformers.trainer - INFO - Epoch = 4/16
2020-06-12 17:33:21,483 - crisis_transformers.trainer - INFO - Steps = 69600/278576
2020-06-12 17:33:21,483 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 17:33:21,483 - crisis_transformers.trainer - INFO - dev_loss = 0.127342 || dev_eval_scores = {'perplexity': 1.135805368423462}
2020-06-12 17:33:21,485 - crisis_transformers.trainer - INFO - train_loss = 0.21238122880458832
2020-06-12 17:33:21,485 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 17:33:46,659 - crisis_transformers.trainer - INFO - epoch 4 ends, 12 epoches left
2020-06-12 17:33:46,661 - crisis_transformers.trainer - INFO -
global_average_loss=0.8768848776817322,global_steps=69644 on training set
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.135805368423462
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Steps = 70000/278576
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 17:40:33,522 - crisis_transformers.trainer - INFO - dev_loss = 0.129323 || dev_eval_scores = {'perplexity': 1.138058066368103}
2020-06-12 17:40:33,523 - crisis_transformers.trainer - INFO - train_loss = 0.16184912621974945
2020-06-12 17:40:33,523 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Early stop count = 2/20
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.135805368423462
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Steps = 70400/278576
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - dev_loss = 0.127871 || dev_eval_scores = {'perplexity': 1.1364060640335083}
2020-06-12 17:47:45,699 - crisis_transformers.trainer - INFO - train_loss = 0.16288244724273682
2020-06-12 17:47:45,700 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 17:54:57,738 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:55:00,860 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=1156
2020-06-12 17:55:00,875 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 17:55:00,875 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 17:55:00,875 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 17:55:00,875 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 17:55:00,875 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 17:55:00,876 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1350326538085938
2020-06-12 17:55:00,876 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 17:55:00,876 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 17:55:00,876 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 17:55:00,876 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 17:55:00,877 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 17:55:00,877 - crisis_transformers.trainer - INFO - Steps = 70800/278576
2020-06-12 17:55:00,877 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 17:55:00,877 - crisis_transformers.trainer - INFO - dev_loss = 0.126661 || dev_eval_scores = {'perplexity': 1.1350326538085938}
2020-06-12 17:55:00,894 - crisis_transformers.trainer - INFO - train_loss = 0.16178201138973236
2020-06-12 17:55:00,894 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 18:02:13,264 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:02:16,346 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=1556
2020-06-12 18:02:16,360 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 18:02:16,360 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:02:16,360 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 18:02:16,360 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 18:02:16,361 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 18:02:16,361 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1342060565948486
2020-06-12 18:02:16,361 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 18:02:16,361 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 18:02:16,361 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 18:02:16,361 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 18:02:16,361 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 18:02:16,362 - crisis_transformers.trainer - INFO - Steps = 71200/278576
2020-06-12 18:02:16,362 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 18:02:16,362 - crisis_transformers.trainer - INFO - dev_loss = 0.125933 || dev_eval_scores = {'perplexity': 1.1342060565948486}
2020-06-12 18:02:16,378 - crisis_transformers.trainer - INFO - train_loss = 0.16210666298866272
2020-06-12 18:02:16,378 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 18:09:28,443 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:09:31,521 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=1956
2020-06-12 18:09:31,536 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 18:09:31,536 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:09:31,537 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 18:09:31,537 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 18:09:31,537 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 18:09:31,537 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.133441686630249
2020-06-12 18:09:31,537 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 18:09:31,537 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 18:09:31,537 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 18:09:31,538 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 18:09:31,538 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 18:09:31,538 - crisis_transformers.trainer - INFO - Steps = 71600/278576
2020-06-12 18:09:31,538 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 18:09:31,539 - crisis_transformers.trainer - INFO - dev_loss = 0.125259 || dev_eval_scores = {'perplexity': 1.133441686630249}
2020-06-12 18:09:31,556 - crisis_transformers.trainer - INFO - train_loss = 0.16150160133838654
2020-06-12 18:09:31,556 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 18:16:44,613 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:16:47,595 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=2356
2020-06-12 18:16:47,596 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 18:16:47,596 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:16:47,596 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 18:16:47,596 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 18:16:47,596 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 18:16:47,596 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1324461698532104
2020-06-12 18:16:47,596 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 18:16:47,596 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 18:16:47,596 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 18:16:47,597 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-12 18:16:47,597 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 18:16:47,597 - crisis_transformers.trainer - INFO - Steps = 72000/278576
2020-06-12 18:16:47,597 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 18:16:47,597 - crisis_transformers.trainer - INFO - dev_loss = 0.124380 || dev_eval_scores = {'perplexity': 1.1324461698532104}
2020-06-12 18:16:47,597 - crisis_transformers.trainer - INFO - train_loss = 0.160808727145195
2020-06-12 18:16:47,598 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 18:23:59,557 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:24:02,688 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=2756
2020-06-12 18:24:02,703 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 18:24:02,703 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:24:02,703 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 18:24:02,703 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 18:24:02,703 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 18:24:02,703 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1319714784622192
2020-06-12 18:24:02,703 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 18:24:02,703 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 18:24:02,703 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 18:24:02,704 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 18:24:02,704 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 18:24:02,704 - crisis_transformers.trainer - INFO - Steps = 72400/278576
2020-06-12 18:24:02,704 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 18:24:02,704 - crisis_transformers.trainer - INFO - dev_loss = 0.123961 || dev_eval_scores = {'perplexity': 1.1319714784622192}
2020-06-12 18:24:02,723 - crisis_transformers.trainer - INFO - train_loss = 0.16037367284297943
2020-06-12 18:24:02,723 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 18:31:14,824 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:31:17,933 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=3156
2020-06-12 18:31:17,949 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 18:31:17,949 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:31:17,949 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 18:31:17,949 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 18:31:17,949 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 18:31:17,950 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.131042718887329
2020-06-12 18:31:17,950 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 18:31:17,950 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 18:31:17,950 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 18:31:17,950 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 18:31:17,950 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 18:31:17,950 - crisis_transformers.trainer - INFO - Steps = 72800/278576
2020-06-12 18:31:17,950 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 18:31:17,951 - crisis_transformers.trainer - INFO - dev_loss = 0.123140 || dev_eval_scores = {'perplexity': 1.131042718887329}
2020-06-12 18:31:17,969 - crisis_transformers.trainer - INFO - train_loss = 0.16030311584472656
2020-06-12 18:31:17,970 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 18:38:30,048 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:38:33,201 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=3556
2020-06-12 18:38:33,201 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 18:38:33,202 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:38:33,202 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 18:38:33,202 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 18:38:33,202 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 18:38:33,202 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.130492091178894
2020-06-12 18:38:33,202 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 18:38:33,202 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 18:38:33,202 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 18:38:33,202 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 18:38:33,202 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 18:38:33,203 - crisis_transformers.trainer - INFO - Steps = 73200/278576
2020-06-12 18:38:33,203 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 18:38:33,203 - crisis_transformers.trainer - INFO - dev_loss = 0.122653 || dev_eval_scores = {'perplexity': 1.130492091178894}
2020-06-12 18:38:33,203 - crisis_transformers.trainer - INFO - train_loss = 0.16008983552455902
2020-06-12 18:38:33,203 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 18:45:45,223 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 18:45:45,223 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:45:45,223 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 18:45:45,223 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 18:45:45,223 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 18:45:45,223 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.130492091178894
2020-06-12 18:45:45,223 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 18:45:45,223 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 18:45:45,224 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 18:45:45,224 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 18:45:45,224 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 18:45:45,224 - crisis_transformers.trainer - INFO - Steps = 73600/278576
2020-06-12 18:45:45,224 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 18:45:45,224 - crisis_transformers.trainer - INFO - dev_loss = 0.126517 || dev_eval_scores = {'perplexity': 1.1348693370819092}
2020-06-12 18:45:45,224 - crisis_transformers.trainer - INFO - train_loss = 0.15986071527004242
2020-06-12 18:45:45,224 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Early stop count = 2/20
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.130492091178894
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Steps = 74000/278576
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - dev_loss = 0.123426 || dev_eval_scores = {'perplexity': 1.1313656568527222}
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO - train_loss = 0.15936923027038574
2020-06-12 18:52:56,441 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 19:00:08,504 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:00:11,867 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=4756
2020-06-12 19:00:11,881 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 19:00:11,881 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:00:11,881 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 19:00:11,881 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 19:00:11,881 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 19:00:11,881 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1283477544784546
2020-06-12 19:00:11,881 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 19:00:11,881 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 19:00:11,881 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 19:00:11,882 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 19:00:11,882 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 19:00:11,882 - crisis_transformers.trainer - INFO - Steps = 74400/278576
2020-06-12 19:00:11,882 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 19:00:11,882 - crisis_transformers.trainer - INFO - dev_loss = 0.120754 || dev_eval_scores = {'perplexity': 1.1283477544784546}
2020-06-12 19:00:11,898 - crisis_transformers.trainer - INFO - train_loss = 0.15900550782680511
2020-06-12 19:00:11,898 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1283477544784546
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Steps = 74800/278576
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 19:07:24,081 - crisis_transformers.trainer - INFO - dev_loss = 0.122012 || dev_eval_scores = {'perplexity': 1.1297677755355835}
2020-06-12 19:07:24,082 - crisis_transformers.trainer - INFO - train_loss = 0.15857523679733276
2020-06-12 19:07:24,082 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 19:14:35,509 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:14:38,680 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=5556
2020-06-12 19:14:38,690 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 19:14:38,690 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:14:38,690 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 19:14:38,690 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 19:14:38,690 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 19:14:38,690 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1280550956726074
2020-06-12 19:14:38,691 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 19:14:38,691 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 19:14:38,691 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 19:14:38,691 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 19:14:38,691 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 19:14:38,691 - crisis_transformers.trainer - INFO - Steps = 75200/278576
2020-06-12 19:14:38,692 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 19:14:38,692 - crisis_transformers.trainer - INFO - dev_loss = 0.120495 || dev_eval_scores = {'perplexity': 1.1280550956726074}
2020-06-12 19:14:38,709 - crisis_transformers.trainer - INFO - train_loss = 0.15801657736301422
2020-06-12 19:14:38,709 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 19:21:51,621 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 19:21:51,621 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1280550956726074
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Steps = 75600/278576
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 19:21:51,622 - crisis_transformers.trainer - INFO - dev_loss = 0.120551 || dev_eval_scores = {'perplexity': 1.1281187534332275}
2020-06-12 19:21:51,623 - crisis_transformers.trainer - INFO - train_loss = 0.15759296715259552
2020-06-12 19:21:51,623 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 19:29:02,897 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:29:06,248 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=6356
2020-06-12 19:29:06,257 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 19:29:06,257 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:29:06,257 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 19:29:06,257 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 19:29:06,257 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 19:29:06,257 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.126711368560791
2020-06-12 19:29:06,257 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 19:29:06,257 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 19:29:06,257 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 19:29:06,258 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 19:29:06,258 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 19:29:06,258 - crisis_transformers.trainer - INFO - Steps = 76000/278576
2020-06-12 19:29:06,259 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 19:29:06,259 - crisis_transformers.trainer - INFO - dev_loss = 0.119303 || dev_eval_scores = {'perplexity': 1.126711368560791}
2020-06-12 19:29:06,271 - crisis_transformers.trainer - INFO - train_loss = 0.15713545680046082
2020-06-12 19:29:06,271 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 19:36:18,058 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:36:21,263 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=6756
2020-06-12 19:36:21,270 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 19:36:21,270 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:36:21,270 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 19:36:21,271 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 19:36:21,271 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 19:36:21,271 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1253490447998047
2020-06-12 19:36:21,271 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 19:36:21,271 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 19:36:21,271 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 19:36:21,272 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 19:36:21,272 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 19:36:21,272 - crisis_transformers.trainer - INFO - Steps = 76400/278576
2020-06-12 19:36:21,272 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 19:36:21,272 - crisis_transformers.trainer - INFO - dev_loss = 0.118093 || dev_eval_scores = {'perplexity': 1.1253490447998047}
2020-06-12 19:36:21,285 - crisis_transformers.trainer - INFO - train_loss = 0.15685245394706726
2020-06-12 19:36:21,285 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 19:43:33,123 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:43:36,558 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=7156
2020-06-12 19:43:36,573 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 19:43:36,573 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:43:36,573 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 19:43:36,573 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 19:43:36,573 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 19:43:36,573 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1248881816864014
2020-06-12 19:43:36,573 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 19:43:36,573 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 19:43:36,573 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 19:43:36,574 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 19:43:36,574 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 19:43:36,574 - crisis_transformers.trainer - INFO - Steps = 76800/278576
2020-06-12 19:43:36,574 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 19:43:36,574 - crisis_transformers.trainer - INFO - dev_loss = 0.117684 || dev_eval_scores = {'perplexity': 1.1248881816864014}
2020-06-12 19:43:36,592 - crisis_transformers.trainer - INFO - train_loss = 0.15634950995445251
2020-06-12 19:43:36,592 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1248881816864014
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Steps = 77200/278576
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 19:50:48,591 - crisis_transformers.trainer - INFO - dev_loss = 0.117770 || dev_eval_scores = {'perplexity': 1.1249850988388062}
2020-06-12 19:50:48,592 - crisis_transformers.trainer - INFO - train_loss = 0.1558857262134552
2020-06-12 19:50:48,592 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 19:58:00,383 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:58:03,711 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=7956
2020-06-12 19:58:03,725 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 19:58:03,725 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 19:58:03,725 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 19:58:03,725 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 19:58:03,725 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 19:58:03,725 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1242866516113281
2020-06-12 19:58:03,725 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 19:58:03,725 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 19:58:03,725 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 19:58:03,726 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 19:58:03,726 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 19:58:03,726 - crisis_transformers.trainer - INFO - Steps = 77600/278576
2020-06-12 19:58:03,726 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 19:58:03,726 - crisis_transformers.trainer - INFO - dev_loss = 0.117149 || dev_eval_scores = {'perplexity': 1.1242866516113281}
2020-06-12 19:58:03,742 - crisis_transformers.trainer - INFO - train_loss = 0.15545228123664856
2020-06-12 19:58:03,742 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 20:05:15,952 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:05:19,295 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=8356
2020-06-12 20:05:19,307 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 20:05:19,307 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:05:19,307 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 20:05:19,307 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 20:05:19,307 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 20:05:19,307 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1240224838256836
2020-06-12 20:05:19,307 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 20:05:19,307 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 20:05:19,307 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 20:05:19,308 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 20:05:19,308 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 20:05:19,308 - crisis_transformers.trainer - INFO - Steps = 78000/278576
2020-06-12 20:05:19,308 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 20:05:19,308 - crisis_transformers.trainer - INFO - dev_loss = 0.116914 || dev_eval_scores = {'perplexity': 1.1240224838256836}
2020-06-12 20:05:19,322 - crisis_transformers.trainer - INFO - train_loss = 0.15514682233333588
2020-06-12 20:05:19,322 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 20:12:30,593 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:12:33,718 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=8756
2020-06-12 20:12:33,729 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 20:12:33,729 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:12:33,729 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 20:12:33,729 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 20:12:33,729 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 20:12:33,729 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1232761144638062
2020-06-12 20:12:33,729 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 20:12:33,729 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 20:12:33,729 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 20:12:33,730 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 20:12:33,730 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 20:12:33,730 - crisis_transformers.trainer - INFO - Steps = 78400/278576
2020-06-12 20:12:33,730 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 20:12:33,730 - crisis_transformers.trainer - INFO - dev_loss = 0.116250 || dev_eval_scores = {'perplexity': 1.1232761144638062}
2020-06-12 20:12:33,744 - crisis_transformers.trainer - INFO - train_loss = 0.15461046993732452
2020-06-12 20:12:33,744 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 20:19:45,605 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1232761144638062
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Steps = 78800/278576
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - dev_loss = 0.117339 || dev_eval_scores = {'perplexity': 1.12450110912323}
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO - train_loss = 0.15414145588874817
2020-06-12 20:19:45,606 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 20:26:57,592 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:27:00,603 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=9556
2020-06-12 20:27:00,617 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 20:27:00,617 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:27:00,617 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 20:27:00,617 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 20:27:00,617 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 20:27:00,617 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1222569942474365
2020-06-12 20:27:00,617 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 20:27:00,617 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 20:27:00,617 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 20:27:00,618 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 20:27:00,618 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 20:27:00,618 - crisis_transformers.trainer - INFO - Steps = 79200/278576
2020-06-12 20:27:00,618 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 20:27:00,618 - crisis_transformers.trainer - INFO - dev_loss = 0.115342 || dev_eval_scores = {'perplexity': 1.1222569942474365}
2020-06-12 20:27:00,635 - crisis_transformers.trainer - INFO - train_loss = 0.15376870334148407
2020-06-12 20:27:00,635 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 20:34:13,086 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:34:16,742 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=9956
2020-06-12 20:34:16,742 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 20:34:16,742 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:34:16,742 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 20:34:16,742 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 20:34:16,742 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 20:34:16,742 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1214654445648193
2020-06-12 20:34:16,742 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 20:34:16,742 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 20:34:16,742 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 20:34:16,743 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-12 20:34:16,743 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 20:34:16,743 - crisis_transformers.trainer - INFO - Steps = 79600/278576
2020-06-12 20:34:16,743 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 20:34:16,743 - crisis_transformers.trainer - INFO - dev_loss = 0.114636 || dev_eval_scores = {'perplexity': 1.1214654445648193}
2020-06-12 20:34:16,745 - crisis_transformers.trainer - INFO - train_loss = 0.1534395068883896
2020-06-12 20:34:16,745 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1214654445648193
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Steps = 80000/278576
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - dev_loss = 0.114919 || dev_eval_scores = {'perplexity': 1.1217821836471558}
2020-06-12 20:41:28,720 - crisis_transformers.trainer - INFO - train_loss = 0.15301528573036194
2020-06-12 20:41:28,721 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 20:48:40,263 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Early stop count = 2/20
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1214654445648193
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Steps = 80400/278576
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - dev_loss = 0.116439 || dev_eval_scores = {'perplexity': 1.123489499092102}
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO - train_loss = 0.1526806503534317
2020-06-12 20:48:40,265 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 20:55:51,280 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:55:54,387 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=11156
2020-06-12 20:55:54,402 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 20:55:54,403 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 20:55:54,403 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 20:55:54,403 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 20:55:54,403 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 20:55:54,403 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1208057403564453
2020-06-12 20:55:54,403 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 20:55:54,403 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 20:55:54,403 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 20:55:54,404 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 20:55:54,404 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 20:55:54,404 - crisis_transformers.trainer - INFO - Steps = 80800/278576
2020-06-12 20:55:54,404 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 20:55:54,404 - crisis_transformers.trainer - INFO - dev_loss = 0.114048 || dev_eval_scores = {'perplexity': 1.1208057403564453}
2020-06-12 20:55:54,422 - crisis_transformers.trainer - INFO - train_loss = 0.15231111645698547
2020-06-12 20:55:54,422 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1208057403564453
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 21:03:06,140 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 21:03:06,141 - crisis_transformers.trainer - INFO - Steps = 81200/278576
2020-06-12 21:03:06,141 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 21:03:06,141 - crisis_transformers.trainer - INFO - dev_loss = 0.114643 || dev_eval_scores = {'perplexity': 1.1214734315872192}
2020-06-12 21:03:06,141 - crisis_transformers.trainer - INFO - train_loss = 0.15194369852542877
2020-06-12 21:03:06,141 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 21:10:17,767 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:10:20,890 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=11956
2020-06-12 21:10:20,897 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 21:10:20,897 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:10:20,897 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 21:10:20,897 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 21:10:20,897 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 21:10:20,897 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1198288202285767
2020-06-12 21:10:20,897 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 21:10:20,897 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 21:10:20,897 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 21:10:20,898 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 21:10:20,898 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 21:10:20,898 - crisis_transformers.trainer - INFO - Steps = 81600/278576
2020-06-12 21:10:20,898 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 21:10:20,898 - crisis_transformers.trainer - INFO - dev_loss = 0.113176 || dev_eval_scores = {'perplexity': 1.1198288202285767}
2020-06-12 21:10:20,900 - crisis_transformers.trainer - INFO - train_loss = 0.15155275166034698
2020-06-12 21:10:20,900 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 21:17:33,024 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:17:36,142 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=12356
2020-06-12 21:17:36,143 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 21:17:36,143 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:17:36,143 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 21:17:36,143 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 21:17:36,143 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 21:17:36,143 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1191425323486328
2020-06-12 21:17:36,143 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 21:17:36,143 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 21:17:36,143 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 21:17:36,144 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 21:17:36,144 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 21:17:36,144 - crisis_transformers.trainer - INFO - Steps = 82000/278576
2020-06-12 21:17:36,144 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 21:17:36,144 - crisis_transformers.trainer - INFO - dev_loss = 0.112563 || dev_eval_scores = {'perplexity': 1.1191425323486328}
2020-06-12 21:17:36,151 - crisis_transformers.trainer - INFO - train_loss = 0.15120427310466766
2020-06-12 21:17:36,151 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1191425323486328
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Steps = 82400/278576
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - dev_loss = 0.113121 || dev_eval_scores = {'perplexity': 1.1197669506072998}
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO - train_loss = 0.1508565992116928
2020-06-12 21:24:48,557 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 21:32:00,891 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 21:32:00,893 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:32:00,893 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 21:32:00,893 - crisis_transformers.trainer - INFO - Early stop count = 2/20
2020-06-12 21:32:00,893 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1191425323486328
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 12s
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO - Steps = 82800/278576
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO - dev_loss = 0.114633 || dev_eval_scores = {'perplexity': 1.1214618682861328}
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO - train_loss = 0.15052178502082825
2020-06-12 21:32:00,894 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Early stop count = 3/20
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1191425323486328
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 11s
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Steps = 83200/278576
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - dev_loss = 0.112780 || dev_eval_scores = {'perplexity': 1.1193852424621582}
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO - train_loss = 0.15016387403011322
2020-06-12 21:39:11,977 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 21:46:23,357 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:46:26,472 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=13956
2020-06-12 21:46:26,487 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 21:46:26,487 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:46:26,487 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 21:46:26,487 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 21:46:26,487 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 21:46:26,487 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1182266473770142
2020-06-12 21:46:26,487 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 21:46:26,487 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 21:46:26,487 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 21:46:26,489 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 21:46:26,489 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 21:46:26,489 - crisis_transformers.trainer - INFO - Steps = 83600/278576
2020-06-12 21:46:26,489 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 21:46:26,489 - crisis_transformers.trainer - INFO - dev_loss = 0.111744 || dev_eval_scores = {'perplexity': 1.1182266473770142}
2020-06-12 21:46:26,507 - crisis_transformers.trainer - INFO - train_loss = 0.14978548884391785
2020-06-12 21:46:26,507 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 21:53:38,893 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:53:42,051 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=14356
2020-06-12 21:53:42,053 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 21:53:42,053 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 21:53:42,053 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 21:53:42,053 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 21:53:42,053 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 21:53:42,054 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1176480054855347
2020-06-12 21:53:42,054 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 21:53:42,054 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 21:53:42,054 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 21:53:42,054 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 21:53:42,054 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 21:53:42,054 - crisis_transformers.trainer - INFO - Steps = 84000/278576
2020-06-12 21:53:42,054 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 21:53:42,054 - crisis_transformers.trainer - INFO - dev_loss = 0.111226 || dev_eval_scores = {'perplexity': 1.1176480054855347}
2020-06-12 21:53:42,056 - crisis_transformers.trainer - INFO - train_loss = 0.1494358777999878
2020-06-12 21:53:42,056 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 22:00:52,990 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 22:00:56,106 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=14756
2020-06-12 22:00:56,119 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 22:00:56,119 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 22:00:56,119 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 22:00:56,119 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 22:00:56,119 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 22:00:56,120 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1175894737243652
2020-06-12 22:00:56,120 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 22:00:56,120 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 22:00:56,120 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 22:00:56,121 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 22:00:56,121 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 22:00:56,121 - crisis_transformers.trainer - INFO - Steps = 84400/278576
2020-06-12 22:00:56,121 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 22:00:56,121 - crisis_transformers.trainer - INFO - dev_loss = 0.111174 || dev_eval_scores = {'perplexity': 1.1175894737243652}
2020-06-12 22:00:56,136 - crisis_transformers.trainer - INFO - train_loss = 0.14908182621002197
2020-06-12 22:00:56,136 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 22:08:09,602 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 22:08:09,602 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 22:08:09,602 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 22:08:09,602 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 22:08:09,602 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 22:08:09,602 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1175894737243652
2020-06-12 22:08:09,603 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 22:08:09,603 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 22:08:09,603 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 22:08:09,603 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 13s
2020-06-12 22:08:09,603 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 22:08:09,603 - crisis_transformers.trainer - INFO - Steps = 84800/278576
2020-06-12 22:08:09,603 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 22:08:09,603 - crisis_transformers.trainer - INFO - dev_loss = 0.111978 || dev_eval_scores = {'perplexity': 1.1184886693954468}
2020-06-12 22:08:09,604 - crisis_transformers.trainer - INFO - train_loss = 0.1487855762243271
2020-06-12 22:08:09,604 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 22:15:29,618 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 22:15:33,237 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=15556
2020-06-12 22:15:33,238 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 22:15:33,238 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 22:15:33,238 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 22:15:33,238 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 22:15:33,238 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 22:15:33,238 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1161783933639526
2020-06-12 22:15:33,238 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 22:15:33,238 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 22:15:33,238 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 22:15:33,240 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 23s
2020-06-12 22:15:33,240 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 22:15:33,240 - crisis_transformers.trainer - INFO - Steps = 85200/278576
2020-06-12 22:15:33,240 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 22:15:33,240 - crisis_transformers.trainer - INFO - dev_loss = 0.109911 || dev_eval_scores = {'perplexity': 1.1161783933639526}
2020-06-12 22:15:33,242 - crisis_transformers.trainer - INFO - train_loss = 0.14848528802394867
2020-06-12 22:15:33,242 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 22:22:49,305 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Early stop count = 1/20
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1161783933639526
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 16s
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Steps = 85600/278576
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - dev_loss = 0.110636 || dev_eval_scores = {'perplexity': 1.1169886589050293}
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO - train_loss = 0.14812599122524261
2020-06-12 22:22:49,306 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 22:30:01,038 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 22:30:04,724 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=16356
2020-06-12 22:30:04,730 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 22:30:04,730 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 22:30:04,730 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 22:30:04,730 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 22:30:04,730 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 22:30:04,731 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1152490377426147
2020-06-12 22:30:04,731 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 22:30:04,731 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 22:30:04,731 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 22:30:04,731 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 15s
2020-06-12 22:30:04,731 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 22:30:04,731 - crisis_transformers.trainer - INFO - Steps = 86000/278576
2020-06-12 22:30:04,731 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 22:30:04,731 - crisis_transformers.trainer - INFO - dev_loss = 0.109078 || dev_eval_scores = {'perplexity': 1.1152490377426147}
2020-06-12 22:30:04,747 - crisis_transformers.trainer - INFO - train_loss = 0.14784550666809082
2020-06-12 22:30:04,747 - crisis_transformers.trainer - INFO -
********************************************
2020-06-12 22:37:16,018 - crisis_transformers.trainer - INFO - Save model to tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 22:37:19,119 - crisis_transformers.trainer - INFO - Save check-point at epoch=4 step=16756
2020-06-12 22:37:19,119 - crisis_transformers.trainer - INFO - ***** Evaluation report *****
2020-06-12 22:37:19,119 - crisis_transformers.trainer - INFO - Output path (short): tmp/gpt2_medium_for_source_code_code_generate
2020-06-12 22:37:19,119 - crisis_transformers.trainer - INFO - Early stop on: perplexity
2020-06-12 22:37:19,119 - crisis_transformers.trainer - INFO - Early stop count = 0/20
2020-06-12 22:37:19,119 - crisis_transformers.trainer - INFO - Eval steps = 400 or (iterations = 400)
2020-06-12 22:37:19,120 - crisis_transformers.trainer - INFO - Best score (perplexity) = -1.1139332056045532
2020-06-12 22:37:19,120 - crisis_transformers.trainer - INFO - Gradient Accumulation steps = 1
2020-06-12 22:37:19,120 - crisis_transformers.trainer - INFO - Num of training examples (actually no. of iterations per epoch for Iterable Dataset) = 69642
2020-06-12 22:37:19,120 - crisis_transformers.trainer - INFO - Num of development examples (actually no. of iterations per epoch for Iterable Dataset) = 7738
2020-06-12 22:37:19,121 - crisis_transformers.trainer - INFO - Time spent since last evaluation = 0h 7m 14s
2020-06-12 22:37:19,121 - crisis_transformers.trainer - INFO - Epoch = 5/16
2020-06-12 22:37:19,121 - crisis_transformers.trainer - INFO - Steps = 86400/278576
2020-06-12 22:37:19,121 - crisis_transformers.trainer - INFO - Instantaneous batch size per GPU = 2 and n_gpu = 2 so the input batch size = 4
2020-06-12 22:37:19,121 - crisis_transformers.trainer - INFO - dev_loss = 0.107897 || dev_eval_scores = {'perplexity': 1.1139332056045532}
2020-06-12 22:37:19,121 - crisis_transformers.trainer - INFO - train_loss = 0.14752434194087982
2020-06-12 22:37:19,121 - crisis_transformers.trainer - INFO -
********************************************
|