├── .github └── workflows │ └── rebuild_html.yml ├── .gitignore ├── README.md ├── ai_accounts_on_threads.html ├── environment.yml ├── generate_html.py └── source.csv /.github/workflows/rebuild_html.yml: -------------------------------------------------------------------------------- 1 | name: Rebuild HTML 2 | on: push 3 | permissions: 4 | contents: write 5 | jobs: 6 | build-linux: 7 | runs-on: ubuntu-latest 8 | strategy: 9 | max-parallel: 1 10 | steps: 11 | - uses: actions/checkout@v3 12 | - name: Set up Python 3.11 13 | uses: actions/setup-python@v3 14 | with: 15 | python-version: '3.11' 16 | - name: Add conda to system path 17 | run: | 18 | # $CONDA is an environment variable pointing to the root of the miniconda directory 19 | echo $CONDA/bin >> $GITHUB_PATH 20 | - name: Install dependencies 21 | run: | 22 | conda env update --file environment.yml --name base 23 | - name: Build HTML 24 | run: | 25 | python ./generate_html.py 26 | - name: Commit report 27 | run: | 28 | git config --global user.name 'Alethea Power' 29 | git config --global user.email 'aletheap@users.noreply.github.com' 30 | git commit -am "Regenerate HTML" 31 | git push 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AI/ML accounts on Threads 2 | 3 | [The List](http://raw.githack.com/aletheap/ai_on_threads/main/ai_accounts_on_threads.html) in searchable, sortable form. (Includes names, affiliations, and Twitter->Threads handle map.) 4 | 5 | If you follow some of these accounts, it should help get your recommendations bootstrapped so Threads can then help you find more AI/ML people. 6 | 7 | If you study or work in AI/ML, and you'd like to add yourself to the list, just submit a PR modifying the [source.csv](source.csv) file. 8 | 9 | Credit to [@chrisalbon](https://www.threads.net/@chrisalbon) and [@mattlynley](https://www.threads.net/@mattlynley) for curating the first set of names on this list. 10 | -------------------------------------------------------------------------------- /ai_accounts_on_threads.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | AI Accounts on Threads 10 | 11 | 12 |

AI Accounts on Threads

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 |
NameThreadsTwitterAffiliationRole
Aarne TalmanaarnetalmanaarnetalmanSiloGenHead of Technology
Abhimanyu HansicogitotabhihoonAHans30University of MarylandGrad student in ML
Abi AryangoabiaryanGoAbiAryanMLE, author
Adi Polakpolak.codeAdiPolakPrev MicrosoftSWE
Ahmad BeiramibeiramiababeiramiGoogleLarge-Scale Generative AI
AI Paper afaipaperafpapers
Aishwarya AnilkumarthegigglinggobletgigglinggobletCuriouser.aiResearch
Aishwarya Srinivasanthe.datascience.galAishwarya_Sri0GoogleData Scientist
AK_akhaliq_akhaliqHugging Face
Alena Harleyalena.harleyalenushkaTempus LabsDirector of Machine Learning
Alethea Powerexteriorpowerexteriorpowerformerly OpenAIReasoning and Interpretability research
Alex HughesalexjackhughesalexjackhughesLoopinCTO
Alex Polozovpolozov.alexSkiminokGoogleResearch Scientist, Code AI
Amr NimerthenimerneuronimerImperial College LondonPhD AI in Healthcare
Andrei Savuandrei_savuandreisavuMoonsenseCo-Founder & CEO
Andrej KarpathykarpathykarpathyOpenAIResearch
AndrewcarrandrewCartwheelChief generative officer
Andrew Ngandrew_y_ngAndrewYNgCoursera/Stanfordcofounder/adjunct professor
Angela Zhouseparated_hyperplaneSHyperplaneUSCAsst Prof
Anna MakanjurugericanannaadeolaOpenAIhead fo Public Policy
Anthony ShoumikhinshoumikhinshoumikhinMetaPytorch SWE
AnthropicanthropicaiAnthropicAIAnthropic
Aran KomatsuzakiarankomatsuzakiarankomatsuzakiEleutherAILead Researcher
Ari MorcosarismorcosarimorcosMetaResearch scientist
Ariel Herbert-Vossadversariel_adversarielDixie FlatlineHead
Arinbjörn KolbeinssonarinbjornkolarinbjornkolEvidation Health/Imperial College LondonML Scientist
Asli Celikyilmazkarakizcareal_asliFAIR / MetaResearch Manager
Azmine Toushik WasiazminewasiAzmineWasiDILab,HYU/CIOL,SUSTAI Researcher
Ben Murdochben.murdochGoogleAI research
Benedikt KolbeinssonbenediktkolbeinssonbenediktkolImperial College LondonPhD
Berivan Isikberivan.isik_BerivanISIKStanfordPhD. Scalable & trustworthy ML, federated learning, compression, privacy, info. theory.
Berk UstunberkmlrberkustunUCSDAssistant Professor
Bert MaherbertmahertensorbertMetaPrincipal Software Engineer, Pytorch
Bharath Ramsundarbharathramsundarrbhar90Deep Forest SciencesFounder/CEO
Bhavin Jawadebhavin.jawadeBhavinJawadeUniv of BuffaloPhD Student
Bhavul GauribhavulgauriBhavulGauriMetaSenior ML Eng
Bojan TunguztunguztunguzNVIDIAML/Data Scientist
Brandon AmosbdamosbrandondamosMetaAI (FAIR)Research scientist
Brian WiltbrianwiltbrianwiltWaymoEng/ML and head cheerleader
Candace RosscandyyyyygirlcandacerossioMetaPostdoc
Carly TaylorcarlymachinelearningcarlymachinelearningActivisionML for Call of Duty
Caroline LowatsuenMetaML/DS
Charles VardemancharlesvardemanCharlesVardemanCenter for Research Computing, University of Notre DameResearch Assistant Professor, Computational Scientist.
Chris AlbonchrisalbonchrisalbonWikimediaDirector of ML
Chris Olaholahchristopherch402AnthropicResearch, Interpretability
Christopher ManningchrrmanningchrmanningStanford AI LabDirector
Clem DelangueclementdelangueClementDelangueHugging FaceCEO/co-founder
Dan RoyroydanroyroydanroyUniv of Toronto, CIFARScientist, Assoc Prof of Stats/CS, AI Chair of CIFAR
Daniel BreendnlbreenML Insights: AI Unpacking AI PapersPodcaster
Daniel Ethdaniel_271828daniel_271828self employed
Daniel McKeedanielbmckeedanielbmckeeUniversity of IllinoisPhD Student
David Hahardmaruhardmaruformerly Stability AI, Google Brain
Davit Soseliadavit_soseliaDavitSoselia_University of Marylandgrad student
Daylen YangdaylenyangdaylenyangWaymoStaff software engineer
Delip Raodelip.raodelipraoAllen Institute of AIEntrepreneur in Residence
Desi R. Ivanovadrivanova1desirivanovaOxfordDPhil in Statistics
Devi ParikhdeviparikhdeviparikhMetaResearch Director, Generative AI
Dhruv BatradhruvbatradbDhruvBatraDBMetaAI, Georgia TechResearch Director, Professor
Dillon Niederhutdillon.niederhutdillon.niederhutNovi LabsLead Data Scientist
Diptanu ChoudhurydiptanucdiptanuMetaAI and Distributed Systems
Divam GuptadivamguptadivamguptaMetaAI for VR
Diyi YangdiyiyDiyi_YangStanford AI LabAssistant Professor
Dominik Kohlbacherkuidaumpfaka_kuiFH JoanneumIndustrial Engineer in Smart Production & ML Enthusiast
Dumitru ErhandoomiedoomieDeepMindML Researcher
Edward Z. Yangezyang00ezyangMetawork on Pytorch
Elias Stengel-EskineliasstengelEliasEskinCenter for Language and Speech Processing at Johns HopkinsPhD Candidate
Elisa KreisselisakreissElisaKreissUCLAIncoming Assistant Professor
Elvis Saraviaomarsar0omarsar0DAIRMachine Learning & NLP
Erik BrynjolfssonerikbrynerikbrynStanfordHAIProfessor
Ethan Mollickethan_mollickemollickWhartonProfessor
Eugene Vinitskyvinitsky.eugeneeugenevinitskyNYUAsst Prof
Eugene YaneugeneyaneugeneyanAmazonBuilding ml, recsys, & llm systems
Franz Louis CesistaleloykunleloykunExpedockML & Data SWE
Fred Blissfblissjrfblissjr2W (prev Aptitive cofounder)Head of Data & AI
Fu-Jen ChufujenchuFuJenChu1FAIRResearch Scientist
Gabriel SynnaevegabrielsynnaevesyhwMeta AI, Meta Reality Labs Research – FAIRResearch Scientist Manager
Gargi Ghoshits_gargi_ghoshMetaAI
Gautam KamaththegautamkamaththegautamkamathUniv of WaterlooAsst Prof
Georgia Gkioxarige_gioxgeorgiagkioxariCaltechProfessor
Giovanni AlcantaragvnalcgvnalcMetaAI
Google DeepMindgoogledeepmindGoogleDeepMindGoogle DeepMind
Gowthami Somepalligowthami_somgowthami_sUniv of Marylandgrad student in ML
Greg Brockmangreg.brockmangdbOpenAIco-founder
Gus MartinslgusmartinsgusthemaGoogleAI DevRel
Guy Van den BroeckguyvdbguyvdbUCLAAsst Prof
Harpreet SahotadatascienceharpDataScienceHarpDeci AiDL Developer Relations Manager
Harrison KinsleysentdexsentdexNeural networks from Scratch bookauthor
Hilary Masonhilaryamason?Fast Forward LabsFounder & CEO
Hoi LamhoitabhoitabDeepMindResearch Platform Product Lead
Horace HechhilleeecHHilleeMetaPytorch
Hugging Facehuggingface_aihuggingfaceHugging Face
Ilya ReznikreznikibMetaMachine Learning engineer
Ilya Sutskeverilyasu2ilyasutOpenAICo-founder and Chief Scientist
Irene TeinemaaireneteinemaaIreneTeinemaaDeepMindResearch Engineer
Ishan Khatrii_ikhatrii_ikhatriMotionalResearch Scientist
Ishan Misraishanmisraimisra_MetaAI (FAIR)ML Researcher
Jacob Goodalejpgoodalejpgoodale1Unify.aiMachine Learning Engineer
James BradburyjekbradburyjekbradburyGoogleJAX, TPUs, and LLMs
Jascha Sohl-DicksteinjaschasdjaschasdGoogle BrainSenior staff research scientist
Jason Westonjase_westonjasewestonMetaAIResearch Scientist
Jean de Nyandwinyandwi.deJeande_dCarnegie MellonAI/DL
Jeff Rasleyjeffra45jeffra45Microsoft DeepSpeedPrincipal Research Engineer
Jeremy FoxmanyfoxgivenJeremyDanielFoxGoogleLLM whisperer
Jeremy Howardjeremyphowardjeremyphowardfast.aiCo-founder
Jeremy R Colejeremy_r_colejeremy_r_coleGoogle DeepMind(NLP)
Jesper DramschjesperdramschjesperdramschECMWFScientist for Machine Learning
Jessy LijessyjlijessyjliUniversity of TexasAssistant Professor, computational linguistics and NLProc
Jigar DoshijigarkdoshijigarkdoshiWadhwani AIMachine Learning Scientist and Manager
Jim Fandr.jimfanDrJimFanNVIDIASenior AI Scientist
Jimmy EdgelljimmyedgellJimmyedgellData Scientist in travel
John Dickersonjp.dickersonjohnpdickersonUniversity of Maryland, ArthurAssociate Professor, Co-founder and Chief Scientist
Jon Barronjonbarronjon_barronGoogleResearch scientist
Jonathan BallochjonballochJonathanBallochGeorgia TechRobotics PhD Candidate
Jonathan SmithjonathanajsmithjonathanajsmithMetaML Research
Josh ConstinejoshscJoshConstineSignalFireInvestor
JR NewjrnewwwjrnewwwClubhouseDS/ML Scientist
Julia Ballajuliaballa_Oxford
Julien Chaumondchaumondjulien_cHugging FaceCTO/co-founder
Jun WangjunwdotcomwangjunMichigan State University (formerly Twitter)Adjunct Professor
Jupyter Meowbooksuntitled01ipynbuntitled01ipynbMemes
Justin Johnsonjustin.c.johnsonjcjohnssUMich, MetaAssistant Professor, Research Scientist
KaggleoficialkagglekaggleKaggle
Kai-Wei Changkwchang_nlpkaiwei_changUCLAengineeringAssociate Professor
Karson ElmgrenkarsonelmgrenkelmgrenCenter for Security and Emerging Technology at GeorgetownAI policy/AI Assessment
Kate StaffordkastacholaminekastacholamineAtomwiseIncScientist - AI/ML for proteins, small molecules, and everything in between
Kavya SrinetkavyasrinetkavyasrinetFacebook AI ResearchResearcher
Khalid Saifullahkhalidsaifullaahk_saifullaahUniversity of Maryland, AdobeAI/ML PhD Student, Research Scientist Intern
Kristin Lauterkristin.lauterKristinLauterFAIR Labs North America at MetaDirector
Kunal Bhallakunalb_kunalbhallaAI Dev Infra at MetaSoftware Engineer
Kyle VedderkylecvedderKyleVedderUniversity of PennslyvaniaPhD Student
Laurence Rouesnellaurencerouesnel_laurencerMetaPytorch
Laurens van der MaatenlvdmaatenlvdmaatenMeta AI (FAIR team)Research Director
Lei M. Zhanglei.m.zhangl32zhangDeepMindResearch Scientist
Leo BoytsovsrchvrssrchvrsAWS LabsSr. Research Scientist
Lex ToumbouroulexisoninstalexandstuffSplash MusicCTO
Logan KilpatricklogankilpatricklogankilpatrickOpenAIDeveloper Relations
Lucas A. Meyerlucas_a_meyerlucas_a_meyerMicrosoftPrincipal Research Scientist
Lucas PavanellipavalucaspavalucasaiXplainAI Research Engineer
Luke ZettlemoyerlukezettlemoyerLukeZettlemoyerMeta
Madison MaypragmaticmlpragmaticmlIndico Datateaching machines
Mahmoud (Mido) Assranmidoassranmido_assranMetaAIResearch Scientist
Margaret Mitchellmargaret_mitchell_aimmmitchell_aiformerly GoogleML Scientist and AI Researcher
Maria Antoniakmaria.antoniakmaria_antoniakAllen Institute for AIPostdoc
Matt RurckmattturckmattturckFirstMarkVC
Matthew LynleymattlynleymattlynleySupervised.NewsWriter
Matthew MuckleymattmucklmmattmucklmMeta AIResearch Engineer
Max WoolfminimaxirminimaxirBuzzfeedData Scientist
Maximilian NickelmaxsnickelmnickMetaResearch Scientist - AI ∩ Complex Systems ∩ Society
MayamayaxgrecoCarnegie MellonMS Student
Megan RisdalmeganrisdalMeganRisdalKaggle, GoogleProduct work
Megan Taylor_megthescientist_megthescientistUWMadison BiophysicsML & protein engineering
Mehdi JameimjameimjameiSystemDirector of AI
Michael BronsteinmmbronsteinmmbronsteinDeepmind / OxfordProfessor
Michael GoldmichaelgoldmichaelgoldSchool of Visual Arts / ShaderverseProfessor / Cofounder
Michael Kevin SpencermichaelkevinspencerAI SupremacyWriter
Michael Rivardmicrovardocmichael_rivardMachine learning engineer
Michael VoznesenskyvozfbMetaPytorch Eng
Miguel Angel BautistaitsbautistamitsbautistamAppleML Research
Miguel NúñeznunezkantNunezKantHHMI | JaneliaNeuro (Data) Scientist
Mimansa JaiswalmimansajaiswalMimansaJUMichCSEPhD candidate
Min-Hung (Steve) ChencmhungsteveCMHungStevenNVIDIASenior Research Scientist
Mina LeeminaminaleeMinaLee__Microsoft ResearchPostdoc
Nadine SalemtechnaelogytechnaelogySynergy BioscienceAI Drug Discovery
Nalin SemwallordsplinelordsplineGeorgia TechMS Student
Naomi SaphransaphransaphraNYUPostdoc NLP
Natalia BurinanataliaburinaNaleFormerly MetaAI Product
Nathan LambertnatolambertnatolambertHugging FaceMachine learning RESEARCHER & WRITER
Naveen Raonaveen.g.raoNaveenGRaoMosaicMLCEO
Neehar PerineeharperiNeeharPeriCarnegie Mellon UniversityPhD Student
Nitish Guptatheslickmindslick_mindNC StateRL research
Noam BrownpolynoamialpolynoamialOpenAIAI researcher
Olesia_olysavra_olylesiaSoftServeAI lead
Oliver ObstoliobstoliverobstWestern Sydney UniversityAssociate Professor
OpenAI Dall-EopenaidalleOpenAIDall-E
Paige BaileydynamicwebpaigeDynamicWebPaigeDeepMindProduct Lead for Generative Models
Parmida BeigibigdataqueenParmidaBeigiAmazon AISenior Tech Lead Scientist on Gen AI/ML, NLP and speech recognition
Pawel Pachniewskipwlot
Pedro Moraispedro.pnwAgility RoboticsEngineer (simulation/RL/controls)
Phillip Rustphillip.rustrust_phillipMetanlp/ml phd student
Piotr Skalskiskalskip92skalskip92RoboflowComputer vision
Poepoe_platformpoe_platformPoePoe
Pranav ShyamprnvshymrecurseparadoxDeepMindResearcher
Prof. Anima AnandkumaranimaanandkumarAnimaAnandkumarCaltech/NvidiaBren Professor @caltech / Sr Director of AI research @nvidia
Rajesh Kandaswamyai_whisperatirajeshkanGartnerIndustry Analyst
Randy Ardywiboworandy.pthRandyArdywibowoAppleMachine Learning Engineer
Rho Lallrho_lallrho_lallAssume WiselyAnalytics Engineer
Robert Lewisroblew9009roblew9013
Robert ScoblescobleizerScobleizerInfinite RetinaAI-First chief strategy office, writer
Robin JiarobinstrumentalrobinomialUSC Thomas Lord Department of Computer ScienceAssistant Professor
Rohit Girdharrohytg_rohitgirdhar_Facebook AI ResearchResearch Scientist
Ross Taylorrawsstaylorrosstaylor90MetaResearch
Sakib DadisakibdadiSakibDadiBessemerVPInvestor
SalemsalemghouiliSalemGhouilideep learning research
Salonisaloni.n.dsaloniumOur World in DataResearch
Sam AltmansamasamaOpenAICEO/co-founder
Santiago L Valdarramasvp1n0svpinoml.schoolhead
Sarah FlorisadutchengineerADutchEngineerSenior Data and ML Platform Enginee
Sasha Rushsrush_nlpsrush_nlpCornell University, Hugging FaceAssociate Professor, Researcher
Scott Wen-tau Yihcurious_scottscottyihFacebook AI Research (FAIR)Research Scientist
Sean OBrienseanobrienresearchUC San Diego, formerly FAIRPhD Student
Sebastian GehrmannsebastiangehrmannsebgehrBloombergHead of NLP, CTO office
Sebastian RaschkasebastianraschkarasbtLightning AI
Sherri RoseprofsherrirosesherriroseStanford UniversityProfessor
Shijie Wuezra_wuEzraWuBloombergResearch Engineer
Sho YaidashoyaidaShoYaidaMetaAIResearch Scientist
Shobeir FakhraeishobeirfshobeirfAmazonSenior Machine Learning Scientist
Simon BatznersimonomialsimonbatznerDeepMindResearcher
Sophia Yang Ph.D.sophiamyangsophiamyangAnacondaSenior Data Scientist
Soumith ChintalasoumithsoumithchintalaMetaPytorch lead
Soumith ChintalasoumithsoumithchintalaMetaAICofounded and lead PyTorch
Stanford Institute for Human-Centered AIstanfordhaiStanfordHAIStanfordInstitute for Human-Centered AI
Stoyan StoyanovsptstoyanovRobotics Engineer and ML practitioner building AI-powered products
Sujan Kumar Gonugondlasujankumar91AWSSr ML Scientist
Suraj Srinivassavinirs_jarusSuurajHarvardML Researcher
Tali HerzkatherzkatherzkaGithubCopilot SWE
Talia RingertaliaringerTaliaRingerUIUCAssistant Professor
Tamsin Crosslandtamsin_crosslandCrosslandTamsinThe AI Bookco-author
Thomas KipfthomaskipftkipfDeepMindAI Research
Thomas Mockjthomasmockthomas_mockPosit PBCProduct Manager for Posit Workbench/RStudio
Tim TullytimtimtimttimtMenlo VenturesPartner
Tudor AchimtudorachimtachimHelm.aiCofounder / CTO
Victor GeislingervictorsothervectorMrGeislingerMachine Learning Engineer / Data Scientist & Educator
Vin Ahluwaliaahluwalia.vinva4azStanfordML Scientist/Engineer, AI Researcher
Vlad LoktevvladimirloktevvladimirloktevInvestor
Wanqiao Xuwanqiaoxwanqiao_xuStafordPhD candidate
Weaviateweaviate_ioweaviate_ioOpen Source Vector Database
Wenfeng Zhuowenfeng_zhuoMetaStaff ML Eng
Xavier AmatriainxamatriainXAmatriainLinkedInVP of AI Product
Xindi WucindycindywwwCindyCindywwwPrincetonPhD Student
Yana WelinderyanawelinderyanatweetsKraftfulCEO / Cofounder
Yann LeCunyannlecunylecunMeta/NYUChief AI Scientist/Professor
Yaron LipmanlipmanyalipmanyaWeizmannScience, MetaAI (FAIR)Faculty, research scientist
Yoav ArtziyoavartziyoavartziCornellNLP, ML researcher/professor
Yoshitomo Matsubarayoshitomo_csyoshitomo_csAmazonAlexa AI Applied Scientist
Yossi AdiyossiadidrumadiyossLCThe Hebrew University of Jerusalem, Meta AI (FAIR)Assistant Professor, Research Scientist
Zain Hasanzainhsnzainhasan6WeaviateData Science
Zining ZhubakerzzhuzhuziningStevens Institute of TechnologyIncoming Assistant Professor
Ziyi Yangyzy_aiyzy_aiMicrosoftResearcher
Zubair IrshadimzubairaimzubairirshadGeorgia TechRobo/ML PhD Student
1699 | 1706 | 1707 | 1708 | -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- 1 | name: myenv 2 | channels: 3 | - defaults 4 | dependencies: 5 | - pandas=2.0.3 6 | -------------------------------------------------------------------------------- /generate_html.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import pandas as pd 4 | import csv 5 | 6 | SOURCE = "source.csv" 7 | 8 | # clean up the source file 9 | with open(SOURCE, "r") as f: 10 | rows = [[item.strip() for item in row] for row in csv.reader(f) if row] 11 | # check row lengths 12 | for i, row in enumerate(rows): 13 | assert len(row) == 5, "Row {} has {} columns: {}".format(i, len(row), repr(row)) 14 | rows = [rows[0]] + sorted(rows[1:], key=lambda x: x[0].lower()) 15 | with open(SOURCE, "w") as f: 16 | writer = csv.writer(f) 17 | for row in rows: 18 | writer.writerow(row) 19 | 20 | 21 | # generate the html file 22 | def make_threads_link(val): 23 | # target _blank to open new window 24 | return '{}'.format(val[1], val[0]) 25 | 26 | 27 | df = pd.read_csv("source.csv") 28 | df = df.fillna("") # replace all NaN values with "" 29 | df["Name"] = df[["Name", "Threads"]].apply(make_threads_link, axis=1) 30 | df["Threads"] = df[["Threads", "Threads"]].apply(make_threads_link, axis=1) 31 | df = df[["Name", "Threads", "Twitter", "Affiliation", "Role"]] 32 | html_table_data = df.to_html(index=False, classes="display", table_id="table_id", escape=False) 33 | 34 | raw_html = ( 35 | """ 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | AI Accounts on Threads 44 | 45 | 46 |

AI Accounts on Threads

47 | """ 48 | + html_table_data 49 | + """ 50 | 57 | 58 | 59 | """ 60 | ) 61 | 62 | with open("ai_accounts_on_threads.html", "w") as f: 63 | f.write(raw_html) 64 | -------------------------------------------------------------------------------- /source.csv: -------------------------------------------------------------------------------- 1 | Name,Affiliation,Role,Twitter,Threads 2 | Aarne Talman,SiloGen,Head of Technology,aarnetalman,aarnetalman 3 | Abhimanyu Hans,University of Maryland,Grad student in ML,AHans30,icogitotabhihoon 4 | Abi Aryan,,"MLE, author",GoAbiAryan,goabiaryan 5 | Adi Polak,Prev Microsoft,SWE,AdiPolak,polak.code 6 | Ahmad Beirami,Google,Large-Scale Generative AI,abeirami,beiramiab 7 | AI Paper af,,papers,,aipaperaf 8 | Aishwarya Anilkumar,Curiouser.ai,Research,gigglinggoblet,thegigglinggoblet 9 | Aishwarya Srinivasan,Google,Data Scientist,Aishwarya_Sri0,the.datascience.gal 10 | AK,Hugging Face,,_akhaliq,_akhaliq 11 | Alena Harley,Tempus Labs,Director of Machine Learning,alenushka,alena.harley 12 | Alethea Power,formerly OpenAI,Reasoning and Interpretability research,exteriorpower,exteriorpower 13 | Alex Hughes,Loopin,CTO,alexjackhughes,alexjackhughes 14 | Alex Polozov,Google,"Research Scientist, Code AI",Skiminok,polozov.alex 15 | Amr Nimer,Imperial College London,PhD AI in Healthcare,neuronimer,thenimer 16 | Andrei Savu,Moonsense,Co-Founder & CEO,andreisavu,andrei_savu 17 | Andrej Karpathy,OpenAI,Research,karpathy,karpathy 18 | Andrew,Cartwheel,Chief generative officer,,carrandrew 19 | Andrew Ng,Coursera/Stanford,cofounder/adjunct professor,AndrewYNg,andrew_y_ng 20 | Angela Zhou,USC,Asst Prof,SHyperplane,separated_hyperplane 21 | Anna Makanju,OpenAI,head fo Public Policy,annaadeola,rugerican 22 | Anthony Shoumikhin,Meta,Pytorch SWE,shoumikhin,shoumikhin 23 | Anthropic,Anthropic,,AnthropicAI,anthropicai 24 | Aran Komatsuzaki,EleutherAI,Lead Researcher,arankomatsuzaki,arankomatsuzaki 25 | Ari Morcos,Meta,Research scientist,arimorcos,arismorcos 26 | Ariel Herbert-Voss,Dixie Flatline,Head,adversariel,adversariel_ 27 | Arinbjörn Kolbeinsson,Evidation Health/Imperial College London,ML Scientist,arinbjornkol,arinbjornkol 28 | Asli Celikyilmaz,FAIR / Meta,Research Manager,real_asli,karakizca 29 | Azmine Toushik Wasi,"DILab,HYU/CIOL,SUST",AI Researcher,AzmineWasi,azminewasi 30 | Ben Murdoch,Google,AI research,,ben.murdoch 31 | Benedikt Kolbeinsson,Imperial College London,PhD,benediktkol,benediktkolbeinsson 32 | Berivan Isik,Stanford,"PhD. Scalable & trustworthy ML, federated learning, compression, privacy, info. theory.",BerivanISIK,berivan.isik_ 33 | Berk Ustun,UCSD,Assistant Professor,berkustun,berkmlr 34 | Bert Maher,Meta,"Principal Software Engineer, Pytorch",tensorbert,bertmaher 35 | Bharath Ramsundar,Deep Forest Sciences,Founder/CEO,rbhar90,bharathramsundar 36 | Bhavin Jawade,Univ of Buffalo,PhD Student,BhavinJawade,bhavin.jawade 37 | Bhavul Gauri,Meta,Senior ML Eng,BhavulGauri,bhavulgauri 38 | Bojan Tunguz,NVIDIA,ML/Data Scientist,tunguz,tunguz 39 | Brandon Amos,MetaAI (FAIR),Research scientist,brandondamos,bdamos 40 | Brian Wilt,Waymo,Eng/ML and head cheerleader,brianwilt,brianwilt 41 | Candace Ross,Meta,Postdoc,candacerossio,candyyyyygirl 42 | Carly Taylor,Activision,ML for Call of Duty,carlymachinelearning,carlymachinelearning 43 | Caroline Lo,Meta,ML/DS,,watsuen 44 | Charles Vardeman,"Center for Research Computing, University of Notre Dame","Research Assistant Professor, Computational Scientist.",CharlesVardeman,charlesvardeman 45 | Chris Albon,Wikimedia,Director of ML,chrisalbon,chrisalbon 46 | Chris Olah,Anthropic,"Research, Interpretability",ch402,olahchristopher 47 | Christopher Manning,Stanford AI Lab,Director,chrmanning,chrrmanning 48 | Clem Delangue,Hugging Face,CEO/co-founder,ClementDelangue,clementdelangue 49 | Dan Roy,"Univ of Toronto, CIFAR","Scientist, Assoc Prof of Stats/CS, AI Chair of CIFAR",roydanroy,roydanroy 50 | Daniel Breen,ML Insights: AI Unpacking AI Papers,Podcaster,,dnlbreen 51 | Daniel Eth,self employed,,daniel_271828,daniel_271828 52 | Daniel McKee,University of Illinois,PhD Student,danielbmckee,danielbmckee 53 | David Ha,"formerly Stability AI, Google Brain",,hardmaru,hardmaru 54 | Davit Soselia,University of Maryland,grad student,DavitSoselia_,davit_soselia 55 | Daylen Yang,Waymo,Staff software engineer,daylenyang,daylenyang 56 | Delip Rao,Allen Institute of AI,Entrepreneur in Residence,deliprao,delip.rao 57 | Desi R. Ivanova,Oxford,DPhil in Statistics,desirivanova,drivanova1 58 | Devi Parikh,Meta,"Research Director, Generative AI",deviparikh,deviparikh 59 | Dhruv Batra,"MetaAI, Georgia Tech","Research Director, Professor",DhruvBatraDB,dhruvbatradb 60 | Dillon Niederhut,Novi Labs,Lead Data Scientist,dillon.niederhut,dillon.niederhut 61 | Diptanu Choudhury,Meta,AI and Distributed Systems,diptanu,diptanuc 62 | Divam Gupta,Meta,AI for VR,divamgupta,divamgupta 63 | Diyi Yang,Stanford AI Lab,Assistant Professor,Diyi_Yang,diyiy 64 | Dominik Kohlbacher,FH Joanneum,Industrial Engineer in Smart Production & ML Enthusiast,aka_kui,kuidaumpf 65 | Dumitru Erhan,DeepMind,ML Researcher,doomie,doomie 66 | Edward Z. Yang,Meta,work on Pytorch,ezyang,ezyang00 67 | Elias Stengel-Eskin,Center for Language and Speech Processing at Johns Hopkins,PhD Candidate,EliasEskin,eliasstengel 68 | Elisa Kreiss,UCLA,Incoming Assistant Professor,ElisaKreiss,elisakreiss 69 | Elvis Saravia,DAIR,Machine Learning & NLP,omarsar0,omarsar0 70 | Erik Brynjolfsson,StanfordHAI,Professor,erikbryn,erikbryn 71 | Ethan Mollick,Wharton,Professor,emollick,ethan_mollick 72 | Eugene Vinitsky,NYU,Asst Prof,eugenevinitsky,vinitsky.eugene 73 | Eugene Yan,Amazon,"Building ml, recsys, & llm systems",eugeneyan,eugeneyan 74 | Franz Louis Cesista,Expedock,ML & Data SWE,leloykun,leloykun 75 | Fred Bliss,2W (prev Aptitive cofounder),Head of Data & AI,fblissjr,fblissjr 76 | Fu-Jen Chu,FAIR,Research Scientist,FuJenChu1,fujenchu 77 | Gabriel Synnaeve,"Meta AI, Meta Reality Labs Research – FAIR",Research Scientist Manager,syhw,gabrielsynnaeve 78 | Gargi Ghosh,MetaAI,,,its_gargi_ghosh 79 | Gautam Kamath,Univ of Waterloo,Asst Prof,thegautamkamath,thegautamkamath 80 | Georgia Gkioxari,Caltech,Professor,georgiagkioxari,ge_giox 81 | Giovanni Alcantara,Meta,AI,gvnalc,gvnalc 82 | Google DeepMind,Google DeepMind,,GoogleDeepMind,googledeepmind 83 | Gowthami Somepalli,Univ of Maryland,grad student in ML,gowthami_s,gowthami_som 84 | Greg Brockman,OpenAI,co-founder,gdb,greg.brockman 85 | Gus Martins,Google,AI DevRel,gusthema,lgusmartins 86 | Guy Van den Broeck,UCLA,Asst Prof,guyvdb,guyvdb 87 | Harpreet Sahota,Deci Ai,DL Developer Relations Manager,DataScienceHarp,datascienceharp 88 | Harrison Kinsley,Neural networks from Scratch book,author,sentdex,sentdex 89 | Hilary Mason,Fast Forward Labs,Founder & CEO,?,hilaryamason 90 | Hoi Lam,DeepMind,Research Platform Product Lead,hoitab,hoitab 91 | Horace He,Meta,Pytorch,cHHillee,chhilleee 92 | Hugging Face,Hugging Face,,huggingface,huggingface_ai 93 | Ilya Reznik,Meta,Machine Learning engineer,,reznikib 94 | Ilya Sutskever,OpenAI,Co-founder and Chief Scientist,ilyasut,ilyasu2 95 | Irene Teinemaa,DeepMind,Research Engineer,IreneTeinemaa,ireneteinemaa 96 | Ishan Khatri,Motional,Research Scientist,i_ikhatri,i_ikhatri 97 | Ishan Misra,MetaAI (FAIR),ML Researcher,imisra_,ishanmisra 98 | Jacob Goodale,Unify.ai,Machine Learning Engineer,jpgoodale1,jpgoodale 99 | James Bradbury,Google,"JAX, TPUs, and LLMs",jekbradbury,jekbradbury 100 | Jascha Sohl-Dickstein,Google Brain,Senior staff research scientist,jaschasd,jaschasd 101 | Jason Weston,MetaAI,Research Scientist,jaseweston,jase_weston 102 | Jean de Nyandwi,Carnegie Mellon,AI/DL,Jeande_d,nyandwi.de 103 | Jeff Rasley,Microsoft DeepSpeed,Principal Research Engineer,jeffra45,jeffra45 104 | Jeremy Fox,Google,LLM whisperer,JeremyDanielFox,manyfoxgiven 105 | Jeremy Howard,fast.ai,Co-founder,jeremyphoward,jeremyphoward 106 | Jeremy R Cole,Google DeepMind,(NLP),jeremy_r_cole,jeremy_r_cole 107 | Jesper Dramsch,ECMWF,Scientist for Machine Learning,jesperdramsch,jesperdramsch 108 | Jessy Li,University of Texas,"Assistant Professor, computational linguistics and NLProc",jessyjli,jessyjli 109 | Jigar Doshi,Wadhwani AI,Machine Learning Scientist and Manager,jigarkdoshi,jigarkdoshi 110 | Jim Fan,NVIDIA,Senior AI Scientist,DrJimFan,dr.jimfan 111 | Jimmy Edgell,,Data Scientist in travel,Jimmyedgell,jimmyedgell 112 | John Dickerson,"University of Maryland, Arthur","Associate Professor, Co-founder and Chief Scientist",johnpdickerson,jp.dickerson 113 | Jon Barron,Google,Research scientist,jon_barron,jonbarron 114 | Jonathan Balloch,Georgia Tech,Robotics PhD Candidate,JonathanBalloch,jonballoch 115 | Jonathan Smith,Meta,ML Research,jonathanajsmith,jonathanajsmith 116 | Josh Constine,SignalFire,Investor,JoshConstine,joshsc 117 | JR New,Clubhouse,DS/ML Scientist,jrnewww,jrnewww 118 | Julia Balla,Oxford,,,juliaballa_ 119 | Julien Chaumond,Hugging Face,CTO/co-founder,julien_c,chaumond 120 | Jun Wang,Michigan State University (formerly Twitter),Adjunct Professor,wangjun,junwdotcom 121 | Jupyter Meowbooks,,Memes,untitled01ipynb,untitled01ipynb 122 | Justin Johnson,"UMich, Meta","Assistant Professor, Research Scientist",jcjohnss,justin.c.johnson 123 | Kaggle,Kaggle,,kaggle,oficialkaggle 124 | Kai-Wei Chang,UCLAengineering,Associate Professor,kaiwei_chang,kwchang_nlp 125 | Karson Elmgren,Center for Security and Emerging Technology at Georgetown,AI policy/AI Assessment,kelmgren,karsonelmgren 126 | Kate Stafford,AtomwiseInc,"Scientist - AI/ML for proteins, small molecules, and everything in between",kastacholamine,kastacholamine 127 | Kavya Srinet,Facebook AI Research,Researcher,kavyasrinet,kavyasrinet 128 | Khalid Saifullah,"University of Maryland, Adobe","AI/ML PhD Student, Research Scientist Intern",k_saifullaah,khalidsaifullaah 129 | Kristin Lauter,FAIR Labs North America at Meta,Director,KristinLauter,kristin.lauter 130 | Kunal Bhalla,AI Dev Infra at Meta,Software Engineer,kunalbhalla,kunalb_ 131 | Kyle Vedder,University of Pennslyvania,PhD Student,KyleVedder,kylecvedder 132 | Laurence Rouesnel,Meta,Pytorch,_laurencer,laurencerouesnel 133 | Laurens van der Maaten,Meta AI (FAIR team),Research Director,lvdmaaten,lvdmaaten 134 | Lei M. Zhang,DeepMind,Research Scientist,l32zhang,lei.m.zhang 135 | Leo Boytsov,AWS Labs,Sr. Research Scientist,srchvrs,srchvrs 136 | Lex Toumbourou,Splash Music,CTO,lexandstuff,lexisoninsta 137 | Logan Kilpatrick,OpenAI,Developer Relations,logankilpatrick,logankilpatrick 138 | Lucas A. Meyer,Microsoft,Principal Research Scientist,lucas_a_meyer,lucas_a_meyer 139 | Lucas Pavanelli,aiXplain,AI Research Engineer,pavalucas,pavalucas 140 | Luke Zettlemoyer,Meta,,LukeZettlemoyer,lukezettlemoyer 141 | Madison May,Indico Data,teaching machines,pragmaticml,pragmaticml 142 | Mahmoud (Mido) Assran,MetaAI,Research Scientist,mido_assran,midoassran 143 | Margaret Mitchell,formerly Google,ML Scientist and AI Researcher,mmmitchell_ai,margaret_mitchell_ai 144 | Maria Antoniak,Allen Institute for AI,Postdoc,maria_antoniak,maria.antoniak 145 | Matt Rurck,FirstMark,VC,mattturck,mattturck 146 | Matthew Lynley,Supervised.News,Writer,mattlynley,mattlynley 147 | Matthew Muckley,Meta AI,Research Engineer,mattmucklm,mattmucklm 148 | Max Woolf,Buzzfeed,Data Scientist,minimaxir,minimaxir 149 | Maximilian Nickel,Meta,Research Scientist - AI ∩ Complex Systems ∩ Society,mnick,maxsnickel 150 | Maya,Carnegie Mellon,MS Student,,mayaxgreco 151 | Megan Risdal,"Kaggle, Google",Product work,MeganRisdal,meganrisdal 152 | Megan Taylor,UWMadison Biophysics,ML & protein engineering,megthescientist,_megthescientist_ 153 | Mehdi Jamei,System,Director of AI,mjamei,mjamei 154 | Michael Bronstein,Deepmind / Oxford,Professor,mmbronstein,mmbronstein 155 | Michael Gold,School of Visual Arts / Shaderverse,Professor / Cofounder,michaelgold,michaelgold 156 | Michael Kevin Spencer,AI Supremacy,Writer,,michaelkevinspencer 157 | Michael Rivard,,Machine learning engineer,michael_rivard,microvardoc 158 | Michael Voznesensky,Meta,Pytorch Eng,,vozfb 159 | Miguel Angel Bautista,Apple,ML Research,itsbautistam,itsbautistam 160 | Miguel Núñez,HHMI | Janelia,Neuro (Data) Scientist,NunezKant,nunezkant 161 | Mimansa Jaiswal,UMichCSE,PhD candidate,MimansaJ,mimansajaiswal 162 | Min-Hung (Steve) Chen,NVIDIA,Senior Research Scientist,CMHungSteven,cmhungsteve 163 | Mina Lee,Microsoft Research,Postdoc,MinaLee__,minaminalee 164 | Nadine Salem,Synergy Bioscience,AI Drug Discovery,technaelogy,technaelogy 165 | Nalin Semwal,Georgia Tech,MS Student,lordspline,lordspline 166 | Naomi Saphra,NYU,Postdoc NLP,nsaphra,nsaphra 167 | Natalia Burina,Formerly Meta,AI Product,Nale,nataliaburina 168 | Nathan Lambert,Hugging Face,Machine learning RESEARCHER & WRITER,natolambert,natolambert 169 | Naveen Rao,MosaicML,CEO,NaveenGRao,naveen.g.rao 170 | Neehar Peri,Carnegie Mellon University,PhD Student,NeeharPeri,neeharperi 171 | Nitish Gupta,NC State,RL research,slick_mind,theslickmind 172 | Noam Brown,OpenAI,AI researcher,polynoamial,polynoamial 173 | Olesia,SoftServe,AI lead,olylesia,_olysavra_ 174 | Oliver Obst,Western Sydney University,Associate Professor,oliverobst,oliobst 175 | OpenAI Dall-E,OpenAI,Dall-E,,openaidalle 176 | Paige Bailey,DeepMind,Product Lead for Generative Models,DynamicWebPaige,dynamicwebpaige 177 | Parmida Beigi,Amazon AI,"Senior Tech Lead Scientist on Gen AI/ML, NLP and speech recognition",ParmidaBeigi,bigdataqueen 178 | Pawel Pachniewski,,,,pwlot 179 | Pedro Morais,Agility Robotics,Engineer (simulation/RL/controls),,pedro.pnw 180 | Phillip Rust,Meta,nlp/ml phd student,rust_phillip,phillip.rust 181 | Piotr Skalski,Roboflow,Computer vision,skalskip92,skalskip92 182 | Poe,Poe,Poe,poe_platform,poe_platform 183 | Pranav Shyam,DeepMind,Researcher,recurseparadox,prnvshym 184 | Prof. Anima Anandkumar,Caltech/Nvidia,Bren Professor @caltech / Sr Director of AI research @nvidia,AnimaAnandkumar,animaanandkumar 185 | Rajesh Kandaswamy,Gartner,Industry Analyst,rajeshkan,ai_whisperati 186 | Randy Ardywibowo,Apple,Machine Learning Engineer,RandyArdywibowo,randy.pth 187 | Rho Lall,Assume Wisely,Analytics Engineer,rho_lall,rho_lall 188 | Robert Lewis,,,roblew9013,roblew9009 189 | Robert Scoble,Infinite Retina,"AI-First chief strategy office, writer",Scobleizer,scobleizer 190 | Robin Jia,USC Thomas Lord Department of Computer Science,Assistant Professor,robinomial,robinstrumental 191 | Rohit Girdhar,Facebook AI Research,Research Scientist,_rohitgirdhar_,rohytg 192 | Ross Taylor,Meta,Research,rosstaylor90,rawsstaylor 193 | Sakib Dadi,BessemerVP,Investor,SakibDadi,sakibdadi 194 | Salem,,deep learning research,SalemGhouili,salemghouili 195 | Saloni,Our World in Data,Research,salonium,saloni.n.d 196 | Sam Altman,OpenAI,CEO/co-founder,sama,sama 197 | Santiago L Valdarrama,ml.school,head,svpino,svp1n0 198 | Sarah Floris,,Senior Data and ML Platform Enginee,ADutchEngineer,adutchengineer 199 | Sasha Rush,"Cornell University, Hugging Face","Associate Professor, Researcher",srush_nlp,srush_nlp 200 | Scott Wen-tau Yih,Facebook AI Research (FAIR),Research Scientist,scottyih,curious_scott 201 | Sean OBrien,"UC San Diego, formerly FAIR",PhD Student,,seanobrienresearch 202 | Sebastian Gehrmann,Bloomberg,"Head of NLP, CTO office",sebgehr,sebastiangehrmann 203 | Sebastian Raschka,Lightning AI,,rasbt,sebastianraschka 204 | Sherri Rose,Stanford University,Professor,sherrirose,profsherrirose 205 | Shijie Wu,Bloomberg,Research Engineer,EzraWu,ezra_wu 206 | Sho Yaida,MetaAI,Research Scientist,ShoYaida,shoyaida 207 | Shobeir Fakhraei,Amazon,Senior Machine Learning Scientist,shobeirf,shobeirf 208 | Simon Batzner,DeepMind,Researcher,simonbatzner,simonomial 209 | Sophia Yang Ph.D.,Anaconda,Senior Data Scientist,sophiamyang,sophiamyang 210 | Soumith Chintala,Meta,Pytorch lead,soumithchintala,soumith 211 | Soumith Chintala,MetaAI,Cofounded and lead PyTorch,soumithchintala,soumith 212 | Stanford Institute for Human-Centered AI,Stanford,Institute for Human-Centered AI,StanfordHAI,stanfordhai 213 | Stoyan Stoyanov,,Robotics Engineer and ML practitioner building AI-powered products,,sptstoyanov 214 | Sujan Kumar Gonugondla,AWS,Sr ML Scientist,,sujankumar91 215 | Suraj Srinivas,Harvard,ML Researcher,Suuraj,savinirs_jarus 216 | Tali Herzka,Github,Copilot SWE,therzka,therzka 217 | Talia Ringer,UIUC,Assistant Professor,TaliaRinger,taliaringer 218 | Tamsin Crossland,The AI Book,co-author,CrosslandTamsin,tamsin_crossland 219 | Thomas Kipf,DeepMind,AI Research,tkipf,thomaskipf 220 | Thomas Mock,Posit PBC,Product Manager for Posit Workbench/RStudio,thomas_mock,jthomasmock 221 | Tim Tully,Menlo Ventures,Partner,timt,timtimtimt 222 | Tudor Achim,Helm.ai,Cofounder / CTO,tachim,tudorachim 223 | Victor Geislinger,,Machine Learning Engineer / Data Scientist & Educator,MrGeislinger,victorsothervector 224 | Vin Ahluwalia,Stanford,"ML Scientist/Engineer, AI Researcher",va4az,ahluwalia.vin 225 | Vlad Loktev,,Investor,vladimirloktev,vladimirloktev 226 | Wanqiao Xu,Staford,PhD candidate,wanqiao_xu,wanqiaox 227 | Weaviate,Open Source Vector Database,,weaviate_io,weaviate_io 228 | Wenfeng Zhuo,Meta,Staff ML Eng,,wenfeng_zhuo 229 | Xavier Amatriain,LinkedIn,VP of AI Product,XAmatriain,xamatriain 230 | Xindi Wu,Princeton,PhD Student,CindyCindywww,cindycindywww 231 | Yana Welinder,Kraftful,CEO / Cofounder,yanatweets,yanawelinder 232 | Yann LeCun,Meta/NYU,Chief AI Scientist/Professor,ylecun,yannlecun 233 | Yaron Lipman,"WeizmannScience, MetaAI (FAIR)","Faculty, research scientist",lipmanya,lipmanya 234 | Yoav Artzi,Cornell,"NLP, ML researcher/professor",yoavartzi,yoavartzi 235 | Yoshitomo Matsubara,Amazon,Alexa AI Applied Scientist,yoshitomo_cs,yoshitomo_cs 236 | Yossi Adi,"The Hebrew University of Jerusalem, Meta AI (FAIR)","Assistant Professor, Research Scientist",adiyossLC,yossiadidrum 237 | Zain Hasan,Weaviate,Data Science,zainhasan6,zainhsn 238 | Zining Zhu,Stevens Institute of Technology,Incoming Assistant Professor,zhuzining,bakerzzhu 239 | Ziyi Yang,Microsoft,Researcher,yzy_ai,yzy_ai 240 | Zubair Irshad,Georgia Tech,Robo/ML PhD Student,mzubairirshad,imzubairai 241 | --------------------------------------------------------------------------------