File size: 237,559 Bytes
2af882e |
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 |
,text,label
0,lilylee06067831 <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
1,gregskupien <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
2,jimitjim <bio> Computer vision | Image and signal processing | Pattern recognition | Machine learning | Artificial intelligence | Mixed reality <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
3,"saby_tweets <bio> PhD Student @Mila_Quebec @IID_ULaval @universitelaval | ex-@nvidia, masters @iiscbangalore | robust deep learning, autonomous driving, OOD, XAI <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
4,"ajit1113 <bio> Actor at Asmita theater
Wanna be a storyteller. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
5,miguelbandera <bio> #ML #3DArt #GameDev #VR #AR #photogrammetry <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
6,mgrankin <bio> The human right is to become an immortal all-mighty god. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
7,"carton_mn <bio> 23.
MERN stack, in progress
Humanities, in progress <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
8,YuanLiu41955461 <bio> PhD student at The University of Hong Kong. Doing research about 3D vision and computer graphics. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
9,"MahyarBolhassan <bio> https://t.co/DP6muBl1Li. in biomedical engineering, machine learning & deep learning enthusiast <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
10,hoangdta <bio> Machine Learning / Deep Learning Enthusiast <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
11,Monkeyinlaw1 <bio> Generate arts with machine Learning <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
12,dihuang52453419 <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
13,Ishtiaqhucane <bio> PhD Candidate @CYCU #Clustering #AIgorithms #ClimateModeling. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
14,Kieran___S <bio> Computer Vision Engineer <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
15,ogpmiz1o <bio> dsjklfdjklfsşljfdsşkldfşklcşklcd <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
16,zc_alexfan <bio> A human body guy with hands at @ait_eth and @PerceivingSys from the Beautiful British Columbia <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
17,pwais <bio> con besitos de menta y cañela <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
18,YusupovOleg <bio> CEO/Founder of PHYGITAL+ and an Emmy-nominated company @Phygitalism. Learn more at https://t.co/dV4794Jmwb https://t.co/Kf6MBnilbC <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
19,"mythirdbrain <bio> Creating AR/VR content using deep learning/AI.
I tweet for myself. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
20,"Normanisation <bio> PhD candidate @ Visual Computing and Artificial Intelligence (Prof. Niessner, TUM) <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
21,jnnksbrt <bio> building recall ✨https://t.co/NLf2TvWxhC / https://t.co/7ieW1dQw8P / mostly sharing stuff i find interesting / likes are bookmarks / typos are mine / $janniks <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
22,"meng_shengyu <bio> AI&Bio Architect, Artist, Researcher | PhD candidate @uniinnsbruck | MArch @BartlettUCL | https://t.co/TI0ZIWH3C0 <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
23,"Horizon95089898 <bio> Common sense over everything, Programmer .Love Physics and Chemistry <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
24,aertherks <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
25,"_DaveSullivan <bio> I help companies train better neural networks 🧠🤖📈
Available for freelance work 💼💻
DMs open 👍 <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
26,"tomoyukun <bio> CV / ML, CyberAgent AI Lab <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
27,CovGena <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
28,qirui_w <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
29,"lxiaol9 <bio> 3D vision, Robotics | intern @MSFTResearch | former Student researcher @GoogleBrain | Ex-intern @Mitsubishi_USA <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
30,"napoperez1998 <bio> 24| | AIEngineer| @DeepLearningAI_ Ambassador El Salvador| Senior Researcher @ieeetems| Amo el ☕️, 📚 y viajar ➡️ 👉 <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
31,from_poooo <bio> 2021年秋、妻に大切な娘を連れ去られました(#実子誘拐). 子の連れ去り・離婚後の親子関係に関心があります. 離婚調停中・親子断絶中. 30代. IT企業. MEng. 陸上競技(中長距離). 娘 #1y5m. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
32,subhobrata1 <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
33,"KiranLonikar <bio> Behind every successful prediction, there is a well trained model... 🤔🐒 <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
34,yoslber <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
35,"egeozin <bio> Co-founder at @odastudioapp (YC W20), previously @MIT. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
36,sotongshi <bio> co-founder #KumaMCN / @KnowComInc R&D戦略チーム / #Azure #HoloLens #MRPP / #AWS #ML / #CV #SLAM #Python / #WHILL #自動運転 / #メタバース #XR / #Databricks / お仕事のご依頼はDMで✉️ <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
37,"renato_umeton <bio> Work on AI, Data Science, ML, Optimization, and Computer Science in Healthcare, at @DanaFarber.
Trained @MIT @Microsoft @TU_Wien @UnicalPortale.
Views my own. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
38,SkyLi0n <bio> PhD Student at @Cornell; Previously at @FacebookAI and @BrownUniversity. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
39,"suricrasia <bio> I do lots of random stuff because my brain has too many chemicals. it/its, 1994, ⚧ <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
40,"_TianyeLi <bio> Researcher / Ph.D. candidate in Computer Vision and Graphics at @USC. Former intern at @RealityLabs, @Snapchat, @PerceivingSys and @Dolby. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
41,sstj389 <bio> PhD Student at Georgia Tech <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
42,"asadnorouzi <bio> A long time researcher and educator with expertise in Robotics, Self-Driving Cars, Deep Learning, Computer Vision. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
43,ngailapdi <bio> PhD student at Georgia Tech | Facebook Reality Labs Research intern (Summer 2021) <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
44,_mrc02 <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
45,maskrcnn <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
46,sneheshs <bio> PhD Candidate @umd @umdcs #AIforMusic #Violin #CV #Multimodal #ML #AI #HCI #HRI <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
47,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
48,zhang_yuanhan <bio> First year Ph.D. at MMLab@NTU <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
49,MrBananaHuman <bio> 바나나인간 <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
50,"ChoYingWu2 <bio> 3D Vision, Face Modeling, Depth Sensing, CS PhD @USC, Former intern at @RealityLabs, @AmazonLab126, @ArgoAI | Attorney at Taiwan <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
51,"redtedtezza <bio> 🤖🍓🎹🇦🇺🇺🇸🚀✈️
https://t.co/9Qp16r2SWy <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
52,siyao94 <bio> PhD student @ MMLab of NTU <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
53,"rkzfilter <bio> I am interested in ML/DL, especially CV and GC. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
54,hzy5000 <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
55,Khoa_NguyenTuan <bio> Enjoy learning new things <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
56,woo37451227 <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
57,valhahaha <bio> I like computers! <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
58,"maguroIsland <bio> ディープな機械学習やってるD3/筋トレ/Generative Models, Disentanglement, Virtual Try-on, Embodied AI/cvpaper.challenge HQ/アイコンは皐月恵様(@kuroe16370547)に描いていただきました🥺 <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
59,cairohenrique <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
60,Scobleizer <bio> Spatial Computing strategies. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
61,"dachii_A <bio> Kyoto Univ(B,M(RA in ATR))→Sony/3D, NLP, 3D & language/Embodied AI/CVPR2022(Oral) ※ツイートは個人の見解です <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
62,tap4453 <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
63,dannyeagle <bio> DJ Tangerine | @freshsqueezeok | Graphic Design <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
64,"GiseopK <bio> Ph.D., KAIST. Studying robot localization and mapping. Mostly retweeting. Current position: Research Engineer at NAVER LABS <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
65,ArdianaDpy <bio> love to learning <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
66,sanghiad <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
67,"Zach__Barkley <bio> This is my burner account to tweet about and follow data science, math, and programming topics that interest me. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
68,"mylesdotapp <bio> myles, your friend from the future. i work QA @BigscreenVR. AR/VR, 3D, UX. prev: @DESTRUCTOID, @playnewworld, @StateOfDecay, @YoNoid2. he/they <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
69,"ThomasW423 <bio> Chief scientist @PhytoMech, ex @PortlandGeneral @Nike @Huawei @Intel @Microsoft, MS Applied Math @UW, BS Physics @LamarUniversity <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction",1
70,Leywesk <bio> I connect ecosystems with disruptive tech. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
71,yuanggnaw <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
72,janpreetds1 <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
73,phani_nath <bio> loves learning. work with passion. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction,1
74,"TheCrypticTwo <bio> Metaverse: ""where we're going we won't need roads"" - Doc <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
75,"EvaSmorodina <bio> Student at FBB MSU. Computational structural biochemistry, molecular modeling, quantum chemistry, chemoinformatics, protein design <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
76,pencilfish_3 <bio> 色んなツイートに気ままにリプライを送る、リア友はフォローしない系のツイッタラー。 <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
77,KrishnaBolline5 <bio> Software Dev. <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
78,pijili <bio> Natural Language Processing. <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
79,SairamPillai95 <bio> Dreamer at large. Robot uprising enthusiast. <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
80,yew_mun <bio> Hi! I'm a Computational Chemist who's interested in augmenting Drug Discovery with AI! Definitely would like to chat if you are interested! :) <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
81,"amram <bio> Tech entrepreneur! Passionate about IT, AI, science, biz dev, human interactions, education, psychology, and management. Polytechnique & MIT grad. Evenium CEO. <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
82,a_rezaz <bio> <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
83,AseemY <bio> Señor Software Engineer | Python geek | You can catch me sometimes doing standup at open-mics <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
84,BREAD200011 <bio> ECCコン専 23卒 ポートフォリオ = https://t.co/YcRq5zo0fy Vivivit = https://t.co/EIcV5c9j7R… 進捗動画 = https://t.co/JAC7ZuxqFK C++20 JS/TS Directx11 <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
85,fregu856 <bio> PhD student in probabilistic deep learning at Uppsala University. <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
86,"guakik <bio> tanto, sempre <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
87,aertherks <bio> <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
88,eigendecay <bio> vector space warrior. ponzu enjoyer <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
89,subhobrata1 <bio> <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
90,Kulkarnis1994 <bio> <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
91,CovGena <bio> <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
92,falcon_dev <bio> Director of Engineering at https://t.co/iE9MMfTmCc <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
93,"KiranLonikar <bio> Behind every successful prediction, there is a well trained model... 🤔🐒 <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
94,"muktabh <bio> Tech Founder, Data Scientist, Entrepreneur, Machine Learning. Interested in scientific innovations, computer science, AI, astronomy, 🇮🇳 and green tech. <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
95,canbenowhere <bio> 추워요 <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
96,"VARUL_Choppala <bio> Binary Entanglement with Data, Quantum Entanglement with Friend's | UoHyd Grad | Coder | BioInformatician | <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
97,aupendu <bio> PhD Candidate @ IIT Kharagpur <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
98,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
99,"truechentrue <bio> Bioinformatics, Metagenomics, Immunology,Statistics,Deep learning <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
100,"TheodoreGalanos <bio> Always sitting at the intersection of #AI and #AEC. I make language models design, by asking them nicely. Co-founder @ArchitextAI. NBA fan. <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
101,jul_io7 <bio> Android Developer <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
102,KTeranisi <bio> 4dd6 32b5 2f65 d42f 2bf2 28c9 3f32 16e6 3efe 3b45 <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
103,"DetlefKroll <bio> Our science, our mathematics, our languages are all patterns of patterns.
Born 319 ppm <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
104,joebradly <bio> <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
105,"vfloresb21 <bio> Master candidate in computer science.
• Computational neuroscience • Computer vision • Reinforcement learning.
🐱☕🎬 <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
106,seickhol <bio> GameScout | Digital Art | Music | Entertainment | Science | Nature <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
107,"ThomasW423 <bio> Chief scientist @PhytoMech, ex @PortlandGeneral @Nike @Huawei @Intel @Microsoft, MS Applied Math @UW, BS Physics @LamarUniversity <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
108,Khoa_NguyenTuan <bio> Enjoy learning new things <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
109,cairohenrique <bio> <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
110,EzekielWinger <bio> Stupidity is the currency of youth. <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
111,SuperCodeCrunch <bio> I like to code. <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
112,"dttsin <bio> Incoming @Princeton Neuroscience PhD
@ucsdbiosciences @SalkInstitute B.S.
🇭🇰 @_zoeyxu_ 👫 <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
113,argosopentech <bio> Writing open source software <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
114,WitherTim <bio> <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
115,"maguroIsland <bio> ディープな機械学習やってるD3/筋トレ/Generative Models, Disentanglement, Virtual Try-on, Embodied AI/cvpaper.challenge HQ/アイコンは皐月恵様(@kuroe16370547)に描いていただきました🥺 <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
116,"jrhwood <bio> Leave the world a better place you found it.
Software Engineer, PhD student in AI, Verified Shitposter.
https://t.co/Wm95OUBuUF
#ShadowCrew🕴️#ObiWanKenobi <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
117,"ScottyIsHungry <bio> ( •●)⊂((▼д▼))⊃
Co-Founder @Goodboylabs
Director of Eng @flaskproject
Avid Chuck Norris fan <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction",1
118,allcell9 <bio> <title> PSP: Million-level Protein Sequence Dataset for Protein Structure Prediction,1
119,"saby_tweets <bio> PhD Student @Mila_Quebec @IID_ULaval @universitelaval | ex-@nvidia, masters @iiscbangalore | robust deep learning, autonomous driving, OOD, XAI <title> Text-Driven Stylization of Video Objects",1
120,mabeto5p <bio> <title> Text-Driven Stylization of Video Objects,1
121,"d_vatvani <bio> Head of Data Science @StatsBomb
Creator of https://t.co/Rtq2V6IhwN
Can occasionally pass the Turing test <title> Text-Driven Stylization of Video Objects",1
122,stilfuchs <bio> møpmøp <title> Text-Driven Stylization of Video Objects,1
123,mgrankin <bio> The human right is to become an immortal all-mighty god. <title> Text-Driven Stylization of Video Objects,1
124,cusp2210 <bio> Follows you <title> Text-Driven Stylization of Video Objects,1
125,"4245Shubham <bio> Data Scientist @reliancejio CoE in AI/ML, Masters Student at UT Austin <title> Text-Driven Stylization of Video Objects",1
126,shivamshrirao <bio> <title> Text-Driven Stylization of Video Objects,1
127,"fogside1 <bio> Lead DS at @readyplayerme |
https://t.co/vaLN3aWqvi <title> Text-Driven Stylization of Video Objects",1
128,"PalasekPetar <bio> Research scientist at https://t.co/aFPzhER7Wc. Computer vision, machine learning, self-driving cars and other fun stuff. Croatia covid19 stats on: https://t.co/TtZBNc6QZs <title> Text-Driven Stylization of Video Objects",1
129,jamal93627888 <bio> <title> Text-Driven Stylization of Video Objects,1
130,"arnicas <bio> Data science, NLP, AI for creativity & story; science fiction, games. Consultant @googlearts @hiddendoorco. Also https://t.co/vCjxGD9HCE, @[email protected] <title> Text-Driven Stylization of Video Objects",1
131,"Kartheekmnv <bio> Research scientist, computational models of perception, biological and computer vision <title> Text-Driven Stylization of Video Objects",1
132,nirzabari <bio> <title> Text-Driven Stylization of Video Objects,1
133,vinaypn <bio> working from home! <title> Text-Driven Stylization of Video Objects,1
134,bobert_p <bio> <title> Text-Driven Stylization of Video Objects,1
135,"meng_shengyu <bio> AI&Bio Architect, Artist, Researcher | PhD candidate @uniinnsbruck | MArch @BartlettUCL | https://t.co/TI0ZIWH3C0 <title> Text-Driven Stylization of Video Objects",1
136,Laique2Talha <bio> :) <title> Text-Driven Stylization of Video Objects,1
137,"David_Morcu <bio> Haré todo lo que pueda y un poco más de lo que pueda, si es que eso es posible. Y haré todo lo posible e incluso lo imposible, si es que lo imposible es posible <title> Text-Driven Stylization of Video Objects",1
138,pess_r <bio> Walking on the generative side of computer vision. Research Scientist @runwayml. he/him <title> Text-Driven Stylization of Video Objects,1
139,kondalrao_j <bio> <title> Text-Driven Stylization of Video Objects,1
140,"akshitac8 <bio> Sem @IITR | @outreachy intern @mozilla | research engineer @IIAI | Data Scientist at Bayanat
She/Her <title> Text-Driven Stylization of Video Objects",1
141,"_DaveSullivan <bio> I help companies train better neural networks 🧠🤖📈
Available for freelance work 💼💻
DMs open 👍 <title> Text-Driven Stylization of Video Objects",1
142,"rkzfilter <bio> I am interested in ML/DL, especially CV and GC. <title> Text-Driven Stylization of Video Objects",1
143,"pabloppp <bio> The things I build always work sometimes.
Machine Learning Secret Agent at Disney Research <title> Text-Driven Stylization of Video Objects",1
144,nicolasmetallo <bio> Conurbano boy turned technologist / Machine Learning at Amazon Web Services / Opinions are my own / 🇦🇷 in 🇬🇧 <title> Text-Driven Stylization of Video Objects,1
145,subhobrata1 <bio> <title> Text-Driven Stylization of Video Objects,1
146,CovGena <bio> <title> Text-Driven Stylization of Video Objects,1
147,"supremebeme <bio> @ProtonNZ - BP on Proton, zero gas fees, instant transactions ⚛️ $XPR
@GLBDEX 3D Marketplace for the metaverse
https://t.co/nLcdg9UX2U - social links on the blockchain <title> Text-Driven Stylization of Video Objects",1
148,SLoeschcke <bio> Graduate student at Aarhus University specializing in Machine Learning and Data-intensive Systems. <title> Text-Driven Stylization of Video Objects,1
149,"ShahMosen <bio> Ph.D Information Security,
Interested in Cryptography, Information Hiding, Computation over Encrypted data, ML
Badminton Lover <title> Text-Driven Stylization of Video Objects",1
150,"BenaimSagie <bio> Postdoc, DIKU @UCPH_Research and Pioneer Center for AI @AiCentreDK | Previously PhD @TelAvivUni and RS intern @GoogleAI | Computer Vision and Machine Learning <title> Text-Driven Stylization of Video Objects",1
151,"KiranLonikar <bio> Behind every successful prediction, there is a well trained model... 🤔🐒 <title> Text-Driven Stylization of Video Objects",1
152,"lxiaol9 <bio> 3D vision, Robotics | intern @MSFTResearch | former Student researcher @GoogleBrain | Ex-intern @Mitsubishi_USA <title> Text-Driven Stylization of Video Objects",1
153,desreumauxq <bio> <title> Text-Driven Stylization of Video Objects,1
154,dami_belle <bio> Data | SQL| Tableau| Python <title> Text-Driven Stylization of Video Objects,1
155,"PulkitRega <bio> CVIT, IIIT Hyderabad | Computer Graphics & Vision <title> Text-Driven Stylization of Video Objects",1
156,"mr_siddy <bio> - Summer Research Intern @iitdelhi (Graph DL)
- Lead Researcher @GenesisAILabs
- CV x Geometric DL Researcher @BMCHRC <title> Text-Driven Stylization of Video Objects",1
157,anonymousgraba <bio> 音,AI also : @ryokdamn / https://t.co/4DJpVpZO9P <title> Text-Driven Stylization of Video Objects,1
158,"ForABurton <bio> Computational vision scientist (CogNeuro PhD), fanatically into computing & (modding) games, prototyping the improbable, making intuitions computable, language <title> Text-Driven Stylization of Video Objects",1
159,askerlee <bio> Machine Learning researcher. Veritas. <title> Text-Driven Stylization of Video Objects,1
160,jeanrwx <bio> m. sc 🧑💻 @inaoe_mx <title> Text-Driven Stylization of Video Objects,1
161,heart_was_glass <bio> 봄웜라이트인 척 하는 올리브톤 가을소프트 <title> Text-Driven Stylization of Video Objects,1
162,"FukuiYasu <bio> Master of Engineering / NLP, NLU, Machine Translation / Deeplearning / Translation Studies / Philosophy / Linguistics <title> Text-Driven Stylization of Video Objects",1
163,maskrcnn <bio> <title> Text-Driven Stylization of Video Objects,1
164,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> Text-Driven Stylization of Video Objects",1
165,YunfeiZheng <bio> <title> Text-Driven Stylization of Video Objects,1
166,toyxyz3 <bio> 2.5D artist <title> Text-Driven Stylization of Video Objects,1
167,AwokeKnowing <bio> Software Engineer <title> Text-Driven Stylization of Video Objects,1
168,dnlbreen <bio> <title> Text-Driven Stylization of Video Objects,1
169,xuchaozju <bio> <title> Text-Driven Stylization of Video Objects,1
170,woo37451227 <bio> <title> Text-Driven Stylization of Video Objects,1
171,"xiaosun_jimmy <bio> Senior Researcher @ Microsoft Research Asia working on computer vision, machine learning, digital human, video understanding, motion analysis, etc. <title> Text-Driven Stylization of Video Objects",1
172,taekie <bio> pxd의 UXtech Lab을 운영하며 정보디자인을 합니다. Information Design + Problem Solving + Prototyping. <title> Text-Driven Stylization of Video Objects,1
173,rukku <bio> Code. Comics. Cartography. Information junkie. Researcher at @stamina4space (formerly @phlmicrosat). @maptimediliman <title> Text-Driven Stylization of Video Objects,1
174,"dachii_A <bio> Kyoto Univ(B,M(RA in ATR))→Sony/3D, NLP, 3D & language/Embodied AI/CVPR2022(Oral) ※ツイートは個人の見解です <title> Text-Driven Stylization of Video Objects",1
175,"vfloresb21 <bio> Master candidate in computer science.
• Computational neuroscience • Computer vision • Reinforcement learning.
🐱☕🎬 <title> Text-Driven Stylization of Video Objects",1
176,janpreetds1 <bio> <title> Text-Driven Stylization of Video Objects,1
177,justin_dulay <bio> Computer Vision / Machine Learning PhD student at Notre Dame <title> Text-Driven Stylization of Video Objects,1
178,MrBananaHuman <bio> 바나나인간 <title> Text-Driven Stylization of Video Objects,1
179,kwea123 <bio> 大家好,我是專門介紹深度學習論文與程式的Vtuber! 歡迎合作的邀約(不限V),DM或email都可以! R&D in computer vision. Interested in MVS & NVS. Also doing Vtuber. #vtuber <title> Text-Driven Stylization of Video Objects,1
180,"CShorten30 <bio> Research Scientist @SeMI_tech, working on the Weaviate (@weaviate_io) Vector Search Engine!
Host of the Weaviate podcast, link below! <title> Text-Driven Stylization of Video Objects",1
181,cairohenrique <bio> <title> Text-Driven Stylization of Video Objects,1
182,TechRonic9876 <bio> Creative Problem Solver 🇺🇸 🇬🇾 <title> Text-Driven Stylization of Video Objects,1
183,Khoa_NguyenTuan <bio> Enjoy learning new things <title> Text-Driven Stylization of Video Objects,1
184,sei_shinagawa <bio> ニューラルネットと対話したい人です / NAIST 知能コミュニケーション研究室 / cvpaper.challenge V&L group / コンピュータビジョン最前線Winter2021ニュウモンVision and Languageの正誤表は下記リンクからご覧になれます。 <title> Text-Driven Stylization of Video Objects,1
185,"YanMachX <bio> Chief Scientist at @dabblesocial, husband and father, science nerd, fight fan. UWaterloo TRON 2010. YC W2015. <title> Text-Driven Stylization of Video Objects",1
186,"SuhnyllaKler <bio> Enjoy working on graph neural networks, Synthesis across ind, data, networks, and appn/deploymt of ML/DL @ the edge(nano), ROS. Asimov, Sandman. Capital Markets <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
187,"permutans <bio> Combinatorially curious. 👨💻 Data R&DJ @beatchainmusic. ML paper feed @naiveoculus, sci alt. @biochemistries, & maths papers @appendens. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
188,skial <bio> That #Haxe Roundup guy. https://t.co/W4XnjZBNJu <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
189,"cwkx <bio> Dad of two. Research in deep generative models. Teaching deep learning, reinforcement learning & cyber security. @comp_sci_durham @durham_uni <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
190,mothmatic <bio> Fascinated by minds and machines. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
191,"JedHomer <bio> Cosmology and Machine Learning PhD candidate at @LMU_Muenchen and @IMPRS_MPIfR.
Love to paint pictures and climb rocks. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
192,"saby_tweets <bio> PhD Student @Mila_Quebec @IID_ULaval @universitelaval | ex-@nvidia, masters @iiscbangalore | robust deep learning, autonomous driving, OOD, XAI <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
193,45myr <bio> 여성이면 일단 좋고 ‘비여성’이면 무조건 싫음 <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
194,jiqihuman <bio> Diving into DL based CV and Dart now :D <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
195,BeeGass <bio> Cape Cod • WPI <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
196,dome39931447 <bio> Artificial Intelligence & Calisthenics <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
197,"d_vatvani <bio> Head of Data Science @StatsBomb
Creator of https://t.co/Rtq2V6IhwN
Can occasionally pass the Turing test <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
198,mgrankin <bio> The human right is to become an immortal all-mighty god. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
199,"MahyarBolhassan <bio> https://t.co/DP6muBl1Li. in biomedical engineering, machine learning & deep learning enthusiast <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
200,ihansel <bio> Co-Founder @ VergeLabsAI <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
201,"SavinovNikolay <bio> Research Scientist at Google @DeepMind. Before that, PhD at @ETH Zurich and Research Intern at @GoogleAI Brain team. Opinions are of my own. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
202,mgun_dick <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
203,alexfmckinney <bio> Undergraduate Student at @comp_sci_durham 🖥️ | Working with Deep Generative Models 🎨 and Unsupervised Representation Learning 📖 | I use Arch btw (≧▽≦) <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
204,"fogside1 <bio> Lead DS at @readyplayerme |
https://t.co/vaLN3aWqvi <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
205,SunghoL10754073 <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
206,"rkzfilter <bio> I am interested in ML/DL, especially CV and GC. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
207,philip368320 <bio> Like @scala @idrislang functional programming https://t.co/yXgzpRUWzP <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
208,heykirenga <bio> do ghosts dream of layers of abstraction? <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
209,goldfishhhjy <bio> hello <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
210,Kieran___S <bio> Computer Vision Engineer <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
211,gaetan_hadjeres <bio> Researcher at Sony CSL Paris in automatic music generation. Studied music composition at Paris Conservatoire. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
212,BridgeworksLtd <bio> #AwardWinning #WAN Acceleration for @Oracle @IBM @AWSCloud @NetApp @Caringostorage & more. #STEM supporters #GDPR #FinTech #RegTech #HealthTech #DRaaS #SaaS <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
213,"Normanisation <bio> PhD candidate @ Visual Computing and Artificial Intelligence (Prof. Niessner, TUM) <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
214,langer_han <bio> (Ex)PhD student. Avid reader. Interested in ML/Explainability/Interpretability <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
215,fregu856 <bio> PhD student in probabilistic deep learning at Uppsala University. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
216,pess_r <bio> Walking on the generative side of computer vision. Research Scientist @runwayml. he/him <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
217,"Separius <bio> PhD candidate at the University of Bern, Computer Vision Group <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
218,"pabloppp <bio> The things I build always work sometimes.
Machine Learning Secret Agent at Disney Research <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
219,"_DaveSullivan <bio> I help companies train better neural networks 🧠🤖📈
Available for freelance work 💼💻
DMs open 👍 <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
220,"wavefunk_ <bio> Neural networks and neuro basses
https://t.co/PtyPP6Qopv <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
221,subhobrata1 <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
222,CovGena <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
223,"KiranLonikar <bio> Behind every successful prediction, there is a well trained model... 🤔🐒 <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
224,"EunjuCha06 <bio> Ph. D, Deep learning researcher @Samsung Advanced Institute of Technology (SAIT) <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
225,"brian_mount <bio> Small data panner, web map and Mexican food extremist, software engineer in embedded/mobile vision <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
226,kastnerkyle <bio> computers and music are fun <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
227,tivaro <bio> Neural data compression @ Qualcomm AI Research <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
228,reza_arrazi <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
229,maskrcnn <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
230,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
231,STomoya0110 <bio> Graduate student of Doshisha Univ. in Japan. #AI <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
232,"abhishek__AI <bio> Soul shiner,Deep thinker, #AI'ML Learner.
#Programmer,#VisionforEntrepreneur,#Startups #Futuristic
{❤(📖,🚘🎧🏃,⚽,🌿🌱,🏊,)❤} <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
233,"ViditGoel7 <bio> @PicsartAI prev @IBM | @IITKGP '21 | Computer Vision, Deep learning <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
234,"hyungjin_chung <bio> Research intern @LANL, Ph.D. student @ KAIST,
Diffusion models / inverse problems <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
235,"ShahMosen <bio> Ph.D Information Security,
Interested in Cryptography, Information Hiding, Computation over Encrypted data, ML
Badminton Lover <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
236,ichiki_k <bio> プログラマ、(元)物理屋(ナノテク、流体) <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
237,"dcower <bio> Software Engineer, Perception @Waymo. Previously @Google on WebRTC, Duo, spatial audio, ambisonics, 360 video, and VR media. Music: https://t.co/D3NL3sdF0p <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
238,DongLi89 <bio> 相互尊重永远第一。 钟爱丰满的妹妹,熟女。 坐标东京,男,175/60,偏dom。性x爱x深度学习:) <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
239,jcjohnss <bio> Assistant Professor @UMich CSE; Research Scientist @MetaAI; Previously CS PhD @Stanford. Deep Learning + Computer Vision. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
240,naveen233 <bio> Indian <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
241,"lt453_ <bio> PhD student @Cornell CS, BS @Tsinghua_Uni Physics <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
242,"asadnorouzi <bio> A long time researcher and educator with expertise in Robotics, Self-Driving Cars, Deep Learning, Computer Vision. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
243,"andyparnadi <bio> Data Scientist in the space industry 🚀 Tokyo, Japan 🇯🇵 Working at the intersection of AI & Computer Graphics in my free time <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
244,"LeopolisDream <bio> Data Science Consulting, #ML, #dataviz.
Data Engineering.
Want to build a Data Science project in your company? DM me. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
245,lidaiqing <bio> Research Scientist @NVIDIA Toronto AI Lab <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
246,justin_dulay <bio> Computer Vision / Machine Learning PhD student at Notre Dame <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
247,heghbalz <bio> 😎🚗📖🔬🥼 <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
248,VcWabKDHN9OVdYq <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
249,RandomRoute66 <bio> Showboat and Grandstander 🇪🇺 <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
250,Scobleizer <bio> Spatial Computing strategies. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
251,starkprateek_ <bio> 22. Leo. AI Researcher. CSE @iitdelhi. Hindu. Vegetarian. AI. Robotics. Politics. Wannabe Monk. Retweets ≠ Endorsements. Jaipur✈️Delhi✈️Tokyo. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
252,iam74taro <bio> ヘッダーは多摩動物公園のコアラ <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
253,"CoderHermit <bio> Favorite movie: 'The Man from Earth'.
A book I wish to be written:'How to git gud at Starcraft and life in general' by Oriol V. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
254,sei_shinagawa <bio> ニューラルネットと対話したい人です / NAIST 知能コミュニケーション研究室 / cvpaper.challenge V&L group / コンピュータビジョン最前線Winter2021ニュウモンVision and Languageの正誤表は下記リンクからご覧になれます。 <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
255,gg816 <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
256,Khoa_NguyenTuan <bio> Enjoy learning new things <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
257,XUJoXVOvTxtCIU4 <bio> 西で生息 <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
258,"yashwantreddy <bio> Data Scientist. Husband. Gamer. Natural Language Processing fanatic.
https://t.co/EYOSIT7VXl <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
259,naoki7090624 <bio> 夏休みなう <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
260,"TheodoreGalanos <bio> Always sitting at the intersection of #AI and #AEC. I make language models design, by asking them nicely. Co-founder @ArchitextAI. NBA fan. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
261,"Crp94 <bio> AI Researcher @ SEDDI, PhD Candidate. Music nerd.
Standing on the shoulders of giants. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
262,"WorldEnder_9001 <bio> 人工知能研究者VTuberのHAL 9001です!ハルって呼んでください!
人工知能・機械学習の情報発信してます!🛰️
TRPGもやってるよ
Prof: https://t.co/S2xjk0rrNT
Language: JP/EN
Live2Dモデル: カトレア様 (@vcatrea)
Art: @iz_s_mz <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
263,rardzheng <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
264,datamase <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
265,"_240_ <bio> JKJ in 東京工業大学 工学院情報通信系。最近の研究トピックはML in/for wireless networks, Federated Learning, Split Computing, Vision and Wireless. <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
266,"GiseopK <bio> Ph.D., KAIST. Studying robot localization and mapping. Mostly retweeting. Current position: Research Engineer at NAVER LABS <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
267,"ArYoMo <bio> Research Scientist at AI Sweden.
Also sharing Art from the weights.
AI Nordics discord: https://t.co/EEZxFT1QFo <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
268,"maguroIsland <bio> ディープな機械学習やってるD3/筋トレ/Generative Models, Disentanglement, Virtual Try-on, Embodied AI/cvpaper.challenge HQ/アイコンは皐月恵様(@kuroe16370547)に描いていただきました🥺 <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders",1
269,hzy5000 <bio> <title> Megapixel Image Generation with Step-Unrolled Denoising Autoencoders,1
270,"laks316 <bio> Principal R&D Engineer, Trimble. Specialize in Signal and Image Processing, Computer Vision, Machine Learning and Cyber Security <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
271,"subhobrata1 <bio> <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
272,"CoderHermit <bio> Favorite movie: 'The Man from Earth'.
A book I wish to be written:'How to git gud at Starcraft and life in general' by Oriol V. <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
273,"CMHungSteven <bio> Research Engineer II @Microsoft Azure AI | Ex-@MediaTek AI | Ph.D. @GeorgiaTech | Computer Vision & Machine Learning | https://t.co/dKaEzVoTfZ <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
274,"ichiki_k <bio> プログラマ、(元)物理屋(ナノテク、流体) <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
275,"jul_io7 <bio> Android Developer <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
276,"SuhnyllaKler <bio> Enjoy working on graph neural networks, Synthesis across ind, data, networks, and appn/deploymt of ML/DL @ the edge(nano), ROS. Asimov, Sandman. Capital Markets <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
277,"wsiya <bio> Ph.D, 修士,博士(学振DC1)は理論物理専攻. I種試験を受け国家公務員へ. その後, 転職し民間企業へ. コンピュータを道具に面白いことができないかを考える仕事をしています.でもやっぱり物理好き自然好きです. GPU/CG/CV/ML <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
278,"AishaUroojKhan <bio> Ph.D. Candidate @ UCF, Research Intern @MIT-IBM Watson AI lab (Summers' 2020, 2021).
dreamer, persistent, fighter, hopelessly optimist. <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
279,"ptphucbk <bio> Embedded Software Engineer develops @myToucango at InnovPlus <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
280,"xbachl <bio> studying economics & policy @AtBennington 🏫 commenting on all things tech/business/legal ✍🏼 looking for a summer internship 😢 <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
281,"0xhexhex <bio> 🛠 #MachineLearning #AutonomousRobots
☮️☯️Breathe into your belly 🙏🏻
""Hacking the deepest of the mind""
OM
🐕🐶 <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
282,"MoeinShariatnia <bio> M.D. student at TUMS | Machine Learning Developer
https://t.co/cBe2CQIipJ
https://t.co/vlAbzjFhjB <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
283,"MatRazor <bio> <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
284,"giffmana <bio> Researcher (@GoogleAI Brain Team in Zürich, ex-RWTH Aachen), Gamer, Hacker, Belgian <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
285,"taekie <bio> pxd의 UXtech Lab을 운영하며 정보디자인을 합니다. Information Design + Problem Solving + Prototyping. <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
286,"jinso001 <bio> <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
287,"ForABurton <bio> Computational vision scientist (CogNeuro PhD), fanatically into computing & (modding) games, prototyping the improbable, making intuitions computable, language <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
288,"nemszabadtudnod <bio> <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
289,"Svk20012305 <bio> <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
290,"anujdutt92 <bio> Edge AI @Jabra_US | Program Advisor @UCIrvine | Ex ML Engineer @VideaHealth | Ex AI Researcher @Bose | Mentor @TFUGChandigarh <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
291,"MichaelD1729 <bio> PhD student at the Center for Human-Compatible AI at UC Berkeley working on Game Theory and Reinforcement Learning <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
292,"cesarriat <bio> 💻⌨ Artificial Intellegence Developer🚀🚀 <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
293,"renato_umeton <bio> Work on AI, Data Science, ML, Optimization, and Computer Science in Healthcare, at @DanaFarber.
Trained @MIT @Microsoft @TU_Wien @UnicalPortale.
Views my own. <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
294,"OG_Aryan_bhatia <bio> I am a man of fortune and I must seek my fortune. <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
295,"CShorten30 <bio> Research Scientist @SeMI_tech, working on the Weaviate (@weaviate_io) Vector Search Engine!
Host of the Weaviate podcast, link below! <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
296,"SoyErickMuniz <bio> Yo me muero como viví. <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
297,"breeves08 <bio> Lux Capital <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
298,"nicjac <bio> Principal Artificial Intelligence Architect @OrbisIntl (views my own)
🤖 10+ Years Leadership in AI
💙 AI for Good Practitioner
🤗 No one left behind <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
299,"toyxyz3 <bio> 2.5D artist <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
300,"mmpic11 <bio> <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
301,"koushik_srivats <bio> Research Assistant @MBZUAI <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
302,"julien_c <bio> Co-founder and CTO at @huggingface 🤗. Natural language processing, ML/AI for everyone, building products to propel communities fwd. @Stanford + @Polytechnique <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
303,"gg816 <bio> <title> The @CVPR event on @huggingface is ending on June 30th (AOE Time Zone), 118 team members and 25 @Gradio demos have… https://t.co/dS8GWnOvid",1
304,ichiki_k <bio> プログラマ、(元)物理屋(ナノテク、流体) <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
305,jasonlee2133 <bio> Majoring in Statistics at Korea Univ. / Becoming a space-faring civilization and being out there among the stars. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
306,"Michael_J_Black <bio> Director, Max Planck Institute for Intelligent Systems (@MPI_IS). German & Swedish Academy. of Sci., Computer vision, graphics, learning, mocap, virtual humans. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
307,pwais <bio> con besitos de menta y cañela <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
308,danjiiiiiiiii <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
309,"leonardog27 <bio> OsO de Gato
Opiniones Personales.
Trabajo todo el tiempo calculando en la computadora pero a veces si me gusta usar lápiz y papel para no olvidarme de como era. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
310,morikuma__beAR <bio> 趣味でVR・AR関連技術を触ったり触らなかったり <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
311,submillimetre <bio> Obscure through brevity <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
312,hhattori8 <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
313,yuyuan_jade <bio> I just want to be myself <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
314,"renato_umeton <bio> Work on AI, Data Science, ML, Optimization, and Computer Science in Healthcare, at @DanaFarber.
Trained @MIT @Microsoft @TU_Wien @UnicalPortale.
Views my own. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
315,SandlerDennis <bio> Senior Developer Technology Engineer @ NVIDIA. (Views expressed here are mine and not necessarily my employer's) <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
316,EsmalHaj <bio> Hmmmm........ <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
317,thisisoke <bio> (Shey) the most curious product designer ever. 10x curiosity. number 1 digital 👨🏿💻boi moving into spatial design… 🇳🇬 🇨🇦 <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
318,ovinkwon <bio> I make robots act 🤖 | PhD student in SNU <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
319,xclricky <bio> in Clouds <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
320,tivaro <bio> Neural data compression @ Qualcomm AI Research <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
321,ajitesh_shukla7 <bio> I am a student and i love to solve maths hard problem and i am the best in the world .I am not best infront of my professor my parents and my lord krishna. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
322,"thaoshibe <bio> I'm a Research Engineer at @VinAI_Research. Keep 🐝 🌿 in yourself!
/* 1st versions are never the best. Keep updating!*/🖼 <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
323,kakao8888 <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
324,VincentLaCour <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
325,KiaManniquin <bio> @RiversHaveWings @BoneAmputee @the_nmkd @danielrussruss @nshepperd1 @NerdyRodent @OpenAI @borisdayma @_joelsimon @AVShonenkov @BAAIBeijing @Galatolo <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
326,ml_dot_sg <bio> A machine learning community. https://t.co/nxD1449ivV is a ground-up effort to build and grow the machine learning community in Singapore. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
327,MrBananaHuman <bio> 바나나인간 <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
328,"benjedwards <bio> The tech history guy. Associate Editor, How-To Geek. Contributor Fast Company / The Atlantic / Retronauts. Creator https://t.co/Rh4KGhtWM0, Culture of Tech <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
329,jamesrdurrant <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
330,"wsiya <bio> Ph.D, 修士,博士(学振DC1)は理論物理専攻. I種試験を受け国家公務員へ. その後, 転職し民間企業へ. コンピュータを道具に面白いことができないかを考える仕事をしています.でもやっぱり物理好き自然好きです. GPU/CG/CV/ML <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
331,andrewb10687674 <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
332,iwanao731 <bio> From Academic to Creator | nostalgic city boy | frontale lover | animation graphics reseacher <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
333,ToolTrackers <bio> Writer of the Tool Trackers light urban fantasy/paranormal mystery series. 🏳️⚧️❤️🇨🇦 she/her <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
334,2zn01 <bio> Webサービスを作ってます。簡単にAIを作れるAI MAKER→https://t.co/HytCLfK62R 画像の高画質化→https://t.co/3WsiwUauWo 画像/音声/動画の文字起こし→https://t.co/FVPioH0W7V 切り抜きDB→https://t.co/GcrHXMdwu3 <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
335,alanyannnick <bio> Researcher AILab @EA #SceneUnderstanding #3DModeling #ARVR Prev:MediaLab & Lightspeed @TencentGames VisionLab @UCDavis @Xiaomi @SenseTime_AI @MeituMTLab <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
336,"nueluno <bio> PhD. Computer Vision, Image Processing for Learning/Health/Agric./Art. Love crafts and math. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
337,"anujinho <bio> I study math, write code and play football <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
338,Jesusxie <bio> ユーザインタフェース研究者@JAIST.インタラクティブシステム,コンピュータグラフィックス,深層学習,スケッチ,人間拡張,デジタルファブリケーション,拡張現実,メタバースの研究に興味がある. #UI #CG #Sketch #ML #Robotics #HCI #AR. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
339,"codinggeorgi <bio> PhD candidate @stonybrooku, @lehighu Computer Vision - open set, continual learning. Do the impossible, see the invisible... He/Him <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
340,"fogside1 <bio> Lead DS at @readyplayerme |
https://t.co/vaLN3aWqvi <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
341,mrmichmann <bio> ????????????? <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
342,taiyasaki <bio> Associate Prof. and visual computing research chair @ SFU (starting in Aug 2022); Staff Research Scientist @ Google; Adjunct Prof. @ UofT – opinions are my own. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
343,JonathanKron_ <bio> Creator <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
344,ChadiiK <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
345,"ThorvikCoin <bio> 🟨🟩 |
Dilfistani Mappings |
Vampire Romanian 🇷🇴 <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
346,maddigt <bio> nothing <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
347,"NineOfNein <bio> Lead Technical Artist at ☠️Rare☠️ | 🎭 #BAFTA Member
Game developer, Houdini user, maker of pretty things. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
348,owlwong95 <bio> Engineer. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
349,nemszabadtudnod <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
350,OG_Aryan_bhatia <bio> I am a man of fortune and I must seek my fortune. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
351,AlanMLuu <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
352,"rgherrmann <bio> Computer Scientist. Jack of all trades, master of some. Currently an Artificial Intelligence Engineer at Olivia AI (https://t.co/RF11dVbtk9) (acquired by Nubank). <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
353,"l4rz <bio> INTJ. I work to build things and spend my spare time disassembling. I also fly small airplanes, sometimes at unusual attitudes. An average GAN enjoyer. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
354,"westis96 <bio> I make things. ML, Robotics, Data Visualisation. Student at @AaltoUniversity. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
355,sum_phy <bio> her-ne-ise-o <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
356,"_s4nt4 <bio> Computational Creativity, Audio Visual, Creative Coding / @cclab_sfc, @XmusicLab / RA @SonyCSL <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
357,"CassidyMentus <bio> Applied math, statistics, machine learning, finance, programming, music, art. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
358,DoctorDukeGonzo <bio> deep learning engineer <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
359,"thefjohnrice <bio> Disturbing the dust on a bowl of rose-leaves
I do not know. <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ",1
360,dobosipeter <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
361,mrjonfinger <bio> Director / World Builder 🗺 (Now A.I. Augmented!) 🤖 <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
362,martiaus10281 <bio> <title> github: https://t.co/nw8tY5xWN3 https://t.co/VmCO75ftIQ,1
363,__girishHegde__ <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
364,maserekaramus1 <bio> IT Expert <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
365,gate_of_kavacha <bio> Entrepreneur/UTokyo/『日輪よ、具足となれ』をスキルとして実装する際は、思い入れ深い宝具名をわざわざ聞いたことのないスキル名(「太陽の鎧」や「施しの英雄」等)に改名せず、原作通りの宝具名(『日輪よ、具足となれ』)で実装して下さい🙏 <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
366,ibai_gorordo <bio> https://t.co/WrD9A7uKTM <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
367,MisterFreire <bio> Associate Professor at @ULPGC. Computer Vision and Machine Learning. Opinions are my own. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
368,zhang_yuanhan <bio> First year Ph.D. at MMLab@NTU <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
369,"anuragxel <bio> Robotics@CMU. Past: Microsoft Research, IIIT-H.
I build frugal intelligent systems to improve human lives. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
370,vinaypn <bio> working from home! <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
371,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
372,bhagirathl <bio> AI Leader | Top 20 Voice in Quantum | Computer Scientist | Public Speaker | Blockchain Visionary | MBA | Husband of a Physicist: IIT Delhi | IIM Lucknow <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
373,OshiroNaoki <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
374,ArcherLaserCat <bio> [Cat] [Antergos user] [Space Magician] [wp user] [⑨] <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
375,"thaoshibe <bio> I'm a Research Engineer at @VinAI_Research. Keep 🐝 🌿 in yourself!
/* 1st versions are never the best. Keep updating!*/🖼 <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
376,ml_dot_sg <bio> A machine learning community. https://t.co/nxD1449ivV is a ground-up effort to build and grow the machine learning community in Singapore. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
377,jaguring1 <bio> 毎日、数学をやっています。抽象度の高い数学が好きで、公理的集合論や数理論理学、圏論に興味があるけど、もっと具体的で実用的な数学も好きです。AI技術と、それがもたらす社会的影響についてよく考えていますが、基本的にテクノロジー全般の最新動向に興味があります。良さげな講義動画を見つけたら、ツイートするようにしてます。 <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
378,hantx1 <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
379,pwais <bio> con besitos de menta y cañela <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
380,OG_Aryan_bhatia <bio> I am a man of fortune and I must seek my fortune. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
381,Trevor_Ortega <bio> 'Tired semicolon sick' <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
382,DigitalBrainCom <bio> nothing much to say. SDE at Flipkart. Masters CSE from IIIT Hyderabad. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
383,agouti_59 <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
384,"rvalienter <bio> Robotics, Autonomous vehicles, AI, Science, History, Philosophy, and anything that makes me curious :) @UCF @_LXAI #LATAM #LatinX in #AI #RL 🌎 <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
385,"TimothyKassis <bio> Lead Machine Learning Engineer @matterworks_bio. Ph.D. in Bioengineering. Previously @MIT, @GeorgiaTech and @UniofNottingham. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
386,OussamaAbouyac1 <bio> ENIGMA <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
387,"ajaydiv <bio> Sr. tech. director, vision and learning, center for vision technologies, SRI International
Decency, Research, music, wit above all.
opinions mine alone. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
388,"MarxismLearning <bio> Solo 3 metas en la vida:
- Marxismo
- Deep Learning
- Matemáticas <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
389,DrAsimBaig <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
390,subhobrata1 <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
391,"redtedtezza <bio> 🤖🍓🎹🇦🇺🇺🇸🚀✈️
https://t.co/9Qp16r2SWy <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
392,dapumptu <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
393,"dineshredy <bio> PhD candidate at robotics institute, @amazon fellow.@qualcomm fellow #CMU #computervision #robotics #machinelearning #goSmithHall resident <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
394,dami_belle <bio> Data | SQL| Tableau| Python <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
395,backtrance <bio> Aspirant utilitariste <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
396,marshy303 <bio> Senior Software Engineer at Respawn Entertainment <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
397,"renato_umeton <bio> Work on AI, Data Science, ML, Optimization, and Computer Science in Healthcare, at @DanaFarber.
Trained @MIT @Microsoft @TU_Wien @UnicalPortale.
Views my own. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
398,"SuhnyllaKler <bio> Enjoy working on graph neural networks, Synthesis across ind, data, networks, and appn/deploymt of ML/DL @ the edge(nano), ROS. Asimov, Sandman. Capital Markets <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
399,cinematicio <bio> algorithmic differentiation. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
400,CovGena <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
401,"anrizal <bio> Applied AI/ML, HPC & Quantum @ AWS. Python, Scala, Haskell. Film & Literature lover <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
402,umeshthota <bio> Founder & CEO AuthBase Networks <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
403,"rsumbaly <bio> @metaai, @coursera, @linkedIn, @stanford, AI, Systems, Data products <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
404,"CharangoStation <bio> Ingeniería,
finanzas, ciencia,
política, música, literatura, investigación, creación, universo, debate, palabras, mundo...Conjuntos intersectados. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
405,sreagm <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
406,Anony_Destiny <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
407,aldosantiago <bio> 🇲🇽 <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
408,"sikidaten <bio> Interested in ML, CV, NLP. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
409,philip368320 <bio> Like @scala @idrislang functional programming https://t.co/yXgzpRUWzP <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
410,ca9z <bio> Máster en Inteligencia Artificial <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
411,samueldenton <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
412,"nueluno <bio> PhD. Computer Vision, Image Processing for Learning/Health/Agric./Art. Love crafts and math. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
413,asdfbuisa <bio> 本アカウントのつぶやきに登場する人物、団体等はすべてフィクションです。@asdfbuisa は実在する人物とは一切関係ありません。 <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
414,Tjoskz <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
415,qirui_w <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
416,nemszabadtudnod <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
417,Khoa_NguyenTuan <bio> Enjoy learning new things <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
418,PradLam <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
419,itsIanMac <bio> Computer Vision @YorkUniversity in Michael S. Brown’s lab. <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
420,cairohenrique <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
421,_stahl <bio> NFT creator <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
422,"HakeemDemi <bio> Learn to do a lot with very little, learn to make the complex simple. || Profane & unredeemed. || 27+ <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery",1
423,prabhu_vrinda <bio> <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
424,gowthami_s <bio> Grad student @UMDCS. IIT Madras Alum. Tweets about #MachineLearning and #phdlife. She/her <title> WALT: Watch And Learn 2D amodal representation from Time-lapse imagery,1
425,"julien_c <bio> Co-founder and CTO at @huggingface 🤗. Natural language processing, ML/AI for everyone, building products to propel communities fwd. @Stanford + @Polytechnique <title> @mervenoyann Happy birthday! 🎈🎉 🎁",1
426,hzwer <bio> Computer Vision Researcher;Megvii;Peking University. <title> @mervenoyann Happy birthday! 🎈🎉 🎁,1
427,"ayirpelle <bio> geek, entrepreneur, 'I strictly color outside the lines!', opinions r my own indeed. <title> @mervenoyann Happy birthday! 🎈🎉 🎁",1
428,SaurabhBanga4 <bio> <title> @mervenoyann Happy birthday! 🎈🎉 🎁,1
429,tivaro <bio> Neural data compression @ Qualcomm AI Research <title> will be here until 11,1
430,"ducha_aiki <bio> Marrying classical CV and Deep Learning. I do things, which work, rather than being novel, but not working. <title> will be here until 11",1
431,"WangBinxu <bio> Neuro grad student in Ponce Lab, Harvard University; Vision and Compu Neuro; Previously @WUSTL Neuro; @PKU1898 Physics, Yuanpei College <title> will be here until 11",1
432,"_arohan_ <bio> Principal Eng @GoogleAI, Brain Team | interested in algorithmic efficiency problems and large scale distributed systems | opinions are my own <title> will be here until 11",1
433,itsIanMac <bio> Computer Vision @YorkUniversity in Michael S. Brown’s lab. <title> will be here until 11,1
434,Svk20012305 <bio> <title> will be here until 11,1
435,"symmetry_man <bio> Scientist, -1/12th Software Engineer, हिंदी साहित्य <title> will be here until 11",1
436,"ajaydiv <bio> Sr. tech. director, vision and learning, center for vision technologies, SRI International
Decency, Research, music, wit above all.
opinions mine alone. <title> will be here until 11",1
437,"maserekaramus1 <bio> IT Expert <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
438,"pwais <bio> con besitos de menta y cañela <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
439,"tivaro <bio> Neural data compression @ Qualcomm AI Research <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
440,"mZahran001 <bio> Deep learning research engineer
Autonomous systems, @Udacity <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
441,"GuangxingHan <bio> Postdoc at Columbia DVMM Lab <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
442,"IHaveSweaters <bio> research scientist, founding team @ uber ai labs & @ml_collective, former toy designer @KiteandRocket <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
443,"ViditGoel7 <bio> @PicsartAI prev @IBM | @IITKGP '21 | Computer Vision, Deep learning <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
444,"ducha_aiki <bio> Marrying classical CV and Deep Learning. I do things, which work, rather than being novel, but not working. <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
445,"ArtDeza <bio> Robot Ophthalmologist 🤖 • PostDoctoral Research Associate @ MIT's Center for Brains, Minds and Machines (@MIT_CBMM) • Peruvian 🇵🇪 <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
446,"_arohan_ <bio> Principal Eng @GoogleAI, Brain Team | interested in algorithmic efficiency problems and large scale distributed systems | opinions are my own <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
447,"Svk20012305 <bio> <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
448,"symmetry_man <bio> Scientist, -1/12th Software Engineer, हिंदी साहित्य <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
449,"jbhuang0604 <bio> Research Scientist @Meta Reality Labs and incoming faculty @umdcs starting Fall 2022. Working on computer vision and machine learning. I like pixels. <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
450,"worksalt <bio> Death Star Robot https://t.co/IGpTmOusH9 Always seek wisdom, kaizen, learn, make better choices, fight to do right! This robot fights in defense of humanity against fascism! <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
451,"fffiloni <bio> Recherche numérique • interest for ML / AR • Master Cinéma d’animation & Motion Design (@Ecole_ArtsDeco) • Motion Design teacher • tech consultant for motion <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
452,"minguk_kang <bio> PhD student at POSTECH in South Korea. I like to train GANs :) <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
453,"chiron_bang <bio> Just a guy who tries to teach NNs how to perform simple tasks kids can easily accomplish.
Phd Student in CS @FloridaAtlantic <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
454,"wjscheirer <bio> Prof. at Notre Dame. Computer Vision + Machine Learning + Digital Humanities + Home Cooking <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
455,"lam_darius <bio> <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
456,"rezar <bio> Trying to build algorithms to improve human health, while not harming other creatures. Asst Prof at Boston University. <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
457,"KhanovMax <bio> Programmer and hobbyist <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
458,"WaltonStevenj <bio> Ph.D. Student @ University of Oregon
Studying Computer Vision | SHI Lab <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
459,"SanhEstPasMoi <bio> Dog sitter by day, Scientist at @huggingface 🤗 by night <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
460,"DurikNoah <bio> Well, my original account got hacked and I can't recover it unfortunately. So, here's the 2nd iteration of the Artifical Arts account! <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
461,"Whats_AI <bio> Focused on making AI accessible. ""What's AI"" on YouTube. Co-founder & Head of Community at Towards AI.
youtube: https://t.co/WZ2peGaJTv
blog: https://t.co/iQOBWhyNpq <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
462,"_TianyeLi <bio> Researcher / Ph.D. candidate in Computer Vision and Graphics at @USC. Former intern at @RealityLabs, @Snapchat, @PerceivingSys and @Dolby. <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
463,"EljazryMohamed <bio> <title> Sitting at tables on the other side of coffee shop next to door and between cafe, wearing a red shirt https://t.co/EgkMDHNvyQ",1
464,"meng_shengyu <bio> AI&Bio Architect, Artist, Researcher | PhD candidate @uniinnsbruck | MArch @BartlettUCL | https://t.co/TI0ZIWH3C0 <title> ""New York City, oil painting"" - CogView2",1
465,"EvenEveno <bio> To passing through. 🦄
Passionate about Art 🎨, Movie🎬, Travelling🛫, Photography 📷, Food🍨, Swimming🏊♀️. Broad interest in Machine Learning & Statistics. <title> ""New York City, oil painting"" - CogView2",1
466,"Zergfriend <bio> Birthday = Jan 1991 <title> ""New York City, oil painting"" - CogView2",1
467,"mintrupt <bio> = ['CSE', 'EE', 'Civil Aviation', 'Piano', 'Competitive Programming', 'Amateur Radio', '🏳️🌈']; <title> ""New York City, oil painting"" - CogView2",1
468,"nrln_phd <bio> It is gonna be great! <title> ""New York City, oil painting"" - CogView2",1
469,"vfloresb21 <bio> Master candidate in computer science.
• Computational neuroscience • Computer vision • Reinforcement learning.
🐱☕🎬 <title> ""New York City, oil painting"" - CogView2",1
470,"ejanowicz <bio> Data scientist at UrbanSim <title> ""New York City, oil painting"" - CogView2",1
471,"sreagm <bio> <title> ""New York City, oil painting"" - CogView2",1
472,"ChengleiSi <bio> Undergrad @umdcs @ClipUmd @UMD_LSC. Research Intern @Microsoft. Prev: @TsinghuaNLP @wing_nus. #NLProc. <title> ""New York City, oil painting"" - CogView2",1
473,"andrewb10687674 <bio> <title> ""New York City, oil painting"" - CogView2",1
474,"PDhakal31 <bio> Computer Engineering student interested in ML and Computer Vision. <title> ""New York City, oil painting"" - CogView2",1
475,"WaltonStevenj <bio> Ph.D. Student @ University of Oregon
Studying Computer Vision | SHI Lab <title> ""New York City, oil painting"" - CogView2",1
476,"gclue_akira <bio> 最近は、AI x Roboticsやってます。
https://t.co/zNBvY3dUcZ https://t.co/7kJPY6065O <title> ""New York City, oil painting"" - CogView2",1
477,"jbohnslav <bio> Research scientist at Perceptive Automata, giving human intuition to autonomous vehicles
neuroscience PhD -- interested in real and artificial neurons <title> ""New York City, oil painting"" - CogView2",1
478,"mr_siddy <bio> - Summer Research Intern @iitdelhi (Graph DL)
- Lead Researcher @GenesisAILabs
- CV x Geometric DL Researcher @BMCHRC <title> ""New York City, oil painting"" - CogView2",1
479,"jcebermudo <bio> 15 y/o · designer & wizard <title> ""New York City, oil painting"" - CogView2",1
480,SAliRezaE <bio> هیچ..... <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
481,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
482,ShuJian47330569 <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
483,WeiQiu9 <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
484,kien_do_92 <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
485,zhaoran_wang <bio> Assistant Professor @NorthwesternU (Machine Learning) | PhD @Princeton | studying Deep RL (Theory) | advising open-source projects ElegantRL & FinRL <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
486,MoMe36806866 <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
487,gerryle00239759 <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
488,"LeopolisDream <bio> Data Science Consulting, #ML, #dataviz.
Data Engineering.
Want to build a Data Science project in your company? DM me. <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
489,theindiaeternal <bio> The slow paced Phoenix. <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
490,birolyildiz <bio> SMMM Prof. Dr. yapay zeka terbiyecisi. öğrenci (hala 🤦🏻♂️). kodlama sever. meraklı. <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
491,swiftgirl33 <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
492,serena_chenl <bio> 𝙡𝙞𝙛𝙚𝙡𝙤𝙣𝙜 𝙡𝙚𝙖𝙧𝙣𝙚𝙧. 𝘞𝘢𝘯𝘥𝘦𝘳𝘭𝘶𝘴𝘵. 𝘛𝘦𝘤𝘩𝘯𝘰 𝘭𝘰𝘷𝘦𝘳. 𝘊𝘰𝘳𝘨𝘪 𝘰𝘸𝘯𝘦𝘳 🌻 <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
493,PetrSimanek4 <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
494,"yuricampbll <bio> Cybernetics, GraphML & NLP in Knowledge Transfer @Fraunhofer, Lecturer in AI @FOMHochschule, former: Quantum Statistics @mpiMathSci <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
495,"KhanAsif__ <bio> PhD in ML @InfAtEd | Interests: Generative Models, Bayesian Inference, Physics-prior in Neural Networks | MSc. from @UniBonn <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
496,craig_simons <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
497,Orkat42 <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
498,prarthana_bh <bio> Intern @Apple AI/ML | Ph.D. Candidate @UWaterloo | Prev. @AmazonScience @UTokyo_News_en <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
499,Rabbit_n_Pig_ <bio> Year 1 PhD student at University of Liverpool @LivUni @XJTLU <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
500,40KwF4rwPGWB4Ea <bio> 中国成都 电子测量技术 <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
501,"guru_swam <bio> Computer vision, Neuroscience, Deep learning <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
502,PabloAlbn <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
503,"nitalon <bio> PhD student @HUJI and @MPICybernetics. Social learning, partner, Theory of mind, dad (x2), Multi-agent RL (not an ordered list) <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
504,Tjoskz <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
505,"hminlecrypto <bio> Crypto - Finance
#BTC #ICP <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
506,guillefix <bio> uwuneer https://t.co/JeUmIleAuk building AI+VR 👾 \\ Research @FlowersINRIA 🔬\ transhumanist fluff 🦊 living in VR \💚 the unknown \ open-pan-poly 💞. alt @faeaubade <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
507,AsaCoopStick <bio> Doing a machine learning/NLP PhD in the Data Science CDT at Edinburgh University! Prev: research internship at Facebook/NAVER/Amazon <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
508,"lomnafsk <bio> Faculty of engineering (computers and systems) ❤️💙... Loving mathematics , Java programming language and embedded systems.
https://t.co/OYrNoVhjiB <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
509,"DetlefKroll <bio> Our science, our mathematics, our languages are all patterns of patterns.
Born 319 ppm <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
510,dami_belle <bio> Data | SQL| Tableau| Python <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
511,Drg_elness <bio> Enthusiast of data science and beer. And smash. Ocassional blogger. <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
512,mario_y_c <bio> AI Engineer at @SonyAI_global. Working on Reinforcement Learning and Robotics. MSc at @Polytechnique @ENS_ParisSaclay 🇵🇪 <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
513,Khoa_NguyenTuan <bio> Enjoy learning new things <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
514,jamal93627888 <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
515,OussamaAbouyac1 <bio> ENIGMA <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
516,"CShorten30 <bio> Research Scientist @SeMI_tech, working on the Weaviate (@weaviate_io) Vector Search Engine!
Host of the Weaviate podcast, link below! <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
517,"westis96 <bio> I make things. ML, Robotics, Data Visualisation. Student at @AaltoUniversity. <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
518,___BlueRain_ <bio> It's me.. <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
519,dharani_ish <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
520,ishitamed <bio> ⚡️AI Resident (FAIR) @MetaAI⚡️Previously @mldcmu 👩💻 Apple WWDC 2016 & Facebook F8 Scholar. BITS Pilani'21 📸🌏🌈 <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
521,askerlee <bio> Machine Learning researcher. Veritas. <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
522,rave78 <bio> Senior Researcher at the German Research Center of Artificial Intelligence <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
523,subhobrata1 <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
524,caileanbtc <bio> Cailean Finn_ New Media Artists + Creative Technologist IG: https://t.co/e31l8faVqq Web: https://t.co/yivZAOmIfp Alt: @tablets #Bitcoin $STX <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
525,LucaGrillotti <bio> PhD student @ImperialCollege in Evolutionary Robotics and Unsupervised Behavioural Discovery with Quality Diversity Algorithms <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
526,"HakeemDemi <bio> Learn to do a lot with very little, learn to make the complex simple. || Profane & unredeemed. || 27+ <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
527,"Dr_Quark79 <bio> Theoretical physics master's student.
'ordony <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
528,neurosp1ke <bio> Exploring ways to algorithmically model our world. <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
529,CovGena <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
530,"tarvaina <bio> Life, Software, and Machine Learning <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
531,thor_tweeter <bio> ⚡️🐍🤖🎓 Electrical Engineer and Ph.D. candidate researching in the areas of modern control and learning systems <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
532,"risi1979 <bio> Research: AI, Neuroevolution, Artificial Life, Hybrid Intelligence, ML, Games, Robots. Professor, ITU Copenhagen. Co-founder of https://t.co/EeVHNpBENS <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
533,ArcherLaserCat <bio> [Cat] [Antergos user] [Space Magician] [wp user] [⑨] <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
534,"AljosaOsep <bio> Postdoc at CMU and TUM, working on robot vision and other cool stuff. From Slovenia 🇸🇮. <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
535,langer_han <bio> (Ex)PhD student. Avid reader. Interested in ML/Explainability/Interpretability <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
536,"idansc <bio> Leading Research at Spot by NetApp
Postdoc at TAU
Interests: Deep Learning, Multi-modal <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
537,WitherTim <bio> <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
538,OG_Aryan_bhatia <bio> I am a man of fortune and I must seek my fortune. <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision,1
539,"JayahariA <bio> 19 | creative developer 'n' designer...
|
tech writer
#javascript #webdev #python #ML #quantum_computing #web3 #blockchain <title> Walk the Random Walk: Learning to Discover and Reach Goals Without Supervision",1
540,amadeuzou <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
541,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
542,pwais <bio> con besitos de menta y cañela <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
543,"sikidaten <bio> Interested in ML, CV, NLP. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
544,zanfir1987 <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
545,"imr165 <bio> Data Monger,
All opinions are my own. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
546,dami_belle <bio> Data | SQL| Tableau| Python <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
547,michael_at_work <bio> Working on it. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
548,jul_io7 <bio> Android Developer <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
549,"sr_papa <bio> Ph.D Electrical Engineering. video game player, love fighting games. キング player. Maximize Team. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
550,Tjoskz <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
551,"maxwellbbennett <bio> comp sci + neuro MS student @Columbia
research assistant @Columbia_DPML & Columbia CGUI Lab
formerly robotics PM @kindredai; research assistant @hrilab
he/him <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
552,Svk20012305 <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
553,"s1wase <bio> Love research (3D Computer Vision), and climbing / Incoming Ph.D. student @CMU_Robotics / Opinions are my own ⭐️ <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
554,moepforfreedom <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
555,"gui_ggh <bio> researcher cv/ml @nianticlabs, previously @imperialcollege <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
556,"_mxochicale <bio> Research Associate in real-time #AI with Ultrasound @KingsImaging
💙 #AI | #Biomechanics | #MedTech🔬
Innovating @air4children
Views are my own <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
557,yK_mls <bio> BA <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
558,"apolmig <bio> Prompting Machines || Artificial Intelligence, Education, Energy | Founder https://t.co/19AvriElPW et al. | alum @fastdotai @MicrosoftAfrica @Repsol @HECParis <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
559,thiemoall <bio> Computer Vision & ML Researcher @GoogleAI <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
560,"morris_phd <bio> I apply innovative technologies like machine learning, computer vision, and physics to further an organization's goals. Am recognized innovator with 66 patents. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
561,maskrcnn <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
562,"jincfunk <bio> Sincopation in 3D. Interested in music, computer vision, and machine learning. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
563,AlbanisGiorgos <bio> Computer Vision & AI Engineer <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
564,"redtedtezza <bio> 🤖🍓🎹🇦🇺🇺🇸🚀✈️
https://t.co/9Qp16r2SWy <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
565,shuntuz <bio> Maker / Software Developer / Machine Learning / Embedded Systems / Back-end application / Cloud Infrastructure <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
566,OussamaAbouyac1 <bio> ENIGMA <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
567,anujdutt92 <bio> Edge AI @Jabra_US | Program Advisor @UCIrvine | Ex ML Engineer @VideaHealth | Ex AI Researcher @Bose | Mentor @TFUGChandigarh <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
568,"AlexandreDevaux <bio> Creative technologist in 3D web visualization and Mixed Reality
R&D Engineer @NYTimesRD <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
569,"SuhnyllaKler <bio> Enjoy working on graph neural networks, Synthesis across ind, data, networks, and appn/deploymt of ML/DL @ the edge(nano), ROS. Asimov, Sandman. Capital Markets <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
570,teesandtoes1 <bio> I build stuff <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
571,subhobrata1 <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
572,"fogside1 <bio> Lead DS at @readyplayerme |
https://t.co/vaLN3aWqvi <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
573,lukemcneice <bio> Maker. Gamer. Wannabe teacher <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
574,"depricated_ <bio> I know it's hard, but don’t be a dick.
Dabbles in photography, software engineering, computer vision and AI. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
575,HyroVitaly <bio> PhD-Engineer in Virtual Reality for health - Musician - Medieval Fencer - INTP profile on Myers-Briggs Type Indicator (MBTI) #StopWar <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
576,tkach1024 <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
577,3duaun <bio> @ Unity Labs : Spatial Experience Architect : Building AI artists : Researcher/Artist/Designer/Engineer : △🌑▽ https://t.co/AqQ6nuSU2I : they/them <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
578,avatartapp <bio> Turn your selfie into a cartoon using AI and state of art algorithms and filters. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
579,"HakeemDemi <bio> Learn to do a lot with very little, learn to make the complex simple. || Profane & unredeemed. || 27+ <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
580,seishin55 <bio> 株式会社ACES←東京大学大学院/Web&DeepLearning/画像認識(物体認識/姿勢推定/3Dモデル推定)/画像生成(人物/ファッション)/FP資格/blog(https://t.co/vKkFbCbe2I)/ Qiita(https://t.co/nHtRUezArg)/note(https://t.co/nBpUm0NVEL) <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
581,"malav399 <bio> | 23 | Co-Founder @interalityXR | Engine for Virtual Worlds |
| Gold medalist | Tweets: Tech, Product & human behavior | Prev: @reolo5| <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
582,joebradly <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
583,"vfloresb21 <bio> Master candidate in computer science.
• Computational neuroscience • Computer vision • Reinforcement learning.
🐱☕🎬 <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
584,jillemash <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
585,hhattori8 <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
586,sreagm <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
587,_NextElonMusk <bio> 18 yrs old | Software Developer | Machine Learning | Robotics | Rustacean🦀 <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
588,JustusThies <bio> I am a Max Planck Research Group Leader focusing on the AI-based motion capturing and synthesis of digital humans. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
589,ReedRoof <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
590,_mrc02 <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
591,"david_picard <bio> AI research, mostly computer vision. Music & overall happiness. Currently @ImagineEnpc / LIGM , École des Ponts @EcoledesPonts. https://t.co/oh0fain7UM <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
592,shanyao_a <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
593,snflwr59 <bio> Numazu(Shizuoka)---TOYOHASHI(Aichi)---Chino(Nagano)---Fujimi(Nagano)---SanJose(CA)---Fujimi---Chino <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
594,flate036 <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
595,sotongshi <bio> co-founder #KumaMCN / @KnowComInc R&D戦略チーム / #Azure #HoloLens #MRPP / #AWS #ML / #CV #SLAM #Python / #WHILL #自動運転 / #メタバース #XR / #Databricks / お仕事のご依頼はDMで✉️ <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
596,the_masterless <bio> 退院しました <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
597,"KzhtTkhs <bio> 名古屋で組込みエンジニア(C/C++)をしていました。
画像処理(C++/Python)、Web(Azure/AWS/SFDC)やIoTの仕事も。
兼、雑用。
MLやKaggle勉強中(🥉×2)。JuliaとRustとElmも習得したい。
勉強会になるとツイートが増えます。
質問やお仕事でご相談があればDMまで。 <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
598,UnaNancyOwen <bio> ぷろぐらまー / Microsoft MVP for Windows Development / Point Cloud Library Maintainer / Book「KINECT for Windows SDKプログラミング Kinect v2対応」「OpenCVではじめよう ディープラーニングによる画像認識」 <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
599,bittnt <bio> Researcher at Cruise. Dad. Interests in: computer vision and machine learning. All opinions are my own. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
600,redaready <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
601,"yu4u <bio> General Manager at Mobility Technologies / Ph.D. in Eng. / Kaggle Master https://t.co/DoZ6QgCzMb / Interested in deep learning, image recognition, image retrieval. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
602,OG_Aryan_bhatia <bio> I am a man of fortune and I must seek my fortune. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
603,ChenZhuo19 <bio> Void <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
604,"renato_umeton <bio> Work on AI, Data Science, ML, Optimization, and Computer Science in Healthcare, at @DanaFarber.
Trained @MIT @Microsoft @TU_Wien @UnicalPortale.
Views my own. <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
605,"i4cy_ <bio> Computing scientist, engineer & self appointed polymath. Programs computers in various languages, solders wires to anything electronic. 📻 HAM radio MØOOX <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
606,"worksalt <bio> Death Star Robot https://t.co/IGpTmOusH9 Always seek wisdom, kaizen, learn, make better choices, fight to do right! This robot fights in defense of humanity against fascism! <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
607,tap4453 <bio> <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
608,"Ghazanfar85 <bio> #Pakistani #ComputerEngineer #AR #AI #ML #HCI #NUST #EME #LUMS #UST #KIST
Google Scholar:https://t.co/ENoIWfxdNv <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
609,"ejiwarp <bio> 常時みっくみくしてます。
サムネはシャリさん(@sharidom)よるものです。 <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
610,"lxiaol9 <bio> 3D vision, Robotics | intern @MSFTResearch | former Student researcher @GoogleBrain | Ex-intern @Mitsubishi_USA <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
611,"jon_exists <bio> individualist, ai person 🇺🇸 <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
612,"juliaro23068527 <bio> life is hard, i am too <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
613,"jbohnslav <bio> Research scientist at Perceptive Automata, giving human intuition to autonomous vehicles
neuroscience PhD -- interested in real and artificial neurons <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation",1
614,tattaka_sun <bio> ML+CGのR&D見習い的な / 今年度の抱負: 人と上手に話す / https://t.co/f05QodalvX / このアカウントはweb小説「幻想再帰のアリュージョニスト(https://t.co/cNF7CweFRN )」を応援しています <title> BlazePose GHUM Holistic: Real-time 3D Human Landmarks and Pose Estimation,1
615,ShuJian47330569 <bio> <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
616,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
617,"coco_han <bio> NLP Research Scientist @KakaoBrain
Previously obtained BA & Master on Natural Sciences @Cambridge_Uni <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
618,_SebastianLund <bio> MSc-student in Computer Science. <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
619,birolyildiz <bio> SMMM Prof. Dr. yapay zeka terbiyecisi. öğrenci (hala 🤦🏻♂️). kodlama sever. meraklı. <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
620,"ArYoMo <bio> Research Scientist at AI Sweden.
Also sharing Art from the weights.
AI Nordics discord: https://t.co/EEZxFT1QFo <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
621,"yuricampbll <bio> Cybernetics, GraphML & NLP in Knowledge Transfer @Fraunhofer, Lecturer in AI @FOMHochschule, former: Quantum Statistics @mpiMathSci <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
622,"oliverlemon <bio> Chief AI Officer and Co-founder, Alana AI Ltd.
Professor, Director of Interaction Lab: conversational AI, NLP, machine learning, human-robot interaction. <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
623,patrick40291985 <bio> <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
624,hiroakiLhayashi <bio> <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
625,Tjoskz <bio> <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
626,onloglogn <bio> PhD candidate @MILAMontreal. <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
627,"siddish_ <bio> small talk bots @workhackio
hmu 🤗 if you are enthu about conversational products, NLP/RL, interfaces over foundation models like GPT-3/Dall-E/Gato <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
628,CovGena <bio> <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
629,"ZhaoMandi <bio> Interning @MetaAI, PhD @Columbia w/ @SongShuran. Prev. @berkeley_ai. I made an emotional investment that @ChelseaFC will win the title in/around the year 2025. <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
630,Dharma008652 <bio> <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
631,sea_snell <bio> Incoming PhD @berkeley_ai. My friend told me to tweet more. I stare at my computer a lot and make things <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
632,"lomnafsk <bio> Faculty of engineering (computers and systems) ❤️💙... Loving mathematics , Java programming language and embedded systems.
https://t.co/OYrNoVhjiB <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
633,"The_Real_Qilex <bio> Computational Linguist
Free speech advocate
Follow for ML + Politics
Retweets & Likes do not imply endorsement <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
634,Khoa_NguyenTuan <bio> Enjoy learning new things <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
635,"SuhnyllaKler <bio> Enjoy working on graph neural networks, Synthesis across ind, data, networks, and appn/deploymt of ML/DL @ the edge(nano), ROS. Asimov, Sandman. Capital Markets <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
636,SebastianTLinde <bio> <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
637,"CShorten30 <bio> Research Scientist @SeMI_tech, working on the Weaviate (@weaviate_io) Vector Search Engine!
Host of the Weaviate podcast, link below! <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
638,"magnord <bio> Building the games of the future at @embarkstudios. Head of Research, which mostly means machine learning and AI <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
639,"HakeemDemi <bio> Learn to do a lot with very little, learn to make the complex simple. || Profane & unredeemed. || 27+ <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
640,Isinlor <bio> Software Developer at University of Leuven. Machine learning and astronomy passionate. <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
641,ejanowicz <bio> Data scientist at UrbanSim <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
642,"nstylia <bio> Postdoctoral Research Fellow @CERTHellas / @MKLab_ITI | Research in NLP / ML | Prev: @Uni_of_Essex, @Auth_University <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
643,sreagm <bio> <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
644,nnnnnnzy <bio> XXXX <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
645,"micmylin <bio> Independent Researcher, Machine Learning Engineer at Facebook, Lurker on Twitter <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
646,"aoftk_ <bio> Associate Technology Evangelist | Area of Interest : AI,ML,NLP <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
647,ZhangLunjun <bio> PhD student @UofTCompSci and @VectorInst. Researcher @Waabi_ai. <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
648,"renato_umeton <bio> Work on AI, Data Science, ML, Optimization, and Computer Science in Healthcare, at @DanaFarber.
Trained @MIT @Microsoft @TU_Wien @UnicalPortale.
Views my own. <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
649,"jluizgomes <bio> Faço uns códigos, dou risada de coisas duvidosas, escuto umas músicas boas, leio uns livros, toco violino e tento escrever meu livro de terror… 🤘🤓 <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
650,masafumi <bio> I'm a graphics research manager and director in Japan. https://t.co/l3lX1VAUwEとか新masafumi's Diaryとかの管理人してます。 ※私の発言はあくまでも個人的なものなのでどっかの組織とか団体の見解ではありません。 <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
651,haskelloween <bio> трансцендентально-экстралингвистический императив против войны <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
652,"octonion <bio> Chief Data Scientist, Headlamp Software. Ex - San Diego Padres, Detroit Tigers, Houston Rockets & others. Google Foobar winner.
mailto:sabermetrics@gmail.com <title> Offline RL for Natural Language Generation with Implicit Language Q Learning",1
653,kaineko <bio> バーチャルな世界でAIをがんばる化け猫 VRChat:kaineko 質問箱:https://t.co/YoiL1jRBAu… <title> Offline RL for Natural Language Generation with Implicit Language Q Learning,1
654,ShuJian47330569 <bio> <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf,1
655,"deldelmax <bio> Deep Learning/NLP Ph.D. Student and Junior Researcher at https://t.co/Ezd7eiLqUH.
I post an ML thread regularly every five years! <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf",1
656,your_LP <bio> <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf,1
657,thor_tweeter <bio> ⚡️🐍🤖🎓 Electrical Engineer and Ph.D. candidate researching in the areas of modern control and learning systems <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf,1
658,ArcherLaserCat <bio> [Cat] [Antergos user] [Space Magician] [wp user] [⑨] <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf,1
659,bittnt <bio> Researcher at Cruise. Dad. Interests in: computer vision and machine learning. All opinions are my own. <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf,1
660,"Ghazanfar85 <bio> #Pakistani #ComputerEngineer #AR #AI #ML #HCI #NUST #EME #LUMS #UST #KIST
Google Scholar:https://t.co/ENoIWfxdNv <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf",1
661,Ammade47 <bio> Stand for what's right <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf,1
662,"ThomasW423 <bio> Chief scientist @PhytoMech, ex @PortlandGeneral @Nike @Huawei @Intel @Microsoft, MS Applied Math @UW, BS Physics @LamarUniversity <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf",1
663,"YunpyoAn <bio> UNIST AIGS
HeXA
I usually post Korean...
Church's thesis is a magic wand. <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf",1
664,kaineko <bio> バーチャルな世界でAIをがんばる化け猫 VRChat:kaineko 質問箱:https://t.co/YoiL1jRBAu… <title> github: https://t.co/Nu0jgZ3qKo https://t.co/cnG50SKwpf,1
665,gozde_gul_sahin <bio> Asst. Prof. @kocuniversity / @KuisAICenter Fellow / Natural Language Processing & Machine Learning <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
666,"AndreHanselow <bio> NLP, DL, ML researcher
currently at Cerence Inc. <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
667,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
668,"Dalle2Cats <bio> Prompt: ~An account for Dall-E generated images of cats~
😸✨ All images created using OpenAI #DallE <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
669,"napoperez1998 <bio> 24| | AIEngineer| @DeepLearningAI_ Ambassador El Salvador| Senior Researcher @ieeetems| Amo el ☕️, 📚 y viajar ➡️ 👉 <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
670,"coco_han <bio> NLP Research Scientist @KakaoBrain
Previously obtained BA & Master on Natural Sciences @Cambridge_Uni <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
671,Tjoskz <bio> <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
672,Denpa92 <bio> コード公開するとかわいい公式キャラクターがつぶやいてくれるらしい. <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
673,AsaCoopStick <bio> Doing a machine learning/NLP PhD in the Data Science CDT at Edinburgh University! Prev: research internship at Facebook/NAVER/Amazon <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
674,Soo_00777 <bio> Whatever <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
675,"mrm8488 <bio> Computer Engineer: Software architect Node.js, Machine Learning. NLP/NLG Engineer @narrativaai. Head Contrib/ Ambassador🤗 @huggingface. Research 🌸@bigsciencew <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
676,"ArYoMo <bio> Research Scientist at AI Sweden.
Also sharing Art from the weights.
AI Nordics discord: https://t.co/EEZxFT1QFo <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
677,Orkat42 <bio> <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
678,ChiahsuanL <bio> Ph.D. candidate in @UW @UWNLP #NLProc ex-intern @MSFTResearch @GoogleAI <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
679,OussamaAbouyac1 <bio> ENIGMA <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
680,"westis96 <bio> I make things. ML, Robotics, Data Visualisation. Student at @AaltoUniversity. <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
681,"CShorten30 <bio> Research Scientist @SeMI_tech, working on the Weaviate (@weaviate_io) Vector Search Engine!
Host of the Weaviate podcast, link below! <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
682,mothmatic <bio> Fascinated by minds and machines. <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
683,"HakeemDemi <bio> Learn to do a lot with very little, learn to make the complex simple. || Profane & unredeemed. || 27+ <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
684,arpit_rajauria <bio> Senior AI engineer at IQVIA | 🏞️ <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
685,nnnnnnzy <bio> XXXX <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
686,AwokeKnowing <bio> Software Engineer <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
687,"siddish_ <bio> small talk bots @workhackio
hmu 🤗 if you are enthu about conversational products, NLP/RL, interfaces over foundation models like GPT-3/Dall-E/Gato <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
688,bittnt <bio> Researcher at Cruise. Dad. Interests in: computer vision and machine learning. All opinions are my own. <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
689,cairohenrique <bio> <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
690,sam_wizer <bio> <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
691,pbaylies <bio> Learning deeply; quietly curating my gallery: https://t.co/sS0UjzOIgk <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
692,Ammade47 <bio> Stand for what's right <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
693,dnlbreen <bio> <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
694,PHamouni <bio> Data Scientist. Curious. <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
695,"YunpyoAn <bio> UNIST AIGS
HeXA
I usually post Korean...
Church's thesis is a magic wand. <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
696,"blueujob <bio> Active trader, engineer. Yes, that’s me in the pic <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog",1
697,rosinality <bio> no side-effects <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
698,kaineko <bio> バーチャルな世界でAIをがんばる化け猫 VRChat:kaineko 質問箱:https://t.co/YoiL1jRBAu… <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
699,misawann06 <bio> UTokyo B3 NLP <title> GODEL: Large-Scale Pre-Training for Goal-Directed Dialog,1
700,tfius <bio> Es may B my bae chord. Synthetic cypherpunk Space Che ancestor. <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
701,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
702,a_sarig_ <bio> curious explorer <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
703,betterjpm <bio> <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
704,"0xhexhex <bio> 🛠 #MachineLearning #AutonomousRobots
☮️☯️Breathe into your belly 🙏🏻
""Hacking the deepest of the mind""
OM
🐕🐶 <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
705,"brihatsquirrel <bio> Rama's squirrel. Vedas, Dharma, wireless communication, Markets, machine learning... In that order <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
706,"huseinzolkepli <bio> I build https://t.co/hBtznK7J6Q, https://t.co/tt6lowWHL7 and https://t.co/HwD2TeJnR2. Sangat suka korek hidung. Suami @shafiqah_ayu yang comel <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
707,"code_star <bio> Efficient AI | Research Intern MosaicML | Formerly Visiting Researcher @ Facebook | #TXST Ph.D Student | Austin, TX | #TXSTFOOTBALL fan
https://t.co/cqY2R5gR4k <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
708,Arx_nl <bio> I tweet about UX and BPM in an Industry 4.0 context. Particularly interested to improve performance towards sustainability with the help of unlocked data. <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
709,OussamaAbouyac1 <bio> ENIGMA <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
710,Svk20012305 <bio> <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
711,"westis96 <bio> I make things. ML, Robotics, Data Visualisation. Student at @AaltoUniversity. <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
712,subhobrata1 <bio> <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
713,"ai_rishikesh <bio> Co-Founder of https://t.co/CruhgH3BvL
DL/ML Researcher, Working on Audio and Image, and open Source enthusiast.
Check me out here: https://t.co/yBmha6o6m3 <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
714,sam_wizer <bio> <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
715,"rrherr <bio> Machine Learning Engineer, Musician, Reply Guy <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
716,"HakeemDemi <bio> Learn to do a lot with very little, learn to make the complex simple. || Profane & unredeemed. || 27+ <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
717,"affige_yang <bio> 1 Chief Music Scientist, Taiwan AI Labs
2. Associate Professor, Research Center for IT Innovation, Academia Sinica <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
718,sreagm <bio> <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
719,CovGena <bio> <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
720,canbenowhere <bio> 추워요 <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
721,cairohenrique <bio> <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
722,"_eray_eren <bio> Speech&Deep Learning Researcher and TA at Ozyegin University(MSc, 2019--). BSc from Bogazici University. Former R&D Engineer at Arcelik. <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
723,anujdutt92 <bio> Edge AI @Jabra_US | Program Advisor @UCIrvine | Ex ML Engineer @VideaHealth | Ex AI Researcher @Bose | Mentor @TFUGChandigarh <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
724,Ammade47 <bio> Stand for what's right <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
725,Harish535 <bio> Enjoy what u do...! <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
726,KSKTYM <bio> PhD (working) student / R&D engineer <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
727,"nearcyan <bio> AI researcher / founder of many Things (now: https://t.co/IAkQ5O9b5J)
💜 startups, longevity, VR, and anime (making it real soon (tm)), personal website: https://t.co/wGpgLhElK9
DMs open <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
728,ArcherLaserCat <bio> [Cat] [Antergos user] [Space Magician] [wp user] [⑨] <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
729,langer_han <bio> (Ex)PhD student. Avid reader. Interested in ML/Explainability/Interpretability <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
730,gg816 <bio> <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
731,Eric_Engelhart <bio> <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
732,oldmonad <bio> 🙋💻🎮 <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤,1
733,"MoustaphaSalehh <bio> Researcher, observer on armed conflicts and irregular migration. Cyber-activist and human rights defender. <title> Adversarial Multi-Task Learning for Disentangling Timbre and Pitch in Singing Voice Synthesis 🎤🎤",1
734,kirillsidorchuk <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
735,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
736,"kaalam_ai <bio> The authors of Jazz, the efficient open source AI platform, tweet #DataScience, #AI and #MachineLearning news from Twitter and arXiv. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
737,wachaong <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
738,Snootruff <bio> Lead Animator @ Frictional Games | He/Him | 🏳️🌈 icon: Me - banner: @pastej16 <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
739,mm4633289 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
740,PradLam <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
741,"pedrohe22785148 <bio> Hello world! my name is Pedro and i'm a programmer who tries to use my knowledge for the better world.
data science, robotic and app development are my thing <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
742,"satojkovic <bio> Arsene Wenger's man. My passport is red and white.
I have published deep learning applications on Github. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
743,"codekoan <bio> Let's not overshare, ok? I block all perceived bot accounts. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
744,"_mxochicale <bio> Research Associate in real-time #AI with Ultrasound @KingsImaging
💙 #AI | #Biomechanics | #MedTech🔬
Innovating @air4children
Views are my own <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
745,ziurze <bio> Lo que sucedió antes del Big Bang me tiene sin cuidado. <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
746,Orkat42 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
747,"vfloresb21 <bio> Master candidate in computer science.
• Computational neuroscience • Computer vision • Reinforcement learning.
🐱☕🎬 <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
748,csaybar <bio> Master student at @MSc_CDE | Dreaming to become a research scientist someday 🌴🌏🌱🛰 | Originally from #Peru 🇵🇪 <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
749,mikesanabria97 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
750,swiftgirl33 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
751,ymuto0302 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
752,"zhengzhongtu <bio> Incoming Engineer @GoogleResearch, PhD student @UTAustin, Intern @GoogleAI @YouTube, working on computer vision problems <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
753,Maltelandgren <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
754,"nueluno <bio> PhD. Computer Vision, Image Processing for Learning/Health/Agric./Art. Love crafts and math. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
755,"colourlaw027 <bio> Science, maths, computing and politics <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
756,magicheron <bio> Intelligent & Secure Apps Tech Lead | @smartapps.hq Co-Organizer | MBA <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
757,"sikidaten <bio> Interested in ML, CV, NLP. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
758,KarakayDeniz <bio> metu eee | kadıköy maarif’19 <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
759,BuGah_ <bio> IFB 💥💥💥💥💥💥 <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
760,RandomRoute66 <bio> Showboat and Grandstander 🇪🇺 <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
761,"FinSentim <bio> We are building multilingual financial sentiment analysis platform to help you track sentiment changes of companies, stocks, and sectors. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
762,abhisk_kadian <bio> Research Engineer Meta A.I. <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
763,Tjoskz <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
764,"ahsangoheer <bio> I feel the need, the need, to sleep. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
765,D_GRATE49 <bio> ADDICTED <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
766,bhagirathl <bio> AI Leader | Top 20 Voice in Quantum | Computer Scientist | Public Speaker | Blockchain Visionary | MBA | Husband of a Physicist: IIT Delhi | IIM Lucknow <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
767,"jordanraji <bio> UCSP Lic. BSc. Computer Science GDSc. Data Science - Los Santos Corp., Bultech & @Cluster_LA @MelgarOficial <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
768,masax_mprg <bio> とある企業で機械学習・深層学習の研究してる闇堕ち研究員 研究用垢 ギター弾くぞー 🎸テニス 読書 アニメ J-POP 邦ロック アニソンetc… #ComputerVision #画像処理 #機械学習 #ディープラーニング #深層学習 #attention #python #pytorch 本垢→@公開予定… <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
769,"UgandanDev <bio> Software Engineer, Data Scientist and ML Engineer. Research Enthusiast For NLP , Computer Vision and Compiler Design. PostGrad Student. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
770,"omkar_mehta95 <bio> Cloud Software Intern @Nvidia. Industrial Engineer (Advanced Analytics concentration) at @UIUC. Tweets about ML, Data Science, Cloud technologies. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
771,"shoaibdipu <bio> Lecturer at @CSEbracU | ML / DL Enthusiast
P.S : Previous Account w/ same Handle got deleted due to Deactivation :| <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
772,ladiemon <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
773,hzy5000 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
774,_Alex_Borghi_ <bio> CTO and co-founder @WildMeta_AI <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
775,DavidRowley_IT <bio> Helping enterprises find the value in their data from the edge to the cloud to the storage array. I work @HitachiVantara but opinions are my own <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
776,kuroneko3271003 <bio> よりもい ベンチプレス120kg デッドリフト 130kg スクワット 100kg apex python DL <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
777,maskrcnn <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
778,NazarTkach <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
779,awilliamsonuk <bio> Senior Lecturer @sunderlanduni Specialising in Deep Learning Computer Vision for Security Applications. Opinions & Tweets are my own. <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
780,"bhagatsurya2 <bio> Building @inAtomEdu
trying to get closer to data 🔭
• 19✨
• data science 🐍
• Machine Learning 🤖
• Deep Learning 🧠 <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
781,Khoa_NguyenTuan <bio> Enjoy learning new things <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
782,"johnnylai_ <bio> #mfers #497, farming $CRV / $CVX / #KP3R / $BADGER / $SNX / $LIKE / <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
783,"aspromatis <bio> Quant | Video Creator | Indie Developer | Formcheck AI
I like building stuff and creating cool videos about banking and trading. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
784,AliEntertainm <bio> کمتر از یک قرن تجربه، از عناوین جهان نوکریت ما را بس;) <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
785,terryyuezhuo <bio> Research @Monashinfotech. They/them. Prev: @harrison_ai & @UNSWCOMPUTING. From La La Land. <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
786,OussamaAbouyac1 <bio> ENIGMA <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
787,"MSemic <bio> AI & ML, user of @TensorFlow, learning NLP @PyTorch, creating art @Procreate Maldivian 🇲🇻 <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
788,"kkahatapitiy <bio> PhD candidate @SBUcompsc and Student Researcher @GoogleAI | Working on CV, ML, Robotics | Past: Intern at WormpexAI, BS @entc_uom <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
789,"acosta_guille <bio> Fundamentalista de la pizza al molde 🍕| Vinito 🍷
Entusiasta del ML y el DS 🤖
Estudiante de Ingeniería - UTN FRBA <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
790,dami_belle <bio> Data | SQL| Tableau| Python <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
791,"Kingand33493259 <bio> artist, engineer and polymath 🤓
#computerart #DataScience #ComputerVision #MachineLearning #Science #artist #ArtificialIntelligence #episTHEMology <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
792,lkjnk7 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
793,yashashr3 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
794,sjogren_rickard <bio> Machine learning in biopharma. Senior scientist at @Sartorius. AI | Machine learning | Drug discovery | Bioimaging | Biotech. Views are my own. <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
795,"RYNEQBL <bio> Computer science geek -
Mathematics lover -
Attracted into p2p networking -
Intrested in privacy concerns -
Opensource programmer <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
796,agouti_59 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
797,AdityaJitta <bio> Machine Learner <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
798,"ai_rishikesh <bio> Co-Founder of https://t.co/CruhgH3BvL
DL/ML Researcher, Working on Audio and Image, and open Source enthusiast.
Check me out here: https://t.co/yBmha6o6m3 <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
799,checkm1000 <bio> f(Available)^{-1}.Interested in ML. <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
800,Mike63194248 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
801,m_k_696 <bio> 自然言語処理を主に勉強しており、Qiitaに実装重視で初学者にもわかりやすくをモットーに記事を投稿しています。Twitterでも読んだ論文や実装における細かなTipsとかをつぶやいたりしています。 <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
802,michael_at_work <bio> Working on it. <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
803,liam_langli <bio> Game Engine Developer <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
804,_kojimold <bio> NII / Neural-Symbolic / T-PRISM / 確率論理 / 帰納論理プログラミング / SAT / BMI / MinD in a Device <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
805,"amram <bio> Tech entrepreneur! Passionate about IT, AI, science, biz dev, human interactions, education, psychology, and management. Polytechnique & MIT grad. Evenium CEO. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
806,MrzEsma <bio> زمین، منطقه ی محروم هستی است و ما هم «رندان تشنه لب» که به اردوی جهادی آمده ایم | مهندس ماشین لرنینگ در «باسلام» <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
807,"ChenMalobani <bio> Science, Data and Tec <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
808,DeveloperHarris <bio> building the future I want 🚀 | apprentice AI whisperer 🤖 <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
809,CXR2018 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
810,subhobrata1 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
811,IgorCarron <bio> CEO https://t.co/b9fz6WvhTx @LightOnIO | Paris Machine Learning Meetup (8100+) @ParisMLGroup | https://t.co/jY1eeMkqJE (8M+ pageviews) @NuitBlog | Rocket Scientist <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
812,"HakeemDemi <bio> Learn to do a lot with very little, learn to make the complex simple. || Profane & unredeemed. || 27+ <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
813,3duaun <bio> @ Unity Labs : Spatial Experience Architect : Building AI artists : Researcher/Artist/Designer/Engineer : △🌑▽ https://t.co/AqQ6nuSU2I : they/them <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
814,Amin_Abouee <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
815,"SuhnyllaKler <bio> Enjoy working on graph neural networks, Synthesis across ind, data, networks, and appn/deploymt of ML/DL @ the edge(nano), ROS. Asimov, Sandman. Capital Markets <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
816,joebradly <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
817,vishalrishi6 <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
818,nicolasmetallo <bio> Conurbano boy turned technologist / Machine Learning at Amazon Web Services / Opinions are my own / 🇦🇷 in 🇬🇧 <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
819,"NandoDF <bio> I research intelligence to understand what we are, and to harness it wisely. Research Director @DeepMind. CIFAR. Previously Prof @UBC & @UniofOxford. He/him. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
820,vincent4ml <bio> <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
821,NotAnyMike <bio> Principal ML engineer @ Kopernikus Automotive | University of Edinburgh | National University of Colombia | He/Him <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
822,philip368320 <bio> Like @scala @idrislang functional programming https://t.co/yXgzpRUWzP <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
823,"LeahihEddington <bio> Gаthered on the site of girls from аll US stаtes 😽
Reаdy for а 1 on 1 meeting
Nudes in profile! Wаtching this https://t.co/Iqpvd803Dp <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
824,heghbalz <bio> 😎🚗📖🔬🥼 <title> MaskViT: Masked Visual Pre-Training for Video Prediction,1
825,"taesiri <bio> Ph.D. @ U of A, XAI <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
826,"JasonMa2020 <bio> @Penn PhD, @MetaAI intern, @GRASPlab, @Harvard ‘20. Interested in all things reinforcement learning & robot learning. <title> MaskViT: Masked Visual Pre-Training for Video Prediction",1
827,MadnessJ_Y <bio> Disco Diffusion&AI Art <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
828,Rob_Gonsalves_ <bio> Engineering Fellow @Avid <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
829,maserekaramus1 <bio> IT Expert <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
830,amadeuzou <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
831,hellonearthis <bio> We might make mistakes but we will make other things too - Michael Joseph Savage <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
832,"rom1504 <bio> Software engineer interested in machine learning (computer vision, natural language processing, deep learning) and programming (network, bots, web) <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
833,KampalaSiobhan <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
834,"geozeal <bio> creative tech type, cloud sys admin, and lapsed geodata wrangler <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
835,"CKannas <bio> Research Software Engineer (Cheminformatics), Husband, Father and Casual PC Gamer, W40K Deathwatch collector... <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
836,"DanEllisScience <bio> Ex-Physicist, Visualisation Programmer, Software Engineer, Atmospheric `Chemist` and occasional misanthrope. Views are my own. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
837,"arnicas <bio> Data science, NLP, AI for creativity & story; science fiction, games. Consultant @googlearts @hiddendoorco. Also https://t.co/vCjxGD9HCE, @[email protected] <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
838,nousr_ <bio> i watched ex machina once and now i’m here <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
839,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
840,hokiepoke1 <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
841,t0m0QS <bio> tokyo◻︎◻︎men <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
842,"robrombach <bio> PhD Student @UniHeidelberg.
Generative Deep Learning = ❤️. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
843,pwais <bio> con besitos de menta y cañela <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
844,Vajtrax <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
845,"tehqin17 <bio> roboticist in training @ USC, Algorithms Live! host, ICPC judge, USACO coach <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
846,"powerrangerraul <bio> Futuro es IA, Blockchain, Ciencia
Física, UANL
Montañista, Senderista
Motociclista
Marihuano
y todos los tags por conocer <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
847,ohnabe <bio> なんかの何か。論文書いてたりデータ分析してたり色々 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
848,chinochanhakami <bio> 低浮上 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
849,wang_zj_ <bio> haha <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
850,"Ted_Underwood <bio> Using machine learning to study literary imagination, and vice-versa. Distant Horizons (UChicago, 2019). Information Sciences (@iSchoolUI) / English. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
851,"AydaoAI <bio> Creator of ""This Anime Does Not Exist"" model (https://t.co/JV6yVVC7nu). Generator generator, *GAN surgeon. AI / ML / Art 🤖 🎨
Making anime real. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
852,kokumon2 <bio> 日本科学技術大学目指しています。最近は通信教育でも始めようかなと思っています。通信教育で空手が強くなりたいです。金欠です。フォローは返します。よろしくデス。 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
853,"NJetchev <bio> Principal applied scientist @Zalando, deep learning expert, digital art experimenter.
See also https://t.co/xRXElXA8TB https://t.co/YcdUUNerZJ <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
854,"nft_unity <bio> Visual Artist creating #NFTs . I adore many kinds of art style, and our team also create in many styles. With one unifying theme : positive qualities. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
855,IheartArt6 <bio> AI collaborative artist 🇳🇱 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
856,KiaManniquin <bio> @RiversHaveWings @BoneAmputee @the_nmkd @danielrussruss @nshepperd1 @NerdyRodent @OpenAI @borisdayma @_joelsimon @AVShonenkov @BAAIBeijing @Galatolo <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
857,"BEBischof <bio> Hobbyist Extraordinaire!
Head of Data Science @weights_biases; Teach ML @rutgers; prev: @Stitchfix_algo; personal: https://t.co/dSL3gu1gxN & https://t.co/OtAIiCcLPq; he/him <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
858,goooon25 <bio> 男 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
859,"3koozy <bio> عكوز بكوز في كل مكان مركوز.
عابر سبيل ..
#INTJ
أكثر الأشياء اثارة للخوف هي مانجهلها ، وحش بلا إسم!
Insta: Three_koozy <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
860,"RitchieWellson <bio> Half scientist, half artist: don't box me!
Currently exploring AI generated but human guided #Art <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
861,STomoya0110 <bio> Graduate student of Doshisha Univ. in Japan. #AI <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
862,willvau <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
863,"ukituki <bio> DeFi research and onchain analytics.
Data science. Systems thinking. Generative art. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
864,_adamhowell <bio> Founder of @accomplice_ai. Believer in AI’s power to augment human creativity. Lover of all things indie business. ABC: Always Be Creating. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
865,allcell9 <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
866,juki_DSandGM <bio> しょうもない独り言が多いです。コンペ中は特にうるさいです。コンペ終了直後はさらにうるさいです。 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
867,"lxcloak <bio> binging on the state of bleeding-edge technology, current affairs and pop culture <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
868,"Cvadogsan <bio> University of Tsukuba mast18→the University of Tokyo M1/@rkmt lab/HCI/WINGS-IIW/language learning, movies, jiujitsu, mt climbing, bouldering ENG→@nawta_hci <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
869,pppaaaooo <bio> Kaggle Master/atmaCup 優勝x3 /Shake芸/天鳳(ppaaoo 8段)/テニス/機械学習/息子が可愛すぎる <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
870,d_neville <bio> Co-founder of https://t.co/9hXRgSd9tX | Father of 2 great girls | Former Fledermaus product manager | UNB Hockey Fan | Newfie <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
871,"hideosnes <bio> Art, AI, NFTs, and Data Visualization / Artist and Researcher from Vienna and Helsinki / Non-binary Ace / no pronoun ¦ say my name! / LGBTQIAP+ / DnD 🐼 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
872,DoubleMathew <bio> Building AI products | A name so nice they named me twice <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
873,"EnzymeZoo <bio> A computer-generated art explorer.
Mainly uses Clip-Guided Diffusion, but who knows what tools we'll have tomorrow?
(she/her) <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
874,RiversHaveWings <bio> AI/generative artist. Writes her own code. Absolute power is a door into dreaming. #EleutherAI <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
875,abhilashvj <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
876,EB685309 <bio> #Bitcoin ♫ Verum Ars 🔜 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
877,kien_do_92 <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
878,"TheodoreGalanos <bio> Always sitting at the intersection of #AI and #AEC. I make language models design, by asking them nicely. Co-founder @ArchitextAI. NBA fan. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
879,drewflaherty <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
880,botpro762 <bio> Hi I am botpro76! 🇨🇦 my discord is botpro76#1113 and my YouTube is in the link below ⬇️ <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
881,pbaylies <bio> Learning deeply; quietly curating my gallery: https://t.co/sS0UjzOIgk <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
882,zamundira <bio> PAUL HUB!! <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
883,"trc4identica <bio> I have learned to murmur in public.
Used to hang out at https://t.co/9VI40T9f6l but now procrastinating at https://t.co/TxdH8mLkAv ... <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
884,Attic_Wizard <bio> 🔞 one day i'll get gud enough 🔞 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
885,rystylee <bio> Programmer / @qosmo_inc <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
886,ymuto0302 <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
887,cesarriat <bio> 💻⌨ Artificial Intellegence Developer🚀🚀 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
888,"danielajisafe <bio> All Jesus ! |Research Assistant| 3D Vision @VisualAI4Humans |
|Ex @KPMG_NG|T.A @DataScienceNIG|Co-Founder @lautechdatasci|Eph 2:10 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
889,"alisabets <bio> NLP, Data, Full-Stack @ Cohere AI. Building AIs and UIs. Human ML + Tech aggregator. Co-creator of https://t.co/tCiYfy94Br <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
890,vincent4ml <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
891,"WangBinxu <bio> Neuro grad student in Ponce Lab, Harvard University; Vision and Compu Neuro; Previously @WUSTL Neuro; @PKU1898 Physics, Yuanpei College <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
892,RSpezialetti <bio> PhD in 3D Computer Vision and Deep Learning. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
893,allowfirm <bio> 深層学習に興味があります。 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
894,swiftgirl33 <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
895,clublandgrace <bio> lighthouse keeper | 跳彈 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
896,"AndrewMendez19 <bio> Senior ML Engineer at @Clarifai, Snapchat Lens Studio Creator. Previously worked at @medialab, @cornell_tech, @UCF <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
897,"erimoso <bio> Understanding the narratives of the criminal classes plaguing modern governments, institutions, and corporate management <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
898,jul_io7 <bio> Android Developer <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
899,Vivia10356578 <bio> Independent Researcher. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
900,porestar <bio> Geoscience + Machine Learning | Imperial PhD | Bouldering | Photography <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
901,"ScienceStanley <bio> Friendly neighborhood mad (AI) Scientist 🧑🏻🔬🤖
DAOs:
@goodworkDAO technical architect,
@lab_DAO core contributor,
@brtmoments CV2,
@grailersDAO rando. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
902,"renato145 <bio> PhD student at The University of Adelaide, working on medical images analysis using machine learning. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
903,"aerinykim <bio> Engineering manager @scale_ai. I do both, things that scale and don't scale. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks",1
904,miguelbandera <bio> #ML #3DArt #GameDev #VR #AR #photogrammetry <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
905,RuochengWang <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
906,W33lliam96 <bio> <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
907,deepfates <bio> AI danger researcher <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
908,jasonbaldridge <bio> Research scientist at Google in Austin working on grounded language understanding. <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
909,cosmojg <bio> Slay the dragon: https://t.co/AJi1xoLw6z <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
910,tonoezep <bio> Mi vida por Ner' zhul! <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
911,omdza31 <bio> Lifelong learner 🤓 <title> The ArtBench Dataset: Benchmarking Generative Models with Artworks,1
912,tumaini_lyimo <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
913,"birdMan710Nika <bio> 海外製ゲームの日本語化とかやってましたが、最近はできてません
専門分野は形式手法とかシンボリック実行のあたりですが、最近はNLPの勉強をしています
GitHub : https://t.co/0w1esfRlBx
Steam : https://t.co/6ScYX8gS2s <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
914,lehduonggg <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
915,philip368320 <bio> Like @scala @idrislang functional programming https://t.co/yXgzpRUWzP <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
916,EsmalHaj <bio> Hmmmm........ <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
917,dnlbreen <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
918,kien_do_92 <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
919,cesarriat <bio> 💻⌨ Artificial Intellegence Developer🚀🚀 <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
920,shivamshrirao <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
921,LongLongYu <bio> Computer vision and machine learning engineer <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
922,AliEntertainm <bio> کمتر از یک قرن تجربه، از عناوین جهان نوکریت ما را بس;) <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
923,victorrambaud1 <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
924,"jonathanalis1 <bio> PhD em Informática. Tocador de ukulele e trombone.
Processamento de sinais biomédicos, áudio, imagem, vídeo games e ciências naturais me interessam bastante. <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
925,"aoftk_ <bio> Associate Technology Evangelist | Area of Interest : AI,ML,NLP <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
926,tuan_hung_vu <bio> Research scientist at https://t.co/XPhUYHqyfb <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
927,"nickmuchi <bio> Fixed Income trader, lover of markets and fintech. #ToTheMoon <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
928,jayeshgar <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
929,sotongshi <bio> co-founder #KumaMCN / @KnowComInc R&D戦略チーム / #Azure #HoloLens #MRPP / #AWS #ML / #CV #SLAM #Python / #WHILL #自動運転 / #メタバース #XR / #Databricks / お仕事のご依頼はDMで✉️ <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
930,rofs007 <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
931,"SuhnyllaKler <bio> Enjoy working on graph neural networks, Synthesis across ind, data, networks, and appn/deploymt of ML/DL @ the edge(nano), ROS. Asimov, Sandman. Capital Markets <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
932,maskrcnn <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
933,mckjoo1 <bio> PhD Student @BU <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
934,"Kingand33493259 <bio> artist, engineer and polymath 🤓
#computerart #DataScience #ComputerVision #MachineLearning #Science #artist #ArtificialIntelligence #episTHEMology <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
935,lkjnk7 <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
936,YiwuZhong <bio> Computer Science Ph.D. student at UW-Madison <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
937,adamhkb <bio> 24 | ML Engineer/Data Scientist | Based in London 🇬🇧 | Manchester United 🔴 <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
938,dami_belle <bio> Data | SQL| Tableau| Python <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
939,DesigniumLab <bio> 位於日本東京(五反田)和會津若松市(總部)的科技x設計公司。 基於「讓人們感到開心」的理念,開發了各式各樣結合新科技的數位內容體驗。製作項目為「結合地方文化」、「提供客戶現有技術服務」、「協助客戶執行特定製作與開發」、以及「公司自身感到有趣的創作」。 如有案件委託或合作相談,請隨時與我們聯繫! <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
940,"taesiri <bio> Ph.D. @ U of A, XAI <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
941,CMHungSteven <bio> Research Engineer II @Microsoft Azure AI | Ex-@MediaTek AI | Ph.D. @GeorgiaTech | Computer Vision & Machine Learning | https://t.co/dKaEzVoTfZ <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
942,xinw_ai <bio> Senior Researcher @MSFTResearch in computer vision & machine learning. CS PhD from Berkeley @berkeley_ai and @ucbrise. Opinions are my own. <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
943,AxeShikhar <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
944,jimmygunawanapp <bio> Jim-innie 🦗 Blend Sutra for Mind. 🍎 🍣 🇮🇩🇦🇺. Raw ART blended with passion for AR. Hearty 3D Art therapy with Blenderian 🚴 🧘♂️🧃 Stay Blendful! 🚭 <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
945,"GiseopK <bio> Ph.D., KAIST. Studying robot localization and mapping. Mostly retweeting. Current position: Research Engineer at NAVER LABS <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
946,"NegativeMind <bio> 今日もネガティブだよ!
進捗サブアカ:@NegativeMindWIP
ブログ:https://t.co/tOhOiBA2Uy <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
947,prabhu_vrinda <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
948,"renato_umeton <bio> Work on AI, Data Science, ML, Optimization, and Computer Science in Healthcare, at @DanaFarber.
Trained @MIT @Microsoft @TU_Wien @UnicalPortale.
Views my own. <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
949,nemszabadtudnod <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
950,sreagm <bio> <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
951,zhang_yuanhan <bio> First year Ph.D. at MMLab@NTU <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208,1
952,"abidlabs <bio> 🤗 Founder @Gradio (acquired by @HuggingFace)
🌎 Mentor @FatimaFellowshp
🌲 PhD @Stanford
""When one teaches, two learn"" <title> a @Gradio Demo for RegionCLIP: Region-based Language-Image Pretraining on @huggingface Spaces for @CVPR 2022 by… https://t.co/XZCASqN208",1
953,blondiemachine <bio> Recovering ice cream addict. Frustrated 3D researcher. I draw comics about life as a millennial researcher... and about #ComputerVision and #MachineLearning. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
954,tivaro <bio> Neural data compression @ Qualcomm AI Research <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
955,marcassens <bio> cofounder @ https://t.co/m9g67enz6o <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
956,LESS5E <bio> Computational Creativity and Machine Learning | PhD Student| AI & Art <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
957,cleavey1985 <bio> PhD applied math. Left academia for a career in industry. Research Scientist at Dash Hudson. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
958,praveenraja_ <bio> Deep Learning Researcher & Engineer <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
959,yakupakkaya_ <bio> ECE (MASc) | @uOttawa Research Assistant Smart Connected Vehicles Innovation (SCVI) Centre at uOttawa-Kanata North <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
960,MarekKow4 <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
961,"_arohan_ <bio> Principal Eng @GoogleAI, Brain Team | interested in algorithmic efficiency problems and large scale distributed systems | opinions are my own <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
962,deepkyu_song <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
963,xoiga123 <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
964,"vmduc <bio> Ph.D in Computer Science, Postdoctoral researcher @UTokyo, alumni @NII @SOKENDAI @HCMUS <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
965,AliEntertainm <bio> کمتر از یک قرن تجربه، از عناوین جهان نوکریت ما را بس;) <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
966,PlisSergey <bio> Associate Professor | Computer Science | Brain Imaging | Machine Learning | Deep Learning | Causal Learning | Neuroimaging | Biomedical Imaging <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
967,Arech8 <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
968,datasith <bio> CV Scientist @AWSCloud ~ I love to develop hardware and software to build datasets that I can use to train and test deep neural nets. 🧮 <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
969,"im_prashant_rai <bio> Marie Skłodowska-Curie Doctoral Researcher (MORE-ITN, @TampereUni)
Spatial AI, Sensor Fusion, long-term autonomy in heavy duty mobile machinery <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
970,"worksalt <bio> Death Star Robot https://t.co/IGpTmOusH9 Always seek wisdom, kaizen, learn, make better choices, fight to do right! This robot fights in defense of humanity against fascism! <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
971,amirmahdi93 <bio> Autonomous Navigation Engineer | Tweets in Persian. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
972,dongzhuoyao <bio> 0x81DcD2E21100f416084F33f82F1486DF420e9f23 <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
973,"DurikNoah <bio> Well, my original account got hacked and I can't recover it unfortunately. So, here's the 2nd iteration of the Artifical Arts account! <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
974,heghbalz <bio> 😎🚗📖🔬🥼 <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
975,"RahelJhirad <bio> Founder, Imaginator ai
knowledge discovery 2D navigation TS ML DL recsys econ math incentives mech design finance networks bridges boundaries <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
976,Lp69151045 <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
977,shanYanGuan <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
978,"thaoshibe <bio> I'm a Research Engineer at @VinAI_Research. Keep 🐝 🌿 in yourself!
/* 1st versions are never the best. Keep updating!*/🖼 <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
979,__s_r_t_m__ <bio> Memorandum. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
980,"UgandanDev <bio> Software Engineer, Data Scientist and ML Engineer. Research Enthusiast For NLP , Computer Vision and Compiler Design. PostGrad Student. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
981,"ViditGoel7 <bio> @PicsartAI prev @IBM | @IITKGP '21 | Computer Vision, Deep learning <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
982,"MasterScrat <bio> 🤖 ML Engineer @CedilleAI @coteri_es - NLP & DRL - Prev. @EPFL ('14), @CERN, @aicrowdHQ <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
983,"alanmelling <bio> junction of Computer Vision and Graphics, Principal R&D Engineer at Carvana <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
984,hiutungwong4 <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
985,krunalh321 <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
986,caileanbtc <bio> Cailean Finn_ New Media Artists + Creative Technologist IG: https://t.co/e31l8faVqq Web: https://t.co/yivZAOmIfp Alt: @tablets #Bitcoin $STX <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
987,bhagirathl <bio> AI Leader | Top 20 Voice in Quantum | Computer Scientist | Public Speaker | Blockchain Visionary | MBA | Husband of a Physicist: IIT Delhi | IIM Lucknow <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
988,"shubhamdokania <bio> MS by Research in CSE at @iiit_hyderabad | Ex-Research Engineer, @MercedesBenzInd <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
989,Norod78 <bio> Fooling around with Generative machine learning models. he/him <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
990,"NandoMetzger <bio> PhD Student @ ETH Zürich
| Remote Sensing | Population Mapping | Time Series <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
991,"apoorvkh <bio> predoctoral researcher @allen_ai, prev: cornell cs '20 <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
992,Tjoskz <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
993,OlgaSorkineH <bio> Professor of Computer Science at ETH Zurich. Computer Graphics researcher. My group is called IGL: Interactive Geometry Lab. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
994,"yomeraltintop <bio> KU | part-time student | full-time anxious | format atılmaz | Sancta Turkey, libera nos! | N’est-ce pas que nous n’avons pas été des lâches? <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
995,VikramVoleti <bio> PhD candidate @MILAMontreal @UMontreal Computer vision + Deep learning <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
996,"taesiri <bio> Ph.D. @ U of A, XAI <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
997,ammarulhassan2 <bio> Muslim alhamdullilah 🇵🇰.. Deep learning bounded 👉 GANs 👉 Image-to-Image translation. GGMU.. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
998,AnhQuanCAO <bio> PhD Student in Computer Vision @inria <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
999,Svk20012305 <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1000,"elliottszwu <bio> PhD student @Oxford_VGG working on 3D computer vision and inverse graphics, regular public office hours via https://t.co/pqMfpg1OlR <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1001,xinbinjian <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1002,MatthewKowal9 <bio> PhD @YorkUniversity // Technical Lead and Postgraduate Affiliate @VectorInst // Lead Scientist in Residence @_NextAI // Interpretable Computer Vision for Video <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1003,Jasperli0202 <bio> Graduate student @Upenn GRASP Lab <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1004,"Jerry_XU_Jiarui <bio> Second-year Ph.D in UC San Diego
Undergrad. from HKUST <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1005,"renato_umeton <bio> Work on AI, Data Science, ML, Optimization, and Computer Science in Healthcare, at @DanaFarber.
Trained @MIT @Microsoft @TU_Wien @UnicalPortale.
Views my own. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1006,HaimNiv <bio> PhD student @ Weizmann Institute. I like science and science-related products <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1007,"ArtDeza <bio> Robot Ophthalmologist 🤖 • PostDoctoral Research Associate @ MIT's Center for Brains, Minds and Machines (@MIT_CBMM) • Peruvian 🇵🇪 <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1008,NathanBWaters <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1009,hantx1 <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1010,CMHungSteven <bio> Research Engineer II @Microsoft Azure AI | Ex-@MediaTek AI | Ph.D. @GeorgiaTech | Computer Vision & Machine Learning | https://t.co/dKaEzVoTfZ <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1011,"Almorgand <bio> Computer Vision Research Scientist at @slamcoreltd, music lover (insta: no_funk_given), fond of scientific/musical/geeky/useless stuff
June 19th ✈️ @CVPR 2022 <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1012,"tomgoldsteincs <bio> Associate Professor at Maryland. Interested in security and privacy in machine learning, algorithmic bias, foundations of ML, optimization, applied math. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1013,pbaylies <bio> Learning deeply; quietly curating my gallery: https://t.co/sS0UjzOIgk <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1014,"WaltonStevenj <bio> Ph.D. Student @ University of Oregon
Studying Computer Vision | SHI Lab <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1015,siyao94 <bio> PhD student @ MMLab of NTU <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1016,wjscheirer <bio> Prof. at Notre Dame. Computer Vision + Machine Learning + Digital Humanities + Home Cooking <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1017,KoestlerLukas <bio> CV and ML Ph.D. at TUM. https://t.co/vPi2GbKRCC and https://t.co/eepK180BgJ <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1018,MohamedAfham14 <bio> Final Year Undergraduate @ENTC_Uom🇱🇰| Former Research Assistant at @mbzuai🇦🇪| Exploring the Horizons of Deep Learning / Computer Vision | Cricket Maniac 🏏 <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1019,"omid24490450 <bio> Engineer 🧠
machine vision 🤖 <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1020,"ajaydiv <bio> Sr. tech. director, vision and learning, center for vision technologies, SRI International
Decency, Research, music, wit above all.
opinions mine alone. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1021,"kotti_sasikanth <bio> Masters Student @iitjodhpur @CSEIITJ1 / Computer Vision, Trusted AI, Deep Learning. Research Engineer @openminedorg <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1022,OmriAvr <bio> Computer Science PhD student at @HebrewU. Interested in developing new tools for content synthesis and editing. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1023,karol_majek <bio> Teaching deep learning for computer vision at https://t.co/3X9J3EBh1D <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1024,"ThomasW423 <bio> Chief scientist @PhytoMech, ex @PortlandGeneral @Nike @Huawei @Intel @Microsoft, MS Applied Math @UW, BS Physics @LamarUniversity <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1025,"CSProfKGD <bio> #CS Assoc. Prof @YorkUniversity, #ComputerVision Scientist Samsung #AI Centre, @VectorInst Affiliate, TPAMI AE, #CVPR2022/#ECCV2022/#ICCV2023 Social Media Chair <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1026,itsIanMac <bio> Computer Vision @YorkUniversity in Michael S. Brown’s lab. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1027,"anirudhg9119 <bio> Student of Science, Advised by Prof. Yoshua Bengio.
Spent time at @Berkeley_EECS, @MPI_IS, @DeepMind. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1028,"FranklinLynam <bio> The woods are lovely, dark and deep <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1029,"lxiaol9 <bio> 3D vision, Robotics | intern @MSFTResearch | former Student researcher @GoogleBrain | Ex-intern @Mitsubishi_USA <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1030,GuangxingHan <bio> Postdoc at Columbia DVMM Lab <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1031,MatRazor <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1032,gowthami_s <bio> Grad student @UMDCS. IIT Madras Alum. Tweets about #MachineLearning and #phdlife. She/her <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1033,"Crp94 <bio> AI Researcher @ SEDDI, PhD Candidate. Music nerd.
Standing on the shoulders of giants. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1034,"wrong_whp <bio> PhD student, Computer Science @ UC San Diego. Interests: computational cognitive science, neuroscience, cognitively/neurally inspired ML. Here for preprints. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1035,"bhashithe <bio> Presidential Fellow, @TCVatGSU and @evidencebasedc1 Lecturer on leave.
All things related Neural Networks. #NLP #MisinformationInSocialMedia <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1036,"iScienceLuvr <bio> 18 yr old PhD candidate
#deeplearning #AI #pathology #cancer research
ML, AI, STEM educator
@kaggle 2x Master
Biomedical engineer at 14
TEDx talk➡https://t.co/DwMkssMzZ6 <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1037,"raywzy1 <bio> CS PhD student. Computer Vision, Computational Photography, Generative Model, Graphics. Research Intern@Facebook Reality Labs. <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR",1
1038,W33lliam96 <bio> <title> I will be near the coffee shop outside Hall C tomorrow if anyone wants to meet up after 9 am at CVPR,1
1039,ichiki_k <bio> プログラマ、(元)物理屋(ナノテク、流体) <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1040,"hafidhsoekma <bio> Artificial Intelligence Enthusiast
https://t.co/x0l7sFOZQE <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1041,allowfirm <bio> 深層学習に興味があります。 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1042,pwais <bio> con besitos de menta y cañela <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1043,"SingingData <bio> Data Geek, Outdoor Enthusiast. Reno and Seattle. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1044,sh4me7 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1045,mothmatic <bio> Fascinated by minds and machines. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1046,chrlaf <bio> 3D+ML Research Engineer at AMD <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1047,austinvhuang <bio> @hasktorch co-author. (functional | differentiable | prob) programming. music. machine learning as a tool for thought with @openmemex. @MIT @Harvard @UCBerkeley <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1048,alanyannnick <bio> Researcher AILab @EA #SceneUnderstanding #3DModeling #ARVR Prev:MediaLab & Lightspeed @TencentGames VisionLab @UCDavis @Xiaomi @SenseTime_AI @MeituMTLab <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1049,__girishHegde__ <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1050,"tipatat <bio> VR AR AI Metaverse investor, GP @thevrfund <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1051,"analytics_hiro <bio> Data Scientist/Engineer/Analysts. Freelance. JP/ENG. ML, Statistics, Econometrics, NLP, Data Engineering(ETL/ML Ops). <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1052,ctengctsh <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1053,codestella <bio> AI Roboticist Girl 🙌💕 3d Vision / 3d reconsructuon / NeRF / SLAM / Visual localization / Vision AI Phd candidate in Seoul National University @SNUnow👩💻 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1054,ScriptShade <bio> 基本无害。 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1055,philip368320 <bio> Like @scala @idrislang functional programming https://t.co/yXgzpRUWzP <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1056,LowerGecko <bio> Pfp: @_lurkas_ <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1057,"aComputerWizard <bio> father of twins, maker, polyglot developer, computer graphics enthusiast and psychologist for robots. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1058,"Almorgand <bio> Computer Vision Research Scientist at @slamcoreltd, music lover (insta: no_funk_given), fond of scientific/musical/geeky/useless stuff
June 19th ✈️ @CVPR 2022 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1059,RuochengWang <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1060,MrBananaHuman <bio> 바나나인간 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1061,"ParisMLgroup <bio> We're the Paris ML Meetup. One of world's largest (7900+) https://t.co/IkiCgAKvnQ @BardolFranck, @JackieForien, @CFalguiere & @IgorCarron <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1062,charlsbel <bio> En la vida real no soy nadie pero en mi imaginación me monto mis películas. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1063,miguelbandera <bio> #ML #3DArt #GameDev #VR #AR #photogrammetry <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1064,D_GRATE49 <bio> ADDICTED <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1065,JingwenWang95 <bio> PhD student @uclcs and @ai_ucl working on 3D Vision and SLAM <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1066,Pouya_Aminaie <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1067,shivamshrirao <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1068,"JamilIstiaq <bio> Work hard, Punctual, ASP .Net, Laravel, Python, TensorFlow, Keras, AI, ML, CV, C#, php, JavaScript, WordPress, Code, Development, Lead, MySQL, SQL <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1069,"begalovr <bio> Architect and interior design, 3d archviz and scanning
py, ai ml, vue <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1070,parthiv99295410 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1071,aocalderon1978 <bio> Geohacker dealing with an obsessive/compulsive geomatic disorder... <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1072,"tuyuri_kame <bio> 瓶覗色の自転車乗りの憑依先アカウント
画像処理の情報を主食にしている
VSLAM(仕事)/DL・NR-ICP(研究)/3DCG(趣味)/GL <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1073,ptphucbk <bio> Embedded Software Engineer develops @myToucango at InnovPlus <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1074,MoOk <bio> Studio Head @ Rovio Montreal & SVP AB Brand Strategy <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1075,"kaien_lin <bio> PhD student in CV/CG @UCSanDiego
Neural rendering enthusiast <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1076,"zengtaiping <bio> Computational Neuroscience, Robotics, Spatial Navigation, Computational Neuroimaging, University of Tokyo <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1077,lehduonggg <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1078,haonan_chang <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1079,versatilegeo <bio> Digital toys for futuristic kids. 未来的な子供達のデジタルおもちゃ <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1080,hzy5000 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1081,"thaoshibe <bio> I'm a Research Engineer at @VinAI_Research. Keep 🐝 🌿 in yourself!
/* 1st versions are never the best. Keep updating!*/🖼 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1082,jul_io7 <bio> Android Developer <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1083,"LvZhaoyang <bio> Research Scientist @RealityLabs Research.
Previously Ph.D. at @GeorgiaTech
All the bullshit is my own. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1084,"TheLewdMonkey <bio> Creating lewd games to make money, be happy and buy bananas. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1085,DeMerindol <bio> South African Architect & Urbanist in the world <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1086,shawon_ashraf <bio> Stop calling fitting a function to some data AI. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1087,"bhagatsurya2 <bio> Building @inAtomEdu
trying to get closer to data 🔭
• 19✨
• data science 🐍
• Machine Learning 🤖
• Deep Learning 🧠 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1088,Khoa_NguyenTuan <bio> Enjoy learning new things <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1089,"qwizz195 <bio> — 𝘩𝘦𝘴𝘪𝘵𝘢𝘯𝘵𝘭𝘺 𝘤𝘺𝘣𝘦𝘳-𝘯𝘪𝘩𝘪𝘭𝘪𝘴𝘵. —
𝙣𝙤 𝙢𝙖𝙩𝙩𝙚𝙧 𝙬𝙝𝙚𝙧𝙚 𝙮𝙤𝙪 𝙜𝙤, 𝙚𝙫𝙚𝙧𝙮𝙤𝙣𝙚'𝙨 𝙘𝙤𝙣𝙣𝙚𝙘𝙩𝙚𝙙. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1090,"AlphaRealcat <bio> ⭐️Focusing on SLAM, SfM, and Visual Localization. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1091,chisko <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1092,haru91081468 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1093,"saby_tweets <bio> PhD Student @Mila_Quebec @IID_ULaval @universitelaval | ex-@nvidia, masters @iiscbangalore | robust deep learning, autonomous driving, OOD, XAI <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1094,OussamaAbouyac1 <bio> ENIGMA <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1095,lkjnk7 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1096,"Kingand33493259 <bio> artist, engineer and polymath 🤓
#computerart #DataScience #ComputerVision #MachineLearning #Science #artist #ArtificialIntelligence #episTHEMology <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1097,adeelabbasi60 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1098,Mike63194248 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1099,Kashu82171388 <bio> 深層学習、ロボット、その他 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1100,RondellCPaul <bio> Award-Winning Caribbean Creator 🇹🇹 | Digital Designer | Co-Founder of @theroyaltyclub <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1101,"shelling343 <bio> Research Scientist at Samsung AI Center Cambridge. PhD from École des ponts ParisTech.
Working from graphical models to deep learning to embodied cognition. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1102,vAIsualAI <bio> An artificial intelligence company creating synthetic media for the B2B IP licensing market. #machinelearning #AI #syntheticmedia #artificialintelligence <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1103,rishabh_dabral <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1104,"depricated_ <bio> I know it's hard, but don’t be a dick.
Dabbles in photography, software engineering, computer vision and AI. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1105,"PulkitRega <bio> CVIT, IIIT Hyderabad | Computer Graphics & Vision <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1106,shortmuki <bio> At the beach or on a mountain. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1107,itron54 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1108,masafumi <bio> I'm a graphics research manager and director in Japan. https://t.co/l3lX1VAUwEとか新masafumi's Diaryとかの管理人してます。 ※私の発言はあくまでも個人的なものなのでどっかの組織とか団体の見解ではありません。 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1109,KosseryMeenu <bio> BUSINESSMAN <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1110,hacdevilliers <bio> Researcher at Wageningen UR | specializing in Machine Learning and Computer Vision | 🏳️🌈 | he/him <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1111,"Separius <bio> PhD candidate at the University of Bern, Computer Vision Group <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1112,"decdeco1 <bio> コンピュータサイエンス界隈の人/
最近は機械学習とロボティクス/ガンプラ復帰勢 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1113,gatheluck <bio> ML/MLOps Engineer/cvpaper.challenge HQ/ExaWizards/Robust ML/Martial Arts/GoPro/RedBull <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1114,CXR2018 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1115,subhobrata1 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1116,"rodrigob <bio> Dreamer, thinker, doer <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1117,"meng_shengyu <bio> AI&Bio Architect, Artist, Researcher | PhD candidate @uniinnsbruck | MArch @BartlettUCL | https://t.co/TI0ZIWH3C0 <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1118,"HakeemDemi <bio> Learn to do a lot with very little, learn to make the complex simple. || Profane & unredeemed. || 27+ <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1119,bucketofkets <bio> a hexagon ~ opinions are my own and not those of my employer ~ software polygon at google research <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1120,dami_belle <bio> Data | SQL| Tableau| Python <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1121,origin_2016 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1122,"ASevastopolsky <bio> PhD student @ TUM visual computing & articifial intelligence lab, working on neural rendering,
ex-{Samsung AI, Skoltech} <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1123,"NandoDF <bio> I research intelligence to understand what we are, and to harness it wisely. Research Director @DeepMind. CIFAR. Previously Prof @UBC & @UniofOxford. He/him. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1124,"tadm <bio> realtime software engineer, space buff, shutterbug, past JET ESL ALT near Hiroshima, thinks of Tucson as home. Ham callsign W7TAD. https://t.co/oGb0QFR8Zg <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1125,hhattori8 <bio> <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1126,VikramVoleti <bio> PhD candidate @MILAMontreal @UMontreal Computer vision + Deep learning <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1127,sotongshi <bio> co-founder #KumaMCN / @KnowComInc R&D戦略チーム / #Azure #HoloLens #MRPP / #AWS #ML / #CV #SLAM #Python / #WHILL #自動運転 / #メタバース #XR / #Databricks / お仕事のご依頼はDMで✉️ <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1128,"ForABurton <bio> Computational vision scientist (CogNeuro PhD), fanatically into computing & (modding) games, prototyping the improbable, making intuitions computable, language <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera",1
1129,Mi_Niemeyer <bio> Scientist in Computer Vision / Machine Learning. Currently PhD Student @ Max Planck Institute for Intelligent Systems <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1130,JustusThies <bio> I am a Max Planck Research Group Leader focusing on the AI-based motion capturing and synthesis of digital humans. <title> EventNeRF: Neural Radiance Fields from a Single Colour Event Camera,1
1131,"mdorkenw <bio> PhD Student @UvA_Amsterdam @QUvALab <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1132,"Michael_J_Black <bio> Director, Max Planck Institute for Intelligent Systems (@MPI_IS). German & Swedish Academy. of Sci., Computer vision, graphics, learning, mocap, virtual humans. <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1133,"Svk20012305 <bio> <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1134,"danielism18 <bio> <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1135,"chris_dee <bio> machine learning engineer @ 🍎 focused on critically analyzing data, social & technical failures of ML models | he/him | views my own <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1136,"deepawais <bio> Curious.
Asst. Researcher @ AI Theory Group, Noah's Ark Lab, @Huawei, Hong Kong 🇭🇰
Ph.D. Student @ MLVC Lab, KHU, South Korea🇰🇷 <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1137,"cchoi314 <bio> Sophomore at CUHK, mentee @ Multimedia Laboratory (MMLab) <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1138,"Uhhhhiuh <bio> subterranean homesick alien <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1139,"tivaro <bio> Neural data compression @ Qualcomm AI Research <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1140,"NoamRot <bio> <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1141,"PulkitRega <bio> CVIT, IIIT Hyderabad | Computer Graphics & Vision <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1142,"apoorvkh <bio> predoctoral researcher @allen_ai, prev: cornell cs '20 <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1143,"CSProfKGD <bio> #CS Assoc. Prof @YorkUniversity, #ComputerVision Scientist Samsung #AI Centre, @VectorInst Affiliate, TPAMI AE, #CVPR2022/#ECCV2022/#ICCV2023 Social Media Chair <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1144,"mattpoggi <bio> Assistant professor - University of Bologna <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1145,"pbaylies <bio> Learning deeply; quietly curating my gallery: https://t.co/sS0UjzOIgk <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1146,"jbhuang0604 <bio> Research Scientist @Meta Reality Labs and incoming faculty @umdcs starting Fall 2022. Working on computer vision and machine learning. I like pixels. <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1147,"GiseopK <bio> Ph.D., KAIST. Studying robot localization and mapping. Mostly retweeting. Current position: Research Engineer at NAVER LABS <title> @CSProfKGD @elliottszwu @CVPR thanks, would also be great to meet, sent a dm, also I am at the coffee shop outside… https://t.co/j3i3h6Bbfs",1
1148,"AIjedi <bio> Senior ML engineer @DendraSystems, scaling ecosystem restoration and monitoring <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall",1
1149,"giffmana <bio> Researcher (@GoogleAI Brain Team in Zürich, ex-RWTH Aachen), Gamer, Hacker, Belgian <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall",1
1150,baoxiang_pan <bio> Climate modeler <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1151,A_for_0 <bio> A fkin beast. Living with no life. <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1152,pbaylies <bio> Learning deeply; quietly curating my gallery: https://t.co/sS0UjzOIgk <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1153,khermann_ <bio> Research Scientist @Google Brain. Past: PhD from @Stanford. <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1154,ronvain <bio> Computer Vision Researcher. <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1155,"ducha_aiki <bio> Marrying classical CV and Deep Learning. I do things, which work, rather than being novel, but not working. <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall",1
1156,"HongweiYi2 <bio> PhD student at @MPI_IS, working on Human-Scene Interaction. <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall",1
1157,"CSProfKGD <bio> #CS Assoc. Prof @YorkUniversity, #ComputerVision Scientist Samsung #AI Centre, @VectorInst Affiliate, TPAMI AE, #CVPR2022/#ECCV2022/#ICCV2023 Social Media Chair <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall",1
1158,jramapuram <bio> Machine learning researcher at Apple (opinions are my own) <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1159,Svk20012305 <bio> <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1160,yufei_ye <bio> <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1161,BenMildenhall <bio> Research scientist at Google London. <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1162,Lp69151045 <bio> <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1163,"lxiaol9 <bio> 3D vision, Robotics | intern @MSFTResearch | former Student researcher @GoogleBrain | Ex-intern @Mitsubishi_USA <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall",1
1164,"sitzikbs <bio> Researcher / Educator / Father. Creator of practical 3D computer vision algorithms that work in real life. Research fellow @anucecs, @TechnionLive. <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall",1
1165,"AntonObukhov1 <bio> CV+ML PhD candidate at ETH Zurich; previously Ubiquiti Networks, NVIDIA. <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall",1
1166,"Ar_Douillard <bio> PhD @ScienceSorbonne (@mlia_isir) in Continual Learning, Research Scientist @heuritechlab, soon in @DeepMind. My free course (pdf+anki+colab): https://t.co/SUF3gAbjwO <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall",1
1167,thiemoall <bio> Computer Vision & ML Researcher @GoogleAI <title> @elliottszwu @CVPR I will be around in the poster session today in the exhibits hall,1
1168,pwais <bio> con besitos de menta y cañela <title> https://t.co/qTaxrKwP7R,1
1169,"hochkant <bio> Data Science • Design • Research.
Building purposeful products → communicate insights, improve businesses and solve problems <title> https://t.co/qTaxrKwP7R",1
1170,desreumauxq <bio> <title> https://t.co/qTaxrKwP7R,1
1171,andrewb10687674 <bio> <title> https://t.co/qTaxrKwP7R,1
1172,EzekielWinger <bio> Stupidity is the currency of youth. <title> https://t.co/qTaxrKwP7R,1
1173,OG_Aryan_bhatia <bio> I am a man of fortune and I must seek my fortune. <title> https://t.co/qTaxrKwP7R,1
1174,"westis96 <bio> I make things. ML, Robotics, Data Visualisation. Student at @AaltoUniversity. <title> https://t.co/qTaxrKwP7R",1
1175,"apolmig <bio> Prompting Machines || Artificial Intelligence, Education, Energy | Founder https://t.co/19AvriElPW et al. | alum @fastdotai @MicrosoftAfrica @Repsol @HECParis <title> https://t.co/qTaxrKwP7R",1
1176,GaggiXZ <bio> <title> https://t.co/qTaxrKwP7R,1
1177,WiMiW5 <bio> I prefer to think for my self and post random stuff. Flow and synchronicity is amazing. <title> https://t.co/qTaxrKwP7R,1
1178,ichiki_k <bio> プログラマ、(元)物理屋(ナノテク、流体) <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1179,kien_do_92 <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1180,"cosmo_bruce <bio> Professor UCT, AIMS & SAAO. Former head data science SKA Africa. Bayesian / machine learning / cosmology. Author https://t.co/Vp9k1nC9uz. Edit. Board: https://t.co/4RU3AiN8SN <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1181,Ran53694622 <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1182,shivamshrirao <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1183,hustwj <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1184,Svk20012305 <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1185,aocalderon1978 <bio> Geohacker dealing with an obsessive/compulsive geomatic disorder... <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1186,KJLiu_ <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1187,"poolio <bio> research scientist at google brain.
phd in neural nonsense from stanford. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1188,antferdom <bio> I am trying to learn complex physical behavior patterns using computers to understand intelligence as a broad concept. AI research at @unisevilla. #EleutherAI. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1189,"a5chin <bio> '99 生まれ
23卒のDeNAエンジニア
発言は個人の見解であって所属組織を代表するものではありません
#23卒 / #新卒 / #DeNA / #エンジニア <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1190,PacManTheGamer2 <bio> My name is Michael and I am a college student at Queens college New York. I am fascinated by A.I and plan to get a job in the field someday. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1191,MrBananaHuman <bio> 바나나인간 <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1192,"qwizz195 <bio> — 𝘩𝘦𝘴𝘪𝘵𝘢𝘯𝘵𝘭𝘺 𝘤𝘺𝘣𝘦𝘳-𝘯𝘪𝘩𝘪𝘭𝘪𝘴𝘵. —
𝙣𝙤 𝙢𝙖𝙩𝙩𝙚𝙧 𝙬𝙝𝙚𝙧𝙚 𝙮𝙤𝙪 𝙜𝙤, 𝙚𝙫𝙚𝙧𝙮𝙤𝙣𝙚'𝙨 𝙘𝙤𝙣𝙣𝙚𝙘𝙩𝙚𝙙. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1193,"DKaravolos <bio> Computer Vision Engineer @ Beyond Sports. Has a PhD on creative AI for games. Tweeting about PCG, AI in games, ML, computational creativity, etc. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1194,seykingfenng <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1195,OussamaAbouyac1 <bio> ENIGMA <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1196,"juanpablomanson <bio> Technologist. CTO at @Wiener_lab, @interadyn, @openhacks, @ioThinkTech. #IoT #AI #Industry40 #OpenHardware <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1197,CXR2018 <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1198,subhobrata1 <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1199,"meng_shengyu <bio> AI&Bio Architect, Artist, Researcher | PhD candidate @uniinnsbruck | MArch @BartlettUCL | https://t.co/TI0ZIWH3C0 <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1200,"namdchian <bio> I am phd student in kntu, my interest is deep learning for self driving car. and uav <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1201,learnerofmath <bio> Learning Math. A student for now. Preparing for graduate school. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1202,wshuyi <bio> Associate Professor at Tianjin Normal University <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1203,ivanprado <bio> Deep Learning & Big Data. Head of AI at @freepik <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1204,"abnxzx <bio> Software Engineer in Denmark 🇩🇰
—
Interested in #IoT👨🏿💻 and #Energy⚡
—
#Tamil🪷 born in Sri Lanka <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1205,"konstantinkobs <bio> ML PhD student in Würzburg, Germany <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1206,guinet_n <bio> Consultant Full Stack .Net / JS <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1207,cairohenrique <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1208,"sumpunta <bio> MD, Health economics, A.I, Machine Learning, หลักสูตรหลักประจำ รร.เสธ.ทบ., LFC fan, Cat Slave <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1209,"salmanrule <bio> Ph.D candidate, Hyderabad Central University <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1210,dnlbreen <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1211,ToolTrackers <bio> Writer of the Tool Trackers light urban fantasy/paranormal mystery series. 🏳️⚧️❤️🇨🇦 she/her <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1212,michael_at_work <bio> Working on it. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1213,sreagm <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1214,ChMarP <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1215,"shaal <bio> Senior Front-end Developer | Drupal core maintainer | Co-created Drupal Rector | Created ddev-gitpod, a full Drupal dev environment in a browser <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1216,"Kzk72 <bio> 首都大学東京大学院で対話システムの研究をしてました。
今はAMBL株式会社で人物追跡のサービス開発してます <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1217,momiji_fullmoon <bio> 東工大で点群深層学習の研究を行い博士号を取得しました。3次元データはそれそのものが価値ではなく、3次元データを使用して社会課題を解決してはじめて価値があるよ😭点群の話は置いておいて、望月紅葉さんのAIをTTAや対話技術などを使用して作りたいです。 <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1218,"labenz <bio> Building AI video creation at @Waymark, #AITwitter lurker <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1219,DelioSiret <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1220,"TuPutoAmigo <bio> Quidquid latine dictum sit, altum videtur.
Post data: o, et de re publica et religione picturas duco. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1221,"jsm_creative <bio> 22 | AI, Design & Art <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1222,"keunwoochoi <bio> AI Scientist at Gaudio Lab, after ByteDance, @spotify, and @c4dm @qmul. music, machine learning. My tweets do not represent my employer. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1223,redaready <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1224,victormustar <bio> Product Design @huggingface (🤗) <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1225,"wsiya <bio> Ph.D, 修士,博士(学振DC1)は理論物理専攻. I種試験を受け国家公務員へ. その後, 転職し民間企業へ. コンピュータを道具に面白いことができないかを考える仕事をしています.でもやっぱり物理好き自然好きです. GPU/CG/CV/ML <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1226,"JKOO85823449 <bio> 📚 Notes on speech, language and vision research
💡 AI-powered real-world applications/projects <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1227,"andrey_kurenkov <bio> CS PhD focused on learning robot manipulation at @StanfordSVL @StanfordAILab 🤖 lead editor @skynet_today, @gradientpub 📝 fan of fun, Russian, he/him <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1228,"j0hnparkhill <bio> ex faculty, numerical computation, ML, director of machine learning @ Terray Therapeutics <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1229,"lardratboy <bio> Past lives include, LucasArts, Humongous Entertainment, SillyBytes, Beep Industries, iWin. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1230,bittnt <bio> Researcher at Cruise. Dad. Interests in: computer vision and machine learning. All opinions are my own. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1231,"sikidaten <bio> Interested in ML, CV, NLP. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1232,"yuricampbll <bio> Cybernetics, GraphML & NLP in Knowledge Transfer @Fraunhofer, Lecturer in AI @FOMHochschule, former: Quantum Statistics @mpiMathSci <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1233,nicolasmetallo <bio> Conurbano boy turned technologist / Machine Learning at Amazon Web Services / Opinions are my own / 🇦🇷 in 🇬🇧 <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1234,"adakoda <bio> プログラミングとアートが大好きです
note: https://t.co/M6h7Pixaiq
medium: https://t.co/oO7kxsnJSg
art: https://t.co/VtoNDhjjHE <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1235,a2kiti <bio> 自動作曲が夢 <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1236,philip368320 <bio> Like @scala @idrislang functional programming https://t.co/yXgzpRUWzP <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1237,kushin_m <bio> PhD student at @UWPsych and @WIDiscovery. he/him/his <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1238,m_k_696 <bio> 自然言語処理を主に勉強しており、Qiitaに実装重視で初学者にもわかりやすくをモットーに記事を投稿しています。Twitterでも読んだ論文や実装における細かなTipsとかをつぶやいたりしています。 <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1239,xinbinjian <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1240,OmriAvr <bio> Computer Science PhD student at @HebrewU. Interested in developing new tools for content synthesis and editing. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1241,"Xpshnik <bio> Study philology at the Kyiv National Linguistics University
Major in Finnish language
Learn Japanese as a hobby <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1242,VonRosenchild <bio> @HubBucket Inc Founder/CEO | @HubBucket Designs Develops and Deploys Technology for Healthcare Life Sciences Pharmaceuticals and Biopharmaceuticals <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1243,RalphxSxT <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1244,miguelamda <bio> Science & SciFi lover. PhD in #ComputerScience and #AI. Assistant Professor @unisevilla doing #GPU #HPC #DeepLearning #BioComputing. Ambassador of @nvidiaai DLI <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1245,lkjnk7 <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1246,usmahm <bio> Software Developer @joinentre || Acquiring Knowledge on Machine Learning and Deep Learning || #doItForTheFuture 👾 <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1247,"bot_biotech <bio> genomics, AI/ML, biotech <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1248,martin_olmos_ <bio> TICs y Datos | Padre de Cata | Hincha de River <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1249,ML_Brazil <bio> Machine Learning Brazil <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1250,"eneko98 <bio> Estudiante de ingeniería informática en la Universidad de Deusto.
Paz, Pan y Tierra <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1251,"lukestanley <bio> I like readable code, Sci-fi. Meditator. Drinker of tea. He/him <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1252,liu_shikun <bio> Ph.D. student at the Dyson Robotics Lab at Imperial College. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1253,"Kotetsu_THECAT <bio> 猫と戯れるロボットを作ることが目標です。
Algorithmic Design/BIM→MR/VR→ML,
Working as an AI Researcher in construction field / Ph.D in Engineering (Architecture)、発言は個人のあれです。 <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1254,EzekielWinger <bio> Stupidity is the currency of youth. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1255,"ManuKman <bio> IT Consulant and Indie Dev specializing on C, C#, Unity3D, UE4, ...
https://t.co/KPqUuLoFqx <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1256,"renato_umeton <bio> Work on AI, Data Science, ML, Optimization, and Computer Science in Healthcare, at @DanaFarber.
Trained @MIT @Microsoft @TU_Wien @UnicalPortale.
Views my own. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1257,CovGena <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1258,andrewb10687674 <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1259,timoveiled <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1260,"UgandanDev <bio> Software Engineer, Data Scientist and ML Engineer. Research Enthusiast For NLP , Computer Vision and Compiler Design. PostGrad Student. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1261,"pythiccoder <bio> Currently in stealth Ex- PyTorch Lightning, Ex-MSFT and BIU NLP. Enthusiast of all things AI/ML, History & Israeli Tech. Opinions are my own. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1262,davidjuradoB <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1263,taran21 <bio> Artificial Intelligence | IIT | Engineer | Want to see a better India <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1264,maskrcnn <bio> <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1265,"taesiri <bio> Ph.D. @ U of A, XAI <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1266,"CoderHermit <bio> Favorite movie: 'The Man from Earth'.
A book I wish to be written:'How to git gud at Starcraft and life in general' by Oriol V. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1267,"FranklinLynam <bio> The woods are lovely, dark and deep <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1268,"westis96 <bio> I make things. ML, Robotics, Data Visualisation. Student at @AaltoUniversity. <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1269,"apolmig <bio> Prompting Machines || Artificial Intelligence, Education, Energy | Founder https://t.co/19AvriElPW et al. | alum @fastdotai @MicrosoftAfrica @Repsol @HECParis <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR",1
1270,asus4 <bio> Artist / Freelance Creative Technologist / ㍿Whatever㌠ <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
1271,radamar <bio> Engineering @huggingface 🤗 Data visualization and Machine Learning enthusiast <title> a @Gradio Demo for CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers on… https://t.co/qQF0GG5cxR,1
|