File size: 28,484 Bytes
e2797b8 a322c38 e8e5fab 4a73526 67203e1 ee19c16 85b5ec9 f9a40c0 b209537 9a8e6ac 774c188 41cc02a 1e006d1 7b3107a 430ca39 ba8683f e1e5766 6e46967 90c9097 2e5303c 7d277f5 aa6e1be 2b62b1d a1612ce 51a39c9 d4655ed 0cab3ce 6904018 da03541 766ea83 9669e51 d130e25 028cf54 e8d6b2c 1ae943e 10467e0 b55a218 773c691 d10dcf5 5841f04 9efbcfe 0d1d5f2 |
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 |
date,arxiv_id,github
2023-05-05,2305.03048,https://github.com/ZrrSkywalker/Personalize-SAM
2023-05-05,2305.03043,
2023-05-05,2305.02665,
2023-05-05,2305.02549,
2023-05-05,2305.02499,
2023-05-05,2305.03049,
2023-05-05,2305.03040,
2023-05-05,2305.03027,
2023-05-05,2305.02968,https://github.com/facebookresearch/mtm
2023-05-05,2305.02678,
2023-05-05,2305.03052,
2023-05-05,2305.02790,
2023-05-05,2305.02412,
2023-05-05,2305.02783,
2023-05-05,2305.02440,
2023-05-05,2305.03047,
2023-05-05,2305.02483,
2023-05-05,2305.02463,https://github.com/openai/shap-e
2023-05-08,2305.03111,
2023-05-08,2305.03726,
2023-05-08,2305.03695,
2023-05-08,2305.03713,
2023-05-08,2305.03668,
2023-05-08,2305.03286,
2023-05-08,2305.03689,
2023-05-08,2305.03210,
2023-05-08,2305.03719,
2023-05-08,2305.03514,
2023-05-08,2305.03509,
2023-05-09,2305.04091,https://github.com/AGI-Edgerunners/Plan-and-Solve-Prompting
2023-05-09,2305.04789,
2023-05-09,2305.04268,
2023-05-09,2305.04241,
2023-05-09,2305.04790,https://github.com/open-mmlab/Multimodal-GPT
2023-05-09,2305.04388,
2023-05-09,2305.03981,
2023-05-09,2305.03937,
2023-05-09,2305.04160,
2023-05-09,2305.04745,
2023-05-09,2305.04461,
2023-05-09,2305.04391,
2023-05-10,2305.05662,https://github.com/OpenGVLab/InternChat
2023-05-10,2305.05591,
2023-05-10,2304.09355,
2023-05-10,2305.05432,
2023-05-10,2305.04966,
2023-05-10,2305.05065,
2023-05-10,2305.05658,
2023-05-10,2305.05383,
2023-05-10,2305.05364,
2023-05-10,2305.05644,
2023-05-10,2305.05176,
2023-05-10,2305.05189,
2023-05-11,2305.06161,
2023-05-11,2305.06355,https://github.com/OpenGVLab/Ask-Anything
2023-05-11,2305.06356,
2023-05-11,2305.06351,
2023-05-11,2305.05706,
2023-05-11,2305.06131,
2023-05-11,2305.06324,
2023-05-11,2305.06218,
2023-05-11,2305.05973,
2023-05-11,2305.05862,
2023-05-11,2305.05845,
2023-05-11,2305.06077,
2023-05-12,2305.06908,
2023-05-12,2305.07017,https://github.com/UCSC-VLAA/CLIPA
2023-05-12,2305.07011,
2023-05-12,2305.07015,
2023-05-12,2305.06456,
2023-05-12,2305.07027,https://github.com/microsoft/Cream/tree/main/EfficientViT
2023-05-12,2305.07021,
2023-05-12,2305.07004,
2023-05-12,2305.06555,https://github.com/AlibabaResearch/DAMO-ConvAI/tree/main/diana
2023-05-12,2305.06500,https://github.com/salesforce/LAVIS/tree/main/projects
2023-05-12,2305.06474,
2023-05-12,2305.06404,
2023-05-12,2305.06575,
2023-05-12,2305.06424,https://github.com/hongwang600/FLAIR
2023-05-12,2305.06594,
2023-05-15,2305.07185,
2023-05-15,2305.07440,
2023-05-15,2305.07153,
2023-05-15,2305.07558,
2023-05-15,2305.07615,https://github.com/griff4692/calibrating-summaries
2023-05-15,2305.07514,
2023-05-15,2305.07447,https://github.com/bytedance/uss
2023-05-15,2305.07214,https://github.com/facebookresearch/MMG_Ego4D
2023-05-15,2305.07378,
2023-05-15,2305.07490,
2023-05-15,2305.07243,https://github.com/neonbjb/tortoise-tts
2023-05-16,2305.07759,
2023-05-16,2305.08596,
2023-05-16,2305.08810,
2023-05-16,2305.07961,
2023-05-16,2305.07922,
2023-05-16,2305.08675,
2023-05-16,2305.08809,
2023-05-16,2305.08677,
2023-05-16,2305.08298,
2023-05-16,2305.08275,https://github.com/salesforce/ULIP
2023-05-16,2305.07804,
2023-05-16,2305.07677,
2023-05-16,2305.08844,
2023-05-16,2305.07969,
2023-05-16,2305.08848,
2023-05-16,2305.08850,
2023-05-16,2305.08379,
2023-05-17,2305.09641,
2023-05-17,2305.09617,
2023-05-17,2305.09137,https://github.com/thu-coai/PICL
2023-05-17,2305.09636,
2023-05-17,2305.08891,
2023-05-17,2305.09253,https://github.com/drimpossible/ACM
2023-05-17,2305.09664,
2023-05-17,2305.09148,https://github.com/ChillingDream/DAP
2023-05-17,2305.09515,
2023-05-17,2305.09662,
2023-05-18,2305.09857,
2023-05-18,2305.10425,
2023-05-18,2305.09863,
2023-05-18,2305.10403,
2023-05-18,2305.09975,https://github.com/microsoft/SmartWordSuggestions
2023-05-18,2305.09761,https://github.com/javieryu/nerf_bridge
2023-05-18,2305.10320,
2023-05-18,2305.10018,
2023-05-18,2305.10429,
2023-05-18,2305.10266,
2023-05-18,2305.10142,
2023-05-18,2305.10005,
2023-05-18,2305.09764,
2023-05-18,2305.09758,
2023-05-18,2305.10400,
2023-05-18,2305.10431,https://github.com/mit-han-lab/fastcomposer
2023-05-19,2305.10973,
2023-05-19,2305.10764,
2023-05-19,2305.10763,
2023-05-19,2305.11171,
2023-05-19,2305.10434,
2023-05-19,2305.10601,https://github.com/ysymyth/tree-of-thought-llm
2023-05-19,2305.10855,
2023-05-19,2305.11173,
2023-05-19,2305.11000,
2023-05-19,2305.11129,
2023-05-19,2305.10912,
2023-05-19,2305.11175,
2023-05-19,2305.10688,
2023-05-19,2305.11147,
2023-05-19,2305.10874,
2023-05-19,2305.10853,
2023-05-19,2305.10841,
2023-05-19,2305.10722,
2023-05-19,2305.10474,
2023-05-22,2305.11206,
2023-05-22,2305.11870,
2023-05-22,2305.11854,
2023-05-22,2305.11588,
2023-05-22,2305.11694,
2023-05-22,2305.11841,
2023-05-22,2305.11834,
2023-05-22,2305.11863,
2023-05-22,2305.11840,
2023-05-22,2305.11778,
2023-05-22,2305.11759,
2023-05-22,2305.11738,
2023-05-22,2305.11598,
2023-05-22,2305.11541,
2023-05-22,2305.11364,
2023-05-22,2305.11308,
2023-05-22,2305.11243,
2023-05-22,2305.11837,
2023-05-22,2305.11846,
2023-05-22,2305.11675,
2023-05-22,2305.11337,
2023-05-23,2305.13077,https://github.com/YBYBZhang/ControlVideo
2023-05-23,2305.13301,
2023-05-23,2305.13048,
2023-05-23,2305.13050,
2023-05-23,2305.13009,
2023-05-23,2305.12487,
2023-05-23,2305.12050,
2023-05-23,2305.12001,
2023-05-23,2305.11938,
2023-05-23,2305.13304,https://github.com/aiwaves-cn/RecurrentGPT
2023-05-24,2305.14314,
2023-05-24,2305.14201,
2023-05-24,2305.14233,https://github.com/thunlp/UltraChat
2023-05-24,2305.13840,
2023-05-24,2305.13579,
2023-05-24,2305.13786,https://github.com/deepmind/perception_test
2023-05-24,2305.13735,
2023-05-24,2305.13534,
2023-05-25,2305.15038,
2023-05-25,2305.14878,
2023-05-25,2305.14564,
2023-05-25,2305.14540,
2023-05-26,2305.16213,
2023-05-26,2305.16291,
2023-05-26,2305.15798,
2023-05-26,2305.15779,
2023-05-26,2305.15719,
2023-05-26,2305.15586,
2023-05-26,2305.15581,
2023-05-26,2305.15717,
2023-05-26,2305.15486,
2023-05-29,2305.16765,
2023-05-29,2305.16355,
2023-05-29,2305.16338,
2023-05-29,2305.17098,
2023-05-29,2305.16334,https://github.com/oladata-team/OlaGPT
2023-05-29,2305.16311,
2023-05-29,2305.16843,
2023-05-29,2305.16704,
2023-05-29,2305.16380,
2023-05-29,2305.16999,
2023-05-29,2305.16960,
2023-05-29,2305.16958,https://github.com/bloomberg/mixce-acl2023
2023-05-29,2305.16806,
2023-05-29,2305.16635,
2023-05-29,2305.16367,
2023-05-29,2305.16349,
2023-05-29,2305.17066,
2023-05-29,2305.16411,
2023-05-29,2305.16381,
2023-05-29,2305.17126,
2023-05-29,2305.16867,
2023-05-30,2305.18295,
2023-05-30,2305.17216,
2023-05-30,2305.18274,
2023-05-30,2305.17144,https://github.com/OpenGVLab/GITM
2023-05-30,2305.17306,
2023-05-30,2305.17333,
2023-05-30,2305.18264,https://github.com/G-U-N/Gen-L-Video
2023-05-30,2305.18247,
2023-05-30,2305.18231,
2023-05-30,2305.18292,
2023-05-30,2305.18286,
2023-05-30,2305.18259,
2023-05-30,2305.18098,
2023-05-30,2305.17493,
2023-05-30,2305.17390,
2023-05-30,2305.17359,https://github.com/Xianjun-Yang/DNA-GPT
2023-05-31,2305.19164,
2023-05-31,2305.19012,
2023-05-31,2305.18752,https://github.com/StevenGrove/GPT4Tools
2023-05-31,2305.18802,
2023-05-31,2305.19245,
2023-05-31,2305.18415,
2023-05-31,2305.19234,
2023-05-31,2305.18654,
2023-05-31,2305.18565,
2023-05-31,2305.18373,
2023-05-31,2305.18766,
2023-05-31,2305.18474,
2023-05-31,2305.19066,
2023-05-31,2305.18729,
2023-05-31,2305.18583,
2023-05-31,2305.18365,
2023-06-01,2305.20030,
2023-06-01,2305.20081,https://github.com/sail-sg/edp
2023-06-01,2305.20091,
2023-06-01,2305.19452,https://github.com/google-research/google-research/tree/master/bigger_better_faster
2023-06-01,2305.20088,https://github.com/LijieFan/LaCLIP
2023-06-01,2305.20010,
2023-06-01,2305.19835,
2023-06-01,2305.19472,
2023-06-01,2305.19370,
2023-06-01,2305.20086,
2023-06-01,2305.20082,
2023-06-02,2306.00980,
2023-06-02,2306.00739,
2023-06-02,2306.00378,
2023-06-02,2306.00238,https://github.com/apple/ml-cvnets/tree/main/examples
2023-06-02,2306.00983,
2023-06-02,2306.00890,
2023-06-02,2306.00637,
2023-06-02,2306.00966,
2023-06-02,2306.00984,
2023-06-02,2306.00971,
2023-06-02,2306.00956,
2023-06-02,2306.00926,
2023-06-02,2306.00148,
2023-06-02,2306.00008,
2023-06-02,2306.00802,
2023-06-02,2306.00107,https://github.com/yizhilll/MERT
2023-06-02,2306.00029,
2023-06-02,2306.00110,
2023-06-02,2306.00943,
2023-06-02,2306.00986,
2023-06-02,2306.00964,
2023-06-02,2306.00622,
2023-06-05,2306.01116,
2023-06-05,2306.01567,https://github.com/SysCV/SAM-HQ
2023-06-05,2306.01693,
2023-06-05,2306.01694,
2023-06-05,2306.01736,
2023-06-05,2306.01684,
2023-06-05,2306.01242,
2023-06-05,2306.01160,
2023-06-05,2306.01061,
2023-06-05,2306.01337,
2023-06-06,2306.02707,
2023-06-06,2306.02254,
2023-06-06,2306.02858,https://github.com/DAMO-NLP-SG/Video-LLaMA
2023-06-06,2306.02561,
2023-06-06,2306.03038,
2023-06-06,2306.03082,https://github.com/Lichang-Chen/InstructZero
2023-06-06,2306.01741,
2023-06-06,2306.02982,
2023-06-06,2306.03024,
2023-06-06,2306.03092,
2023-06-06,2306.01841,https://github.com/facebookresearch/Ternary_Binary_Transformer
2023-06-06,2306.03083,
2023-06-06,2306.02531,
2023-06-06,2306.01923,
2023-06-06,2306.02245,https://github.com/DYZhang09/SAM3D
2023-06-06,2306.01879,
2023-06-06,2306.01872,
2023-06-06,2306.01754,
2023-06-07,2306.03514,
2023-06-07,2306.03881,
2023-06-07,2306.03504,
2023-06-07,2306.03509,
2023-06-07,2306.03460,
2023-06-07,2306.03203,
2023-06-07,2306.03872,https://github.com/lz1oceani/verify_cot
2023-06-07,2306.03802,
2023-06-07,2306.03819,https://github.com/EleutherAI/concept-erasure
2023-06-07,2306.03438,
2023-06-08,2306.04387,
2023-06-08,2306.04050,
2023-06-08,2306.04619,
2023-06-08,2306.04235,https://github.com/zjersey/Lightseq-ARM
2023-06-08,2306.04528,https://github.com/microsoft/promptbench
2023-06-08,2306.04362,
2023-06-08,2306.04632,https://github.com/buxiangzhiren/Asymmetric_VQGAN
2023-06-08,2306.04634,
2023-06-08,2306.04140,
2023-06-08,2306.04076,
2023-06-08,2306.04031,
2023-06-08,2306.04009,
2023-06-09,2306.05284,https://github.com/facebookresearch/audiocraft
2023-06-09,2306.05422,
2023-06-09,2306.05399,https://github.com/SHI-Labs/Matting-Anything
2023-06-09,2306.05424,https://github.com/mbzuai-oryx/Video-ChatGPT
2023-06-09,2306.05087,https://github.com/WeOpenML/PandaLM
2023-06-09,2306.04757,https://github.com/declare-lab/instruct-eval
2023-06-09,2306.05428,
2023-06-09,2306.05178,
2023-06-09,2306.05425,
2023-06-09,2306.04707,
2023-06-09,2306.04751,https://github.com/allenai/open-instruct
2023-06-09,2306.05410,
2023-06-09,2306.05357,
2023-06-09,2306.04822,
2023-06-09,2306.05392,
2023-06-09,2306.04845,
2023-06-09,2306.05420,https://github.com/google-research/spherical-cnn
2023-06-09,2306.05411,https://github.com/facebookresearch/r-mae
2023-06-09,2306.05427,
2023-06-12,2306.06070,
2023-06-12,2306.05544,
2023-06-12,2306.06044,
2023-06-12,2306.05949,
2023-06-12,2306.05836,https://github.com/causalNLP/corr2cause
2023-06-12,2306.05685,
2023-06-12,2306.05493,
2023-06-12,2306.06092,
2023-06-12,2306.05696,
2023-06-13,2306.06189,https://github.com/NVlabs/FasterViT
2023-06-13,2306.07179,
2023-06-13,2306.07280,
2023-06-13,2306.07174,
2023-06-13,2306.06638,
2023-06-13,2306.07279,
2023-06-13,2306.06546,
2023-06-13,2306.06212,
2023-06-13,2306.07075,
2023-06-13,2306.07042,
2023-06-13,2306.07196,
2023-06-13,2306.06823,
2023-06-14,2306.07954,
2023-06-14,2306.07967,https://github.com/Arnav0400/ViT-Slim/tree/master/GLoRA
2023-06-14,2306.07476,
2023-06-14,2306.07906,https://github.com/THUDM/WebGLM
2023-06-14,2306.07536,https://github.com/HazyResearch/TART
2023-06-14,2306.07915,
2023-06-14,2306.07349,
2023-06-14,2306.07580,
2023-06-14,2306.07970,
2023-06-14,2306.07968,
2023-06-14,2306.07473,
2023-06-14,2306.07944,
2023-06-14,2306.07969,
2023-06-14,2306.07552,
2023-06-14,2306.07437,
2023-06-14,2306.07941,
2023-06-14,2306.07946,
2023-06-16,2306.08276,
2023-06-16,2306.09348,
2023-06-16,2306.08640,
2023-06-16,2306.08568,https://github.com/nlpxucan/WizardLM
2023-06-16,2306.09296,
2023-06-16,2306.08543,
2023-06-16,2306.08161,
2023-06-16,2306.09329,
2023-06-16,2306.09093,
2023-06-16,2306.08205,
2023-06-16,2306.08647,
2023-06-16,2306.08997,
2023-06-16,2306.09316,
2023-06-16,2306.08620,
2023-06-16,2306.09200,https://github.com/waterhorse1/ChessGPT
2023-06-16,2306.09327,
2023-06-16,2306.08893,
2023-06-16,2306.08068,
2023-06-16,2306.08707,
2023-06-16,2306.09349,
2023-06-16,2306.09109,
2023-06-16,2306.08133,
2023-06-16,2306.08129,
2023-06-16,2306.09322,
2023-06-16,2306.08651,
2023-06-16,2306.08055,
2023-06-19,2306.10012,
2023-06-19,2306.09782,
2023-06-19,2306.09896,
2023-06-19,2306.09864,
2023-06-19,2306.10007,
2023-06-19,2306.09683,
2023-06-19,2306.09539,
2023-06-19,2306.09479,
2023-06-19,2306.09682,
2023-06-19,2306.09635,
2023-06-19,2306.09442,
2023-06-19,2306.09557,
2023-06-21,2306.11644,
2023-06-21,2306.10900,
2023-06-21,2306.11565,
2023-06-21,2306.10998,
2023-06-21,2306.11698,
2023-06-21,2306.10533,
2023-06-21,2306.10231,
2023-06-21,2306.11706,
2023-06-21,2306.11719,
2023-06-21,2306.10169,
2023-06-21,2306.10763,
2023-06-21,2306.10968,
2023-06-21,2306.10785,
2023-06-22,2306.12156,https://github.com/CASIA-IVA-Lab/FastSAM
2023-06-22,2306.11987,
2023-06-22,2306.12422,
2023-06-22,2306.11932,
2023-06-22,2306.12059,
2023-06-23,2306.12925,
2023-06-23,2306.12672,
2023-06-23,2306.12509,https://github.com/microsoft/deep-language-networks
2023-06-23,2306.12929,
2023-06-23,2306.10008,https://github.com/fahadshamshad/Clip2Protect
2023-06-23,2306.12760,
2023-06-23,2306.13078,
2023-06-26,2306.13421,
2023-06-26,2306.13575,
2023-06-26,2306.13651,
2023-06-26,2306.13588,
2023-06-26,2306.13649,
2023-06-26,2306.13631,
2023-06-26,2306.13455,
2023-06-27,2306.14824,
2023-06-27,2306.14795,
2023-06-27,2306.14435,
2023-06-27,2306.14289,https://github.com/ChaoningZhang/MobileSAM
2023-06-27,2306.13840,
2023-06-27,2306.14101,
2023-06-27,2306.14892,
2023-06-27,2306.14048,https://github.com/FMInference/H2O
2023-06-27,2306.14035,
2023-06-27,2306.14447,
2023-06-27,2306.14565,
2023-06-27,2306.13776,
2023-06-27,2306.14846,
2023-06-27,2306.14153,
2023-06-27,2306.13754,
2023-06-27,2306.14878,https://github.com/Newbeeer/diffusion_restart_sampling
2023-06-27,2306.14896,
2023-06-27,2306.14066,
2023-06-28,2306.15595,
2023-06-28,2306.15658,https://github.com/UCSC-VLAA/CLIPA
2023-06-28,2306.15626,
2023-06-28,2306.15128,https://github.com/RAIVNLab/MIMIC
2023-06-28,2306.15354,
2023-06-28,2306.15667,
2023-06-28,2306.15091,
2023-06-28,2306.15400,
2023-06-28,2306.15447,
2023-06-29,2306.16410,https://github.com/ContextualAI/lens
2023-06-29,2306.15794,
2023-06-29,2306.16388,
2023-06-29,2306.15724,
2023-06-29,2306.16052,
2023-06-29,2306.16009,
2023-06-30,2306.16928,
2023-06-30,2306.16934,
2023-06-30,2306.17154,
2023-06-30,2306.17156,
2023-06-30,2306.16527,
2023-06-30,2306.17107,
2023-06-30,2306.17115,
2023-06-30,2306.16793,
2023-06-30,2306.16857,
2023-06-30,2306.16869,https://github.com/IBM/NeuralFuse
2023-06-30,2306.16700,
2023-06-30,2306.16601,https://github.com/intel/intel-extension-for-transformers
2023-06-30,2306.16940,
2023-06-30,2306.16564,
2023-07-03,2306.17843,https://github.com/guochengqian/Magic123
2023-07-03,2306.17806,
2023-07-03,2306.17840,
2023-07-03,2306.17582,
2023-07-03,2306.17563,
2023-07-03,2306.17848,
2023-07-03,2306.17194,https://github.com/azshue/AutoPoison
2023-07-03,2306.17492,
2023-07-03,2306.17759,
2023-07-03,2306.17319,https://github.com/google-research/deeplab2
2023-07-04,2307.01197,https://github.com/SysCV/sam-pt
2023-07-04,2307.00522,
2023-07-04,2307.00040,
2023-07-04,2307.00184,
2023-07-04,2307.00716,
2023-07-04,2307.01200,
2023-07-04,2307.01097,
2023-07-04,2307.01163,
2023-07-04,2307.00117,
2023-07-04,2307.00804,
2023-07-04,2307.00119,
2023-07-06,2307.02486,
2023-07-06,2307.01952,https://github.com/Stability-AI/generative-models
2023-07-06,2307.02421,https://github.com/MC-E/DragonDiffusion
2023-07-06,2307.02053,
2023-07-06,2307.02469,
2023-07-06,2307.02485,
2023-07-06,2307.02483,
2023-07-06,2307.01928,
2023-07-06,2307.01938,
2023-07-06,2307.02321,
2023-07-06,2307.02179,
2023-07-06,2307.02484,
2023-07-06,2307.01848,
2023-07-06,2307.01229,https://github.com/microsoft/muzic
2023-07-06,2307.01831,
2023-07-07,2307.03109,https://github.com/MLGroupJLU/LLM-eval-survey
2023-07-07,2307.03172,
2023-07-07,2307.02499,https://github.com/X-PLUG/mPLUG-DocOwl
2023-07-07,2307.02768,
2023-07-07,2307.03170,
2023-07-07,2307.03183,
2023-07-07,2307.02628,
2023-07-07,2307.03166,
2023-07-10,2307.03692,
2023-07-10,2307.03381,
2023-07-10,2307.03601,https://github.com/jshilong/GPT4RoI
2023-07-10,2307.03322,
2023-07-10,2307.03659,
2023-07-10,2307.03576,
2023-07-10,2307.03718,
2023-07-11,2307.04725,
2023-07-11,2307.03869,
2023-07-11,2307.04686,
2023-07-11,2307.04767,
2023-07-11,2307.04721,
2023-07-11,2307.03875,
2023-07-11,2307.03917,
2023-07-11,2307.04699,
2023-07-11,2307.04603,https://github.com/kakaobrain/solvent
2023-07-11,2307.04349,https://github.com/Zyq-scut/RLTF
2023-07-11,2307.04087,
2023-07-11,2307.04751,
2023-07-11,2307.04008,
2023-07-11,2307.04577,
2023-07-12,2307.04787,
2023-07-12,2307.04964,
2023-07-12,2307.05222,
2023-07-12,2307.05445,
2023-07-12,2307.05300,https://github.com/MikeWangWZHL/Solo-Performance-Prompting.git
2023-07-12,2307.05473,
2023-07-12,2307.05432,
2023-07-12,2307.05463,
2023-07-12,2307.05454,
2023-07-12,2307.05462,
2023-07-12,2307.05014,
2023-07-13,2307.06018,
2023-07-13,2307.06304,
2023-07-13,2307.05695,
2023-07-13,2307.06135,
2023-07-13,2307.05628,
2023-07-13,2307.06290,
2023-07-13,2307.05591,
2023-07-13,2307.05741,
2023-07-13,2307.05959,
2023-07-13,2307.05973,
2023-07-14,2307.06949,
2023-07-14,2307.06945,
2023-07-14,2307.06942,
2023-07-14,2307.06925,
2023-07-14,2307.06439,
2023-07-14,2307.06857,
2023-07-14,2307.06940,
2023-07-14,2307.06908,https://github.com/AI21Labs/factor
2023-07-14,2307.06350,
2023-07-17,2307.06962,https://github.com/gmftbyGMFTBY/Copyisallyouneed
2023-07-17,2307.07218,
2023-07-17,2307.07164,
2023-07-17,2307.07487,
2023-07-17,2307.07047,
2023-07-17,2307.07511,
2023-07-18,2307.08621,
2023-07-18,2307.08674,
2023-07-18,2307.08581,
2023-07-18,2307.08701,
2023-07-18,2307.08702,
2023-07-18,2307.07635,
2023-07-18,2307.08041,
2023-07-18,2307.07663,
2023-07-18,2307.08506,
2023-07-18,2307.08579,
2023-07-18,2307.07947,
2023-07-19,2307.09288,
2023-07-19,2307.09009,
2023-07-19,2307.09112,
2023-07-19,2307.09458,
2023-07-19,2307.09233,
2023-07-19,2307.09320,
2023-07-20,2307.09793,
2023-07-20,2307.10169,
2023-07-20,2307.10159,
2023-07-20,2307.09781,
2023-07-20,2307.10172,https://github.com/salesforce/DialogStudio
2023-07-20,2307.09668,
2023-07-20,2307.10088,https://github.com/google-research/google-research/tree/master/android_in_the_wild
2023-07-20,2307.10168,
2023-07-20,2307.10173,
2023-07-20,2307.09638,
2023-07-21,2307.10373,
2023-07-21,2307.11078,
2023-07-21,2307.10802,https://github.com/invictus717/MetaTransformer
2023-07-21,2307.10907,https://github.com/apple/ml-entropy-reconstruction
2023-07-21,2307.10350,
2023-07-21,2307.10928,https://github.com/kaistAI/FLASK
2023-07-21,2307.10936,
2023-07-21,2307.10635,
2023-07-21,2307.10558,
2023-07-24,2307.11410,
2023-07-24,2307.11526,
2023-07-24,2307.11418,
2023-07-24,2307.11118,
2023-07-25,2307.12981,
2023-07-25,2307.12856,
2023-07-25,2307.12560,
2023-07-25,2307.11795,
2023-07-25,2307.12533,
2023-07-25,2307.12976,
2023-07-25,2307.12950,
2023-07-25,2307.11768,
2023-07-25,2307.12169,
2023-07-25,2307.12854,
2023-07-25,2307.12612,https://github.com/huawei-noah/noah-research/tree/master/Focus-DETR
2023-07-25,2307.12698,
2023-07-26,2307.13269,https://github.com/sail-sg/lorahub
2023-07-26,2307.13692,
2023-07-26,2307.13383,
2023-07-26,2307.13226,
2023-07-26,2307.13101,
2023-07-27,2307.14335,
2023-07-27,2307.13702,
2023-07-27,2307.13854,
2023-07-27,2307.13974,https://github.com/jiawen-zhu/HQTrack
2023-07-27,2307.14334,
2023-07-27,2307.13908,
2023-07-27,2307.13720,
2023-07-27,2307.14225,
2023-07-27,2307.14117,
2023-07-27,2307.14008,
2023-07-27,2307.13924,https://github.com/NVlabs/trajdata
2023-07-28,2307.14936,
2023-07-28,2307.14995,
2023-07-28,2307.15063,
2023-07-28,2307.14535,
2023-07-28,2307.14620,https://github.com/facebookresearch/NeRF-Det
2023-07-28,2307.13813,
2023-07-28,2307.14460,https://github.com/isl-org/MiDaS
2023-07-28,2307.15042,
2023-07-31,2307.15217,
2023-07-31,2307.15337,
2023-07-31,2307.15189,https://github.com/snap-stanford/med-flamingo
2023-07-31,2307.15199,
2023-07-31,2307.15593,
2023-07-31,2307.15504,
2023-07-31,2307.15131,
2023-08-01,2307.16789,
2023-08-01,2307.16372,
2023-08-01,2307.15818,
2023-08-01,2307.15780,
2023-08-01,2307.15771,
2023-08-01,2307.16184,https://github.com/mshukor/UnIVAL
2023-08-01,2307.16686,
2023-08-01,2307.16449,
2023-08-01,2307.16368,
2023-08-01,2307.16715,https://github.com/showlab/UniVTG
2023-08-01,2307.16888,
2023-08-01,2307.16890,
2023-08-01,2307.16125,
2023-08-02,2308.00675,
2023-08-02,2308.00304,
2023-08-02,2308.00436,
2023-08-02,2308.00113,
2023-08-02,2308.00566,
2023-08-03,2308.00951,
2023-08-03,2308.00906,
2023-08-03,2308.01317,
2023-08-03,2308.01300,
2023-08-03,2308.01313,
2023-08-04,2308.01320,
2023-08-04,2308.01399,
2023-08-04,2308.01390,https://github.com/mlfoundations/open_flamingo
2023-08-04,2308.01825,
2023-08-04,2308.01544,
2023-08-04,2308.01546,
2023-08-04,2308.01477,
2023-08-04,2308.01907,https://github.com/OpenGVLab/All-Seeing
2023-08-04,2308.01904,https://github.com/impiga/Plain-DETR
2023-08-04,2308.01734,
2023-08-04,2308.01379,
2023-08-04,2308.01499,
2023-08-07,2308.02151,
2023-08-07,2308.02490,https://github.com/yuweihao/MM-Vet
2023-08-07,2308.02487,https://github.com/bytedance/fc-clip
2023-08-07,2308.02180,
2023-08-07,2308.02453,
2023-08-07,2308.01937,
2023-08-08,2308.02669,
2023-08-08,2308.03526,
2023-08-08,2308.03610,
2023-08-08,2308.03688,https://github.com/THUDM/AgentBench
2023-08-08,2308.02510,
2023-08-08,2308.03279,
2023-08-08,2308.03427,
2023-08-08,2308.03757,
2023-08-08,2308.03296,
2023-08-08,2308.03729,https://github.com/OpenGVLab/Multi-Modality-Arena
2023-08-08,2308.03280,
2023-08-08,2308.03028,
2023-08-08,2308.03291,https://github.com/deepmind/synjax
2023-08-08,2308.03421,
2023-08-08,2308.03290,
2023-08-08,2308.02560,
2023-08-09,2308.04079,
2023-08-09,2308.03958,https://github.com/google/sycophancy-intervention
2023-08-09,2308.04265,
2023-08-09,2308.04430,
2023-08-09,2308.03793,
2023-08-10,2308.04592,
2023-08-10,2308.04729,
2023-08-10,2308.04623,
2023-08-10,2308.04556,https://github.com/NVlabs/FocalFormer3D
2023-08-11,2308.05734,
2023-08-11,2308.05374,
2023-08-11,2308.05737,https://github.com/alaamaalouf/FollowAnything
2023-08-11,2308.05326,
2023-08-11,2308.05371,
2023-08-11,2308.05221,
2023-08-11,2308.05732,
2023-08-14,2308.06259,
2023-08-14,2308.05884,
2023-08-14,2308.06103,
2023-08-14,2308.05960,https://github.com/salesforce/BOLAA
2023-08-14,2308.06125,
2023-08-14,2308.06261,
2023-08-15,2308.07124,https://github.com/bigcode-project/octopack
2023-08-15,2308.06873,
2023-08-15,2308.07317,
2023-08-15,2308.06912,
2023-08-15,2308.06721,
2023-08-15,2308.07228,
2023-08-15,2308.07316,
2023-08-15,2308.07286,
2023-08-15,2308.06595,
2023-08-16,2308.07921,
2023-08-16,2308.07926,
2023-08-16,2308.07922,
2023-08-16,2308.07891,https://github.com/isekai-portal/Link-Context-Learning
2023-08-16,2308.07903,
2023-08-16,2308.07395,
2023-08-16,2308.07795,https://github.com/AI-Initiative-KAUST/VideoRLCS
2023-08-17,2308.08545,
2023-08-17,2308.08316,
2023-08-17,2308.07968,
2023-08-17,2308.08089,
2023-08-17,2308.07931,
2023-08-17,2308.08258,
2023-08-28,2308.13137,https://github.com/OpenGVLab/OmniQuant
2023-08-28,2308.13416,https://github.com/DeepSoftwareAnalytics/SoTaNa
2023-08-28,2308.13404,
2023-08-28,2308.13494,
2023-08-28,2308.13418,
2023-08-29,2308.14089,
2023-08-29,2308.13785,
2023-08-31,2308.16149,
2023-08-31,2308.16137,
2023-08-31,2308.15930,https://github.com/LinkSoul-AI/LLaSM
2023-08-31,2308.15975,
2023-08-31,2308.15560,
2023-08-31,2308.16185,
2023-09-01,2308.16884,
2023-09-01,2308.16824,https://github.com/NL2Code/CodeM
2023-09-01,2308.16458,https://github.com/gersteinlab/biocoder
2023-09-01,2308.16512,
2023-09-01,2308.16271,https://github.com/Ma-Lab-Berkeley/CRATE
2023-09-01,2308.16246,
2023-09-01,2308.16876,
2023-09-01,2308.16891,
2023-09-01,2308.16582,
2023-09-04,2309.00071,https://github.com/jquesnelle/yarn
2023-09-04,2309.00035,
2023-09-04,2309.00359,
2023-09-04,2309.00267,
2023-09-04,2309.00610,
2023-09-04,2309.00398,
2023-09-04,2309.00615,https://github.com/ZiyuGuo99/Point-Bind_Point-LLM
2023-09-06,2309.02285,
2023-09-06,2309.00754,
2023-09-06,2309.00986,https://github.com/modelscope/modelscope-agent
2023-09-06,2309.01770,
2023-09-06,2309.01700,
2023-09-06,2309.00908,
2023-09-06,2309.00775,
2023-09-06,2309.02119,
2023-09-06,2309.02040,
2023-09-06,2309.00966,
2023-09-06,2309.01826,
2023-09-06,2309.02420,
2023-09-06,2309.02186,
2023-09-06,2309.00987,
2023-09-06,2309.01775,
2023-09-07,2309.03179,
2023-09-07,2309.03160,
2023-09-07,2309.03130,
2023-09-07,2309.02591,
2023-09-07,2309.02561,
2023-09-07,2309.03185,
2023-09-07,2309.03199,
2023-09-08,2309.03409,
2023-09-08,2309.03905,https://github.com/OpenGVLab/LLaMA-Adapter
2023-09-08,2309.03852,
2023-09-08,2309.03241,
2023-09-08,2309.03549,
2023-09-08,2309.03550,
2023-09-08,2309.03883,
2023-09-08,2309.03450,
2023-09-08,2309.03903,
2023-09-08,2309.03315,
2023-09-08,2309.03897,
2023-09-08,2309.03895,
2023-09-08,2309.03453,
2023-09-11,2309.04269,
2023-09-11,2309.03926,
2023-09-11,2309.04247,
2023-09-11,2309.04354,
2023-09-11,2309.03907,https://github.com/UCSD-AI4H/drugchat
2023-09-12,2309.05519,
2023-09-12,2309.05463,
2023-09-12,2309.05516,https://github.com/intel/neural-compressor
2023-09-12,2309.04827,
2023-09-12,2309.04663,
2023-09-12,2309.04662,
2023-09-12,2309.04564,
2023-09-12,2309.04581,
2023-09-13,2309.05793,
2023-09-13,2309.06180,https://github.com/vllm-project/vllm
2023-09-13,2309.05689,
2023-09-13,2309.06380,https://github.com/gnobitab/InstaFlow
2023-09-13,2309.06126,
2023-09-13,2309.05858,
2023-09-13,2309.05767,
2023-09-13,2309.06441,
2023-09-13,2309.06440,
2023-09-14,2309.06657,
2023-09-14,2309.07062,
2023-09-14,2309.06895,
2023-09-14,2309.07125,
2023-09-14,2309.06802,
2023-09-14,2309.06933,
2023-09-14,2309.07122,
2023-09-15,2309.07430,
2023-09-15,2309.07900,
2023-09-15,2309.07870,https://github.com/aiwaves-cn/agents
2023-09-15,2309.07462,
2023-09-15,2309.07749,
2023-09-15,2309.07906,
2023-09-15,2309.07314,
2023-09-18,2309.08532,
2023-09-18,2309.08586,
2023-09-18,2309.08210,
2023-09-18,2309.07970,
2023-09-18,2309.08520,
2023-09-18,2309.08600,
2023-09-18,2309.08587,
2023-09-18,2309.08172,
2023-09-18,2309.07990,
2023-09-18,2309.07974,
2023-09-18,2309.08051,
2023-09-18,2309.07986,
2023-09-19,2309.09958,
2023-09-19,2309.09506,https://github.com/ProjectNUWA/LayoutNUWA
2023-09-19,2309.09971,
2023-09-19,2309.09117,
2023-09-19,2309.08872,
2023-09-19,2309.08804,
2023-09-19,2309.09530,https://github.com/microsoft/LMOps
2023-09-19,2309.09400,
2023-09-19,2309.09390,
2023-09-19,2309.08968,
2023-09-19,2309.08963,https://github.com/gersteinlab/Struc-Bench
2023-09-19,2309.08827,
2023-09-19,2309.08773,
2023-09-19,2309.08646,
2023-09-19,2309.08637,
2023-09-19,2309.08628,
2023-09-19,2309.06497,
2023-09-20,2309.10020,
2023-09-20,2309.10668,
2023-09-20,2309.10305,
2023-09-20,2309.10706,https://github.com/OpenNLG/openBA.git
2023-09-20,2309.10279,
2023-09-20,2309.10150,
2023-09-20,2309.10537,
2023-09-20,2309.10818,
2023-09-20,2309.10202,
2023-09-21,2309.10952,
2023-09-21,2309.11499,
2023-09-21,2309.11497,
2023-09-21,2309.11419,
2023-09-21,2309.11495,
2023-09-21,2309.10917,
2023-09-21,2309.11197,
2023-09-21,2309.11500,
2023-09-21,2309.11009,
2023-09-22,2309.11674,
2023-09-22,2309.11568,
2023-09-22,2309.11998,
2023-09-22,2309.12307,
2023-09-22,2309.11523,
2023-09-22,2309.12311,
2023-09-22,2309.12284,
2023-09-22,2309.12207,
2023-09-25,2309.12499,
2023-09-25,2309.13042,https://github.com/Jiahao000/MosaicFusion
2023-09-25,2309.13018,
2023-09-25,2309.13041,
2023-09-25,2309.12424,
2023-09-26,2309.13075,
2023-09-26,2309.13952,
2023-09-26,2309.14322,
2023-09-26,2309.14327,
2023-09-26,2309.13356,
2023-09-26,2309.13308,
2023-09-27,2309.15103,
2023-09-27,2309.14525,
2023-09-27,2309.14717,https://github.com/yuhuixu1993/qa-lora
2023-09-27,2309.15098,
2023-09-27,2309.14592,https://github.com/intel/neural-compressor
2023-09-27,2309.14509,
2023-09-27,2309.15091,
2023-09-28,2309.15223,
2023-09-28,2309.15251,
2023-09-28,2309.15129,
2023-09-28,2309.15807,
2023-09-28,2309.15818,https://github.com/showlab/Show-1
2023-09-28,2309.15273,
2023-09-28,2309.15505,
2023-09-28,2309.15426,
2023-09-28,2309.15564,
|