File size: 234,075 Bytes
28e186b |
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 |
2024-09-24 16:51:38,531 INFO StreamThr :47300 [internal.py:wandb_internal():85] W&B internal server running at pid: 47300, started at: 2024-09-24 16:51:38.530452
2024-09-24 16:51:38,532 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status
2024-09-24 16:51:38,545 INFO WriterThread:47300 [datastore.py:open_for_write():87] open: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/run-zpce2bat.wandb
2024-09-24 16:51:38,545 DEBUG SenderThread:47300 [sender.py:send():379] send: header
2024-09-24 16:51:38,581 DEBUG SenderThread:47300 [sender.py:send():379] send: run
2024-09-24 16:51:39,287 INFO SenderThread:47300 [dir_watcher.py:__init__():211] watching files in: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files
2024-09-24 16:51:39,287 INFO SenderThread:47300 [sender.py:_start_run_threads():1188] run started: zpce2bat with start time 1727207498.53145
2024-09-24 16:51:39,295 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: check_version
2024-09-24 16:51:39,296 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: check_version
2024-09-24 16:51:39,657 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: run_start
2024-09-24 16:51:39,667 DEBUG HandlerThread:47300 [system_info.py:__init__():26] System info init
2024-09-24 16:51:39,667 DEBUG HandlerThread:47300 [system_info.py:__init__():41] System info init done
2024-09-24 16:51:39,667 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:51:39,667 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:51:39,668 INFO HandlerThread:47300 [system_monitor.py:probe():214] Collecting system info
2024-09-24 16:51:39,668 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:51:39,671 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:51:39,671 DEBUG HandlerThread:47300 [system_info.py:probe():152] Probing system
2024-09-24 16:51:39,672 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:51:39,672 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:51:39,677 DEBUG HandlerThread:47300 [system_info.py:_probe_git():137] Probing git
2024-09-24 16:51:39,708 DEBUG HandlerThread:47300 [system_info.py:_probe_git():145] Probing git done
2024-09-24 16:51:39,708 DEBUG HandlerThread:47300 [system_info.py:probe():200] Probing system done
2024-09-24 16:51:39,708 DEBUG HandlerThread:47300 [system_monitor.py:probe():223] {'os': 'macOS-15.0-x86_64-i386-64bit', 'python': '3.11.9', 'heartbeatAt': '2024-09-24T19:51:39.671697', 'startedAt': '2024-09-24T19:51:38.520853', 'docker': None, 'cuda': None, 'args': (), 'state': 'running', 'program': '/Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/doutorado/secoes_contrato_rotulos_classificacao_texto_v1.ipynb', 'codePathLocal': 'secoes_contrato_rotulos_classificacao_texto_v1.ipynb', 'git': {'remote': 'https://github.com/marcelovidigal/retrieval_augmented_generation.git', 'commit': '23db3b3a0427b4dfac5df9b26ac2572134e857c4'}, 'email': 'marcelovidigal@gmail.com', 'root': '/Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation', 'host': 'mace16.local', 'username': 'marcelovidigal', 'executable': '/usr/local/bin/python3', 'cpu_count': 8, 'cpu_count_logical': 16, 'cpu_freq': {'current': 2300, 'min': 2300, 'max': 2300}, 'cpu_freq_per_core': [{'current': 2300, 'min': 2300, 'max': 2300}], 'disk': {'/': {'total': 931.546989440918, 'used': 9.93536376953125}}, 'memory': {'total': 16.0}}
2024-09-24 16:51:39,708 INFO HandlerThread:47300 [system_monitor.py:probe():224] Finished collecting system info
2024-09-24 16:51:39,708 INFO HandlerThread:47300 [system_monitor.py:probe():227] Publishing system info
2024-09-24 16:51:39,709 INFO HandlerThread:47300 [system_monitor.py:probe():229] Finished publishing system info
2024-09-24 16:51:39,712 DEBUG SenderThread:47300 [sender.py:send():379] send: files
2024-09-24 16:51:39,712 INFO SenderThread:47300 [sender.py:_save_file():1454] saving file wandb-metadata.json with policy now
2024-09-24 16:51:39,910 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: python_packages
2024-09-24 16:51:39,911 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: python_packages
2024-09-24 16:51:39,913 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:51:39,913 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:51:39,914 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:39,918 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:51:39,918 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:51:39,918 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:51:39,919 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:51:39,919 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:51:39,919 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:51:39,919 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:51:39,920 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:51:39,921 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:51:39,921 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:51:39,981 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:51:39,981 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:51:39,981 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:51:39,981 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:51:39,982 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:51:39,982 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:51:39,982 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:51:39,984 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:51:39,985 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:51:39,985 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:51:39,985 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:51:39,986 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:51:39,986 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:51:39,986 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:51:39,986 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:51:39,986 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:51:39,987 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:51:39,987 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:51:40,009 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:51:40,009 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:51:40,009 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:51:40,010 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:51:40,010 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:51:40,010 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:51:40,012 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:51:40,012 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:51:40,013 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:51:40,013 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:51:40,013 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:51:40,013 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:51:40,013 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:51:40,013 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:51:40,013 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:51:40,014 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:51:40,014 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:51:40,014 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:51:40,291 INFO Thread-12 :47300 [dir_watcher.py:_on_file_created():271] file/dir created: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/requirements.txt
2024-09-24 16:51:40,291 INFO Thread-12 :47300 [dir_watcher.py:_on_file_created():271] file/dir created: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/wandb-metadata.json
2024-09-24 16:51:40,442 DEBUG SenderThread:47300 [sender.py:send():379] send: telemetry
2024-09-24 16:51:40,443 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:51:40,444 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:51:40,444 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:51:40,860 INFO wandb-upload_0:47300 [upload_job.py:push():130] Uploaded file /var/folders/75/ky9nhpn56rg6m0h92jqhqfd80000gn/T/tmp85yss0szwandb/tjn490k7-wandb-metadata.json
2024-09-24 16:51:40,912 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:41,292 INFO Thread-12 :47300 [dir_watcher.py:_on_file_created():271] file/dir created: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:51:41,914 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:42,375 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:51:42,375 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:51:42,375 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:51:42,376 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:51:42,376 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:51:42,376 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:51:42,377 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:51:42,379 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:51:42,919 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:43,296 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:51:43,922 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:44,458 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:51:44,925 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:45,929 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:46,931 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:47,046 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:51:47,046 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:51:47,046 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:51:47,046 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:51:47,047 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:51:47,047 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:51:47,047 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:51:47,047 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:51:47,047 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:51:47,048 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:51:47,049 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:51:47,059 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:51:47,059 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:51:47,059 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:51:47,059 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:51:47,060 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:51:47,060 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:51:47,060 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:51:47,062 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:51:47,063 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:51:47,063 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:51:47,063 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:51:47,063 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:51:47,063 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:51:47,063 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:51:47,063 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:51:47,063 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:51:47,063 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:51:47,064 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:51:47,064 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:51:47,122 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:51:47,122 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:51:47,122 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:51:47,122 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:51:47,123 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:51:47,123 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:51:47,123 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:51:47,125 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:51:47,126 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:51:47,126 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:51:47,126 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:51:47,126 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:51:47,127 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:51:47,127 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:51:47,127 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:51:47,127 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:51:47,127 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:51:47,127 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:51:47,128 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:51:47,933 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:48,936 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:49,319 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:51:49,913 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:51:49,940 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:50,943 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:51,945 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:52,947 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:53,952 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:54,916 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:51:54,917 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:51:54,956 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:55,362 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:51:55,960 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:56,964 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:57,966 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:58,970 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:51:59,971 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:00,922 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:00,975 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:01,976 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:02,978 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:03,979 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:04,984 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:05,292 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:05,292 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:05,292 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:05,292 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:05,293 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:05,293 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:05,294 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:05,296 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:05,297 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:05,297 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:05,297 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:05,297 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:05,297 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:05,297 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:05,298 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:05,298 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:05,298 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:05,299 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:05,299 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:05,985 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:06,302 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:06,731 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:06,731 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:06,732 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:06,732 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:06,732 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:06,734 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:06,735 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:06,735 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:06,738 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:06,738 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:06,738 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:06,739 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:06,739 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:06,739 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:06,739 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:06,740 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:06,740 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:06,740 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:06,741 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:06,990 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:07,390 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:07,569 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:07,569 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:07,569 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:07,569 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:07,569 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:07,570 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:07,570 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:07,572 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:07,572 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:07,572 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:07,572 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:07,573 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:07,573 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:07,573 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:07,573 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:07,573 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:07,573 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:07,574 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:07,574 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:07,993 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:08,491 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:08,491 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:08,491 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:08,491 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:08,492 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:08,492 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:08,494 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:08,494 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:08,495 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:08,495 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:08,495 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:08,495 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:08,496 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:08,496 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:08,496 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:08,496 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:08,497 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:08,497 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:08,497 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:08,692 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:08,692 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:08,692 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:08,692 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:08,693 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:08,693 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:08,693 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:08,695 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:08,696 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:08,696 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:08,696 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:08,696 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:08,696 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:08,696 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:08,696 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:08,696 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:08,696 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:08,697 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:08,697 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:08,997 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:09,395 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:09,586 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:09,586 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:09,586 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:09,586 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:09,587 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:09,587 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:09,589 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:09,589 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:09,590 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:09,590 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:09,590 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:09,590 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:09,590 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:09,590 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:09,590 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:09,591 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:09,591 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:09,591 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:09,591 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:09,625 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:09,625 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:09,625 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:09,625 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:09,626 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:09,626 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:09,628 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:09,629 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:09,629 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:09,629 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:09,629 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:09,629 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:09,630 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:09,630 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:09,630 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:09,630 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:09,630 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:09,630 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:09,631 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:09,644 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:09,644 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:09,644 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:09,644 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:09,644 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:09,645 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:09,645 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:09,647 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:09,647 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:09,647 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:09,647 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:09,647 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:09,648 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:09,648 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:09,648 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:09,648 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:09,648 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:09,648 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:09,649 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:09,919 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:52:09,921 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:52:10,001 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:11,005 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:11,035 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:11,035 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:11,035 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:11,035 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:11,036 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:11,036 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:11,038 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:11,039 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:11,040 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:11,040 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:11,040 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:11,040 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:11,041 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:11,041 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:11,041 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:11,041 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:11,042 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:11,042 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:11,042 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:11,399 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:12,008 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:12,052 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:12,403 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/config.yaml
2024-09-24 16:52:12,809 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:12,809 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:12,809 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:12,809 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:12,810 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:12,811 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:12,813 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:12,814 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:12,814 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:12,814 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:12,814 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:12,815 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:12,815 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:12,815 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:12,815 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:12,815 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:12,816 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:12,816 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:12,816 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:13,012 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:13,403 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:14,014 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:15,018 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:15,409 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:16,021 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:17,025 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:17,934 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:18,028 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:18,563 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:18,563 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:18,563 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:18,563 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:18,563 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:18,563 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:18,565 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:18,566 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:18,566 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:18,566 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:18,566 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:18,567 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:18,567 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:18,567 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:18,567 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:18,567 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:18,567 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:18,568 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:18,568 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:19,030 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:19,981 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:19,981 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:19,981 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:19,981 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:19,982 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:19,982 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:19,984 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:19,984 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:19,985 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:19,985 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:19,985 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:19,985 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:19,986 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:19,986 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:19,986 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:19,986 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:19,986 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:19,986 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:19,987 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:20,033 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:21,035 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:21,427 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:22,038 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:22,994 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:23,040 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:24,042 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:24,127 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:24,127 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:24,127 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:24,127 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:24,128 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:24,128 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:24,128 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:24,130 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:24,131 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:24,131 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:24,131 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:24,131 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:24,131 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:24,132 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:24,132 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:24,132 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:24,132 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:24,132 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:24,133 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:24,925 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:52:24,925 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:52:25,045 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:25,439 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:26,047 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:26,767 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:26,767 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:26,767 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:26,768 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:26,768 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:26,768 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:26,771 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:26,771 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:26,772 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:26,772 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:26,772 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:26,772 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:26,772 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:26,772 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:26,773 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:26,773 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:26,773 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:26,773 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:26,774 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:27,048 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:28,051 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:28,776 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:29,053 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:29,455 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:29,521 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:29,521 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:29,521 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:29,521 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:29,565 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:29,565 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:29,566 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:29,566 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:29,568 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:29,568 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:29,568 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:29,569 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:29,569 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:29,569 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:29,569 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:29,569 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:29,569 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:29,569 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:29,570 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:30,055 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:30,977 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:30,977 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:30,977 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:30,977 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:30,977 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:30,978 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:30,979 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:30,980 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:30,981 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:30,981 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:30,981 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:30,982 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:30,982 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:30,982 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:30,982 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:30,982 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:30,983 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:30,983 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:30,984 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:31,015 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:31,015 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:31,015 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:31,015 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:31,015 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:31,016 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:31,017 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:31,018 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:31,018 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:31,018 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:31,018 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:31,018 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:31,019 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:31,019 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:31,019 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:31,019 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:31,019 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:31,019 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:31,020 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:31,030 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:31,030 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:31,030 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:31,030 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:31,030 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:31,031 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:31,031 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:31,033 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:31,033 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:31,033 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:31,033 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:31,033 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:31,033 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:31,033 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:31,034 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:31,034 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:31,034 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:31,034 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:31,035 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:31,057 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:31,460 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:32,059 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:32,630 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:32,630 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:32,630 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:32,630 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:32,631 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:32,632 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:32,632 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:32,635 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:32,635 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:32,636 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:32,636 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:32,636 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:32,636 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:32,636 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:32,636 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:32,636 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:32,637 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:32,637 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:32,637 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:33,062 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:33,461 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:33,788 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:33,788 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:33,788 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:33,788 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:33,789 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:33,790 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:33,792 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:33,793 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:33,794 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:33,794 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:33,794 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:33,794 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:33,794 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:33,836 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:33,836 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:33,837 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:33,837 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:33,837 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:33,837 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:33,838 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:34,064 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:35,068 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:35,468 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:36,071 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:37,073 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:38,075 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:38,942 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:39,076 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:39,930 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:52:39,930 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:52:40,077 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:41,077 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:41,239 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:41,239 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:41,239 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:41,239 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:41,240 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:41,240 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:41,240 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:41,243 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:42,082 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:43,085 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:44,088 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:44,141 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:44,141 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:44,141 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:44,141 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:44,141 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:44,141 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:44,141 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:44,141 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:44,142 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:44,142 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:44,142 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:44,143 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:44,153 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:44,153 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:44,153 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:44,154 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:44,154 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:44,154 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:44,155 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:44,157 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:44,157 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:44,158 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:44,158 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:44,158 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:44,158 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:44,158 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:44,158 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:44,158 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:44,159 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:44,159 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:44,159 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:44,184 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:44,184 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:44,184 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:44,184 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:44,184 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:44,185 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:44,186 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:44,187 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:44,187 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:44,188 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:44,188 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:44,188 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:44,188 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:44,188 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:44,188 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:44,189 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:44,189 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:44,189 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:44,189 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:45,090 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:45,503 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:52:46,093 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:47,095 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:48,098 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:49,102 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:49,943 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:50,103 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:51,106 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:52,108 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:53,111 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:54,113 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:54,931 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:52:54,932 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:52:55,118 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:55,303 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:52:56,118 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:57,119 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:58,121 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:52:58,939 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:58,939 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:58,939 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:58,939 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:58,940 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:58,940 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:58,943 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:58,943 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:58,944 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:58,944 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:58,944 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:58,944 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:58,945 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:58,945 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:58,945 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:58,945 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:58,945 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:58,946 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:58,946 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:58,975 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:52:58,975 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:52:58,975 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:52:58,975 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:52:58,976 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:52:58,976 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:52:58,976 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:52:58,978 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:52:58,978 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:52:58,978 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:52:58,978 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:52:58,979 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:52:58,979 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:52:58,979 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:52:58,979 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:52:58,980 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:52:58,980 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:52:58,980 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:52:58,980 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:52:59,122 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:00,126 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:00,952 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:01,129 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:01,559 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:53:02,131 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:02,985 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:02,985 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:02,985 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:02,985 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:02,986 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:02,986 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:02,986 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:02,987 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:02,989 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:02,989 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:02,989 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:02,990 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:02,990 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:02,990 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:02,990 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:02,990 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:02,991 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:02,991 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:02,995 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:03,136 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:04,139 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:04,357 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:04,358 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:04,358 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:04,358 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:04,358 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:04,361 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:04,361 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:04,362 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:04,363 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:04,363 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:04,363 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:04,363 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:04,363 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:04,363 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:04,363 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:04,363 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:04,364 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:04,364 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:04,364 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:05,139 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:05,573 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:53:05,957 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:06,142 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:07,143 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:08,146 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:09,149 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:09,872 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:09,872 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:09,872 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:09,872 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:09,872 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:09,873 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:09,873 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:09,875 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:09,875 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:09,875 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:09,876 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:09,876 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:09,876 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:09,876 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:09,876 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:09,876 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:09,876 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:09,877 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:09,877 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:09,935 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:53:09,935 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:53:10,152 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:11,153 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:11,253 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:11,588 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:53:12,156 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:13,157 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:14,160 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:15,161 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:16,164 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:16,963 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:17,167 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:18,169 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:19,172 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:20,174 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:21,177 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:21,966 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:22,180 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:23,182 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:24,185 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:24,940 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:53:24,940 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:53:25,188 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:26,193 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:27,196 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:27,276 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:28,198 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:29,201 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:30,203 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:31,206 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:32,208 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:32,979 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:33,213 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:33,859 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:33,859 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:33,859 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:33,860 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:33,860 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:33,860 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:33,861 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:33,863 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:33,865 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:33,865 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:33,865 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:33,865 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:33,865 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:33,865 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:33,865 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:33,865 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:33,865 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:33,866 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:33,866 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:34,215 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:34,416 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:34,417 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:34,417 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:34,417 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:34,417 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:34,417 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:34,419 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:34,419 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:34,420 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:34,420 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:34,420 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:34,420 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:34,421 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:34,421 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:34,421 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:34,421 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:34,421 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:34,422 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:34,422 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:35,157 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:35,157 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:35,157 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:35,157 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:35,158 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:35,158 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:35,160 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:35,160 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:35,161 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:35,161 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:35,161 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:35,161 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:35,161 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:35,161 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:35,161 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:35,162 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:35,162 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:35,162 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:35,162 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:35,219 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:35,674 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:53:35,886 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:35,886 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:35,886 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:35,886 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:35,887 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:35,887 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:35,888 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:35,890 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:35,890 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:35,890 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:35,891 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:35,891 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:35,891 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:35,891 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:35,891 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:35,891 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:35,891 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:35,892 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:35,892 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:36,222 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:36,954 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:36,954 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:36,954 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:36,954 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:36,955 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:36,956 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:36,958 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:36,959 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:36,959 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:36,959 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:36,959 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:36,960 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:36,960 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:36,960 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:36,960 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:36,960 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:36,960 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:36,960 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:36,961 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:37,223 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:37,533 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:37,533 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:37,533 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:37,533 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:37,533 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:37,533 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:37,535 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:37,536 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:37,537 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:37,537 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:37,537 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:37,537 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:37,537 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:37,537 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:37,538 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:37,538 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:37,538 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:37,538 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:37,539 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:37,679 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:53:38,224 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:38,234 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:38,234 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:38,234 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:38,234 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:38,234 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:38,235 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:38,236 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:38,237 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:38,237 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:38,238 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:38,238 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:38,238 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:38,238 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:38,238 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:38,238 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:38,239 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:38,239 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:38,239 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:38,239 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:38,240 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:39,226 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:39,686 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:53:39,944 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:53:39,944 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:53:40,231 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:41,236 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:42,239 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:43,242 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:44,227 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:44,244 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:44,453 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:44,453 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:44,453 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:44,453 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:44,454 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:44,454 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:44,457 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:44,457 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:45,250 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:46,254 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:47,255 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:47,259 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:47,259 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:47,260 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:47,260 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:47,260 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:47,260 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:47,260 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:47,261 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:47,261 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:47,261 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:47,261 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:47,272 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:47,272 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:47,272 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:47,272 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:47,272 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:47,273 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:47,273 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:47,275 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:47,276 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:47,276 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:47,276 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:47,276 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:47,276 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:47,276 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:47,276 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:47,277 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:47,277 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:47,277 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:47,277 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:47,306 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:53:47,306 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:53:47,306 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:53:47,306 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:53:47,306 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:53:47,307 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:53:47,308 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:53:47,309 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:53:47,310 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:53:47,310 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:53:47,310 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:53:47,310 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:53:47,310 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:53:47,310 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:53:47,310 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:53:47,310 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:53:47,310 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:53:47,311 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:53:47,311 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:53:48,258 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:48,712 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:53:49,261 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:49,321 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:50,264 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:51,269 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:52,272 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:53,274 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:54,277 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:54,946 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:53:54,947 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:53:55,183 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:53:55,280 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:56,285 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:57,287 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:58,290 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:53:59,293 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:00,294 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:00,989 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:01,295 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:02,298 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:03,303 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:04,307 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:05,307 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:05,996 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:06,309 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:07,311 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:08,314 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:09,316 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:09,947 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:54:09,948 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:54:10,320 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:11,208 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:11,323 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:12,325 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:13,328 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:14,331 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:15,332 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:16,335 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:17,004 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:17,337 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:17,629 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:54:17,629 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:54:17,629 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:54:17,629 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:54:17,629 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:54:17,629 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:54:17,630 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:54:17,630 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:54:17,632 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:54:17,632 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:54:17,633 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:54:17,633 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:54:17,633 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:54:17,633 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:54:17,633 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:54:17,633 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:54:17,634 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:54:17,634 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:54:17,635 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:54:18,339 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:18,825 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:54:19,341 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:20,345 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:21,347 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:22,015 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:22,350 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:22,442 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:54:22,442 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:54:22,442 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:54:22,442 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:54:22,442 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:54:22,443 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:54:22,443 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:54:22,446 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:54:22,448 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:54:22,448 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:54:22,448 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:54:22,448 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:54:22,449 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:54:22,449 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:54:22,449 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:54:22,449 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:54:22,449 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:54:22,450 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:54:22,450 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:54:23,243 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:54:23,243 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:54:23,244 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:54:23,244 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:54:23,244 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:54:23,244 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:54:23,246 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:54:23,247 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:54:23,248 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:54:23,248 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:54:23,248 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:54:23,248 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:54:23,248 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:54:23,248 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:54:23,249 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:54:23,249 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:54:23,249 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:54:23,250 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:54:23,250 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:54:23,355 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:24,356 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:24,843 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:54:24,949 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:54:24,950 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:54:25,361 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:26,365 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:27,198 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:27,369 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:28,372 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:29,374 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:30,379 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:31,382 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:32,386 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:33,010 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:33,390 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:34,391 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:35,396 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:36,400 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:37,405 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:38,026 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:38,408 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:38,704 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:54:38,704 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:54:38,704 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:54:38,704 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:54:38,705 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:54:38,705 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:54:38,707 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:54:38,707 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:54:38,708 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:54:38,708 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:54:38,708 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:54:38,708 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:54:38,708 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:54:38,708 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:54:38,709 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:54:38,709 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:54:38,709 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:54:38,709 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:54:38,710 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:54:39,410 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:39,954 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:54:39,955 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:54:39,983 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:54:39,983 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:54:39,983 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:54:39,983 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:54:39,984 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:54:39,984 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:54:39,986 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:54:39,987 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:54:39,988 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:54:39,988 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:54:39,988 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:54:39,988 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:54:39,989 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:54:39,989 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:54:39,989 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:54:39,989 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:54:39,989 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:54:39,990 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:54:40,219 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:54:40,416 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:40,891 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:54:41,420 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:42,421 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:42,849 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:54:42,849 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:54:42,849 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:54:42,850 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:54:42,850 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:54:42,850 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:54:42,851 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:54:42,852 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:54:43,226 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:43,423 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:44,427 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:45,428 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:45,547 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:54:45,547 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:54:45,547 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:54:45,547 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:54:45,548 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:54:45,548 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:54:45,548 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:54:45,548 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:54:45,548 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:54:45,549 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:54:45,549 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:54:45,561 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:54:45,561 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:54:45,561 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:54:45,561 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:54:45,562 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:54:45,564 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:54:45,564 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:54:45,565 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:54:45,565 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:54:45,565 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:54:45,566 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:54:45,566 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:54:45,566 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:54:45,566 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:54:45,566 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:54:45,566 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:54:45,567 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:54:45,567 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:54:45,567 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:54:45,607 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:54:45,607 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:54:45,607 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:54:45,607 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:54:45,608 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:54:45,608 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:54:45,608 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:54:45,611 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:54:45,612 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:54:45,612 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:54:45,612 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:54:45,613 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:54:45,613 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:54:45,613 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:54:45,613 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:54:45,613 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:54:45,613 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:54:45,613 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:54:45,614 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:54:46,429 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:46,905 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:54:47,433 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:48,435 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:48,619 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:49,437 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:50,438 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:51,440 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:52,442 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:53,444 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:54,053 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:54:54,446 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:54,958 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:54:54,958 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:54:55,450 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:56,455 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:56,854 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:54:56,854 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:54:56,854 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:54:56,854 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:54:56,855 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:54:56,855 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:54:56,858 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:54:56,859 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:54:56,859 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:54:56,860 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:54:56,860 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:54:56,860 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:54:56,860 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:54:56,860 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:54:56,860 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:54:56,860 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:54:56,861 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:54:56,861 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:54:56,862 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:54:57,460 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:58,463 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:58,955 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:54:59,466 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:54:59,870 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:00,469 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:01,472 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:02,474 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:03,475 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:04,480 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:05,046 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:05,482 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:06,488 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:07,490 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:08,493 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:09,497 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:09,960 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:55:09,960 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:55:10,335 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:10,502 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:10,873 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:55:10,873 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:55:10,873 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:55:10,874 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:55:10,874 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:55:10,874 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:55:10,875 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:55:10,876 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:55:10,878 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:55:10,878 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:55:10,878 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:55:10,878 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:55:10,878 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:55:10,879 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:55:10,879 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:55:10,879 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:55:10,879 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:55:10,879 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:55:10,880 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:55:11,504 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:12,507 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:12,536 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:55:12,536 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:55:12,536 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:55:12,536 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:55:12,537 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:55:12,537 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:55:12,540 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:55:12,541 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:55:12,541 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:55:12,541 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:55:12,541 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:55:12,542 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:55:12,542 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:55:12,542 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:55:12,542 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:55:12,542 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:55:12,542 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:55:12,543 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:55:12,543 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:55:13,015 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:55:13,510 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:13,997 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:55:13,997 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:55:13,997 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:55:13,998 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:55:13,998 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:55:13,998 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:55:14,000 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:55:14,001 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:55:14,512 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:15,517 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:16,052 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:16,519 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:16,564 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:55:16,564 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:55:16,564 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:55:16,564 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:55:16,564 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:55:16,564 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:55:16,564 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:55:16,565 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:55:16,565 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:55:16,565 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:55:16,566 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:55:16,576 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:55:16,576 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:55:16,576 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:55:16,577 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:55:16,577 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:55:16,577 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:55:16,579 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:55:16,580 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:55:16,580 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:55:16,580 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:55:16,580 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:55:16,581 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:55:16,581 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:55:16,581 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:55:16,581 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:55:16,581 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:55:16,581 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:55:16,617 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:55:16,623 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:55:16,662 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:55:16,662 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:55:16,662 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:55:16,662 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:55:16,663 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:55:16,663 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:55:16,665 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:55:16,666 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:55:16,667 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:55:16,667 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:55:16,667 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:55:16,667 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:55:16,667 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:55:16,667 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:55:16,668 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:55:16,668 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:55:16,668 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:55:16,669 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:55:16,669 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:55:17,026 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:55:17,524 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:18,526 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:19,035 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:55:19,531 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:20,535 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:21,055 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:21,537 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:22,541 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:23,544 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:24,546 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:24,963 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:55:24,963 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:55:25,547 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:26,197 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:26,549 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:27,554 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:28,555 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:29,560 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:30,566 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:31,570 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:32,065 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:32,572 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:33,189 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:55:33,189 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:55:33,189 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:55:33,189 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:55:33,190 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:55:33,190 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:55:33,190 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:55:33,192 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:55:33,193 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:55:33,193 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:55:33,193 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:55:33,193 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:55:33,193 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:55:33,193 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:55:33,194 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:55:33,194 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:55:33,194 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:55:33,194 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:55:33,194 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:55:33,576 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:34,507 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:55:34,507 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:55:34,507 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:55:34,507 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:55:34,508 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:55:34,509 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:55:34,510 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:55:34,511 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:55:34,512 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:55:34,512 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:55:34,512 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:55:34,512 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:55:34,512 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:55:34,513 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:55:34,513 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:55:34,513 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:55:34,513 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:55:34,513 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:55:34,514 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:55:34,576 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:35,089 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:55:35,578 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:36,581 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:37,070 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:37,583 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:38,587 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:39,590 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:39,964 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:55:39,964 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:55:40,594 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:41,596 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:42,287 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:42,598 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:43,603 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:44,605 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:45,605 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:46,606 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:47,608 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:48,079 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:48,610 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:49,614 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:50,620 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:51,624 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:52,626 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:53,079 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:53,631 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:53,814 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:55:53,814 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:55:53,814 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:55:53,814 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:55:53,814 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:55:53,815 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:55:53,815 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:55:53,816 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:55:54,635 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:54,969 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:55:54,969 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:55:55,636 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:56,468 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:55:56,468 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:55:56,468 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:55:56,468 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:55:56,468 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:55:56,469 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:55:56,469 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:55:56,469 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:55:56,469 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:55:56,469 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:55:56,470 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:55:56,480 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:55:56,480 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:55:56,480 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:55:56,480 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:55:56,481 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:55:56,481 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:55:56,481 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:55:56,483 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:55:56,484 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:55:56,484 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:55:56,484 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:55:56,484 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:55:56,484 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:55:56,484 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:55:56,485 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:55:56,485 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:55:56,485 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:55:56,485 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:55:56,486 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:55:56,513 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:55:56,513 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:55:56,513 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:55:56,513 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:55:56,514 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:55:56,514 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:55:56,516 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:55:56,516 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:55:56,517 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:55:56,517 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:55:56,517 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:55:56,517 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:55:56,517 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:55:56,517 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:55:56,517 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:55:56,518 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:55:56,518 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:55:56,518 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:55:56,518 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:55:56,638 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:57,175 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:55:57,640 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:58,523 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:55:58,643 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:55:59,646 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:00,646 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:01,648 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:02,651 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:03,653 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:04,090 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:04,656 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:05,660 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:06,662 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:07,664 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:08,669 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:09,670 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:09,972 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:56:09,973 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:56:10,286 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:10,673 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:11,676 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:12,678 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:13,679 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:14,684 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:15,689 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:16,096 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:16,490 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:56:16,490 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:56:16,490 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:56:16,490 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:56:16,491 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:56:16,491 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:56:16,494 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:56:16,494 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:56:16,495 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:56:16,495 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:56:16,495 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:56:16,496 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:56:16,496 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:56:16,496 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:56:16,496 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:56:16,496 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:56:16,497 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:56:16,498 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:56:16,498 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:56:16,690 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:17,694 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:18,696 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:18,862 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:56:18,862 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:56:18,862 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:56:18,862 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:56:18,863 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:56:18,863 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:56:18,865 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:56:18,866 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:56:18,866 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:56:18,866 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:56:18,867 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:56:18,867 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:56:18,867 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:56:18,867 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:56:18,867 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:56:18,867 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:56:18,868 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:56:18,868 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:56:18,869 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:56:19,698 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:20,699 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:21,098 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:21,247 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:56:21,701 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:22,706 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:23,708 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:24,709 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:24,973 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:56:24,973 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:56:25,309 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:56:25,309 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:56:25,309 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:56:25,309 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:56:25,309 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:56:25,310 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:56:25,312 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:56:25,312 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:56:25,313 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:56:25,313 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:56:25,313 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:56:25,313 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:56:25,313 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:56:25,313 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:56:25,313 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:56:25,313 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:56:25,314 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:56:25,314 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:56:25,325 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:56:25,325 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:56:25,325 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:56:25,325 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:56:25,325 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:56:25,326 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:56:25,328 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:56:25,328 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:56:25,329 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:56:25,329 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:56:25,329 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:56:25,329 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:56:25,329 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:56:25,329 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:56:25,329 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:56:25,329 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:56:25,330 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:56:25,330 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:56:25,394 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:56:25,395 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:56:25,710 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:26,400 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:26,713 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:27,263 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:56:27,716 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:28,718 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:29,719 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:30,724 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:31,728 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:32,106 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:32,729 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:33,734 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:34,738 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:35,740 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:36,744 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:36,781 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:56:36,781 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:56:36,781 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:56:36,782 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:56:36,782 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:56:36,782 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:56:36,783 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:56:36,785 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:56:36,785 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:56:36,785 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:56:36,785 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:56:36,785 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:56:36,785 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:56:36,785 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:56:36,785 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:56:36,786 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:56:36,786 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:56:36,786 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:56:36,786 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:56:36,796 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:56:36,796 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:56:36,796 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:56:36,797 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:56:36,797 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:56:36,798 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:56:36,800 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:56:36,800 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:56:36,801 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:56:36,801 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:56:36,801 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:56:36,802 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:56:36,802 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:56:36,802 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:56:36,802 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:56:36,802 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:56:36,802 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:56:36,803 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:56:36,803 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:56:37,748 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:37,808 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:38,749 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:39,297 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:56:39,753 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:39,978 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:56:39,979 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:56:40,758 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:41,759 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:42,764 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:43,314 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:43,765 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:44,767 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:45,772 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:46,773 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:47,777 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:48,779 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:49,120 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:49,780 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:50,785 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:51,787 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:52,792 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:53,794 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:54,124 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:54,797 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:54,980 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:56:54,981 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:56:55,800 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:56,802 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:57,804 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:58,807 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:56:59,271 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:56:59,812 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:00,813 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:01,815 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:02,817 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:03,821 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:03,987 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:57:03,988 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:57:03,988 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:57:04,007 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:57:04,007 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:57:04,007 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:57:04,007 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:57:04,008 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:57:04,026 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:57:04,027 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:57:04,027 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:57:04,027 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:57:04,079 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:57:04,079 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:57:04,079 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:57:04,080 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:57:04,080 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:57:04,080 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:57:04,081 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:57:04,081 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:57:04,081 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:57:04,081 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:57:04,081 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:57:04,082 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:57:04,082 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:57:04,084 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:57:04,084 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:57:04,084 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:57:04,084 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:57:04,084 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:57:04,085 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:57:04,085 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:57:04,822 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:05,090 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:57:05,393 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:57:05,826 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:06,828 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:07,831 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:08,833 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:09,837 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:09,985 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:57:09,986 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:57:10,249 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:57:10,840 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:11,842 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:11,927 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:57:11,927 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:57:11,927 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:57:11,927 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:57:11,928 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:57:11,928 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:57:11,930 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:57:11,931 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:57:11,931 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:57:11,931 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:57:11,931 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:57:11,931 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:57:11,931 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:57:11,932 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:57:11,932 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:57:11,932 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:57:11,932 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:57:11,932 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:57:11,933 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:57:12,844 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:13,421 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:57:13,846 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:14,848 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:15,853 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:16,130 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:57:16,856 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:17,859 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:18,861 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:19,864 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:20,865 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:21,132 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:57:21,869 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:22,872 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:23,876 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:24,880 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:24,989 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:57:24,989 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:57:25,885 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:26,231 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:57:26,888 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:27,889 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:28,894 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:29,897 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:30,899 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:31,901 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:32,142 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:57:32,905 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:33,908 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:34,911 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:35,912 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:36,915 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:37,143 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:57:37,920 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:38,833 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:57:38,833 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:57:38,833 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:57:38,833 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:57:38,834 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:57:38,834 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:57:38,837 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:57:38,838 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:57:38,838 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:57:38,838 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:57:38,838 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:57:38,838 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:57:38,839 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:57:38,839 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:57:38,839 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:57:38,840 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:57:38,840 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:57:38,840 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:57:38,840 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:57:38,851 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:57:38,852 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:57:38,852 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:57:38,852 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:57:38,852 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:57:38,853 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:57:38,855 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:57:38,856 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:57:38,858 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:57:38,858 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:57:38,858 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:57:38,858 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:57:38,858 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:57:38,858 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:57:38,858 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:57:38,858 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:57:38,859 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:57:38,859 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:57:38,859 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:57:38,922 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:39,494 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:57:39,923 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:39,989 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: stop_status
2024-09-24 16:57:39,989 DEBUG SenderThread:47300 [sender.py:send_request():406] send_request: stop_status
2024-09-24 16:57:40,927 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:41,930 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:42,329 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:57:42,932 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:43,934 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:44,938 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:45,939 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:46,942 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:47,944 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:48,151 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: status_report
2024-09-24 16:57:48,946 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:49,949 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:50,531 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: resume
2024-09-24 16:57:50,531 INFO HandlerThread:47300 [handler.py:handle_request_resume():715] starting system metrics thread
2024-09-24 16:57:50,531 INFO HandlerThread:47300 [system_monitor.py:start():194] Starting system monitor
2024-09-24 16:57:50,531 INFO SystemMonitor:47300 [system_monitor.py:_start():158] Starting system asset monitoring threads
2024-09-24 16:57:50,531 INFO SystemMonitor:47300 [interfaces.py:start():188] Started cpu monitoring
2024-09-24 16:57:50,531 INFO SystemMonitor:47300 [interfaces.py:start():188] Started disk monitoring
2024-09-24 16:57:50,533 INFO SystemMonitor:47300 [interfaces.py:start():188] Started memory monitoring
2024-09-24 16:57:50,534 INFO SystemMonitor:47300 [interfaces.py:start():188] Started network monitoring
2024-09-24 16:57:50,534 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: pause
2024-09-24 16:57:50,534 INFO HandlerThread:47300 [handler.py:handle_request_pause():724] stopping system metrics thread
2024-09-24 16:57:50,535 INFO HandlerThread:47300 [system_monitor.py:finish():203] Stopping system monitor
2024-09-24 16:57:50,535 DEBUG SystemMonitor:47300 [system_monitor.py:_start():172] Starting system metrics aggregation loop
2024-09-24 16:57:50,535 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined cpu monitor
2024-09-24 16:57:50,535 DEBUG SystemMonitor:47300 [system_monitor.py:_start():179] Finished system metrics aggregation loop
2024-09-24 16:57:50,535 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined disk monitor
2024-09-24 16:57:50,535 DEBUG SystemMonitor:47300 [system_monitor.py:_start():183] Publishing last batch of metrics
2024-09-24 16:57:50,535 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined memory monitor
2024-09-24 16:57:50,536 INFO HandlerThread:47300 [interfaces.py:finish():200] Joined network monitor
2024-09-24 16:57:50,536 DEBUG SenderThread:47300 [sender.py:send():379] send: stats
2024-09-24 16:57:50,954 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:51,541 INFO Thread-12 :47300 [dir_watcher.py:_on_file_modified():288] file/dir modified: /Users/marcelovidigal/Library/CloudStorage/GoogleDrive-marcelovidigal@gmail.com/Meu Drive/projetos/python/retrieval_augmented_generation/modelos/doutorado/secoes_contrato_rotulos_classificacao_texto_v1/wandb/run-20240924_165138-zpce2bat/files/output.log
2024-09-24 16:57:51,958 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
2024-09-24 16:57:52,960 DEBUG HandlerThread:47300 [handler.py:handle_request():158] handle_request: internal_messages
|