File size: 209,102 Bytes
79dc07f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 | [
{
"id": "-8Kt5J-9AI",
"title": "Tailoring Visual Object Representations to Human Requirements: A Case Study with a Recycling Robot",
"track": "main",
"status": "Poster",
"keywords": "Representation Learning;Contrastive Learning;Human-in-the-loop Robot Learning",
"primary_area": "",
"author": "Debasmita Ghose;Michal Adam Lewkowicz;Kaleb Gezahegn;Julian Lee;Timothy Adamson;Marynel Vazquez;Brian Scassellati",
"authorids": "~Debasmita_Ghose1;~Michal_Adam_Lewkowicz1;~Kaleb_Gezahegn1;~Julian_Lee1;~Timothy_Adamson1;~Marynel_Vazquez1;~Brian_Scassellati1",
"aff": "Yale University;Department of Computer Science, Yale University;Yale University;Yale University;Yale University;Yale University",
"aff_domain": "yale.edu;cs.yale.edu;yale.edu;yale.edu;yale.edu;yale.edu",
"position": "PhD student;Undergrad student;Undergrad student;Undergrad student;Assistant Professor;Full Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "00OqOl4txhe",
"title": "Learning Interpretable BEV Based VIO without Deep Neural Networks",
"track": "main",
"status": "Poster",
"keywords": "VIO;Interpretable Learning",
"primary_area": "",
"author": "Zexi Chen;Haozhe Du;Xuecheng XU;Rong Xiong;Yiyi Liao;Yue Wang",
"authorids": "~Zexi_Chen1;hzdu@zju.edu.cn;~Xuecheng_XU1;~Rong_Xiong1;~Yiyi_Liao2;~Yue_Wang1",
"aff": "Zhejiang University;Zhejiang University;Zhejiang University;Zhejiang University;Zhejiang University",
"aff_domain": "zju.edu.cn;zju.edu.cn;zju.edu.cn;zju.edu.cn;zju.edu.cn",
"position": "PhD student;PhD student;Full Professor;Assistant Professor;Associate Professor",
"rating": "1;4;10;10",
"confidence": "",
"rating_avg": 6.25,
"confidence_avg": 0,
"replies_avg": 34,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "0nb97NQypbK",
"title": "Residual Skill Policies: Learning an Adaptable Skill-based Action Space for Reinforcement Learning for Robotics",
"track": "main",
"status": "Poster",
"keywords": "Reinforcement Learning;Skill Learning;Transfer Learning;Residual Reinforcement Learning",
"primary_area": "",
"author": "Krishan Rana;Ming Xu;Brendan Tidd;Michael Milford;Niko Suenderhauf",
"authorids": "~Krishan_Rana1;~Ming_Xu5;~Brendan_Tidd1;~Michael_Milford1;~Niko_Suenderhauf1",
"aff": "Queensland University of Technology;Queensland University of Technology;Queensland University of Technology;Queensland University of Technology;Queensland University of Technology",
"aff_domain": "qut.edu.au;qut.edu.au;qut.edu.au;qut.edu.au;qut.edu.au",
"position": "PhD student;PhD student;PhD student;Joint Director;Associate Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "1Pt2FM5BLdi",
"title": "Towards Online 3D Bin Packing: Learning Synergies between Packing and Unpacking via DRL",
"track": "main",
"status": "Poster",
"keywords": "Bin packing;Robotics;Deep reinforcement learning",
"primary_area": "",
"author": "Shuai Song;Shuo Yang;Ran Song;Shilei Chu;yibin Li;Wei Zhang",
"authorids": "~Shuai_Song1;~Shuo_Yang10;~Ran_Song2;~Shilei_Chu2;~yibin_Li1;~Wei_Zhang7",
"aff": "Shandong University;Shandong University;Shandong University;Shandong University;Shandong University",
"aff_domain": "sdu.edu.cn;sdu.edu.cn;sdu.edu.cn;sdu.edu.cn;sdu.edu.cn",
"position": "MS student;PhD student;Full Professor;Full Professor;MS student",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "1vV0JRA2HY0",
"title": "Do we use the Right Measure? Challenges in Evaluating Reward Learning Algorithms",
"track": "main",
"status": "Poster",
"keywords": "Human Robot Interaction;Reward Learning",
"primary_area": "",
"author": "Nils Wilde;Javier Alonso-Mora",
"authorids": "~Nils_Wilde1;j.alonsomora@tudelft.nl",
"aff": "Delft University of Technology",
"aff_domain": "tudelft.nl",
"position": "Postdoc",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 39,
"authors#_avg": 1,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "1zbWQxFIU-",
"title": "MegaPose: 6D Pose Estimation of Novel Objects via Render & Compare",
"track": "main",
"status": "Poster",
"keywords": "Object Pose Estimation;Robot Manipulation;Computer Vision",
"primary_area": "",
"author": "Yann Labb\u00e9;Lucas Manuelli;Arsalan Mousavian;Stephen Tyree;Stan Birchfield;Jonathan Tremblay;Justin Carpentier;Mathieu Aubry;Dieter Fox;Josef Sivic",
"authorids": "~Yann_Labb\u00e91;~Lucas_Manuelli1;~Arsalan_Mousavian1;~Stephen_Tyree1;~Stan_Birchfield1;~Jonathan_Tremblay1;~Justin_Carpentier1;~Mathieu_Aubry3;~Dieter_Fox1;~Josef_Sivic1",
"aff": "NVIDIA;NVIDIA;NVIDIA;NVIDIA;NVIDIA;INRIA;ENPC;Department of Computer Science;Czech Technical University in Prague",
"aff_domain": "nvidia.com;nvidia.com;nvidia.com;nvidia.com;nvidia.com;inria.fr;enpc.fr;cs.washington.edu;cvut.cz",
"position": "Researcher;Research Scientist;Research scientist;Principal Research Scientist;Researcher;Researcher;Principal Researcher;Full Professor;Principal investigator",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 10,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "2CSj965d9O4",
"title": "Is Anyone There? Learning a Planner Contingent on Perceptual Uncertainty",
"track": "main",
"status": "Poster",
"keywords": "Forecasting;Planning;Partial Observability;Autonomous Driving",
"primary_area": "",
"author": "Charles Packer;Nicholas Rhinehart;Rowan Thomas McAllister;Matthew A. Wright;Xin Wang;Jeff He;Sergey Levine;Joseph E. Gonzalez",
"authorids": "~Charles_Packer1;~Nicholas_Rhinehart1;~Rowan_Thomas_McAllister1;~Matthew_A._Wright1;~Xin_Wang1;~Jeff_He1;~Sergey_Levine1;~Joseph_E._Gonzalez1",
"aff": "University of California, Berkeley;Toyota Research Institute;Microsoft;University of California, Berkeley;Google;University of California, Berkeley;University of California, Berkeley",
"aff_domain": "berkeley.edu;tri.global;microsoft.com;berkeley.edu;google.com;berkeley.edu;berkeley.edu",
"position": "Postdoc;Machine Learning Scientist;Senior Researcher;Undergrad student;Research Scientist;Associate Professor;Postdoc",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 8,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "2cEjfernc5P",
"title": "Selective Object Rearrangement in Clutter",
"track": "main",
"status": "Poster",
"keywords": "Rearrangement;Robot Manipulation;Task and Motion Planning",
"primary_area": "",
"author": "Bingjie Tang;Gaurav S. Sukhatme",
"authorids": "~Bingjie_Tang1;~Gaurav_S._Sukhatme1",
"aff": "University of Southern California;University of Southern California",
"aff_domain": "usc.edu;usc.edu",
"position": "PhD student;Full Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 19,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "2gfB_kMVFvP",
"title": "ToolFlowNet: Robotic Manipulation with Tools via Predicting Tool Flow from Point Clouds",
"track": "main",
"status": "Poster",
"keywords": "Flow;Point Clouds;Tool Manipulation;Deformables",
"primary_area": "",
"author": "Daniel Seita;Yufei Wang;Sarthak J Shetty;Edward Yao Li;Zackory Erickson;David Held",
"authorids": "~Daniel_Seita1;~Yufei_Wang4;~Sarthak_J_Shetty1;~Edward_Yao_Li1;~Zackory_Erickson1;~David_Held1",
"aff": "School of Computer Science, Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "cs.cmu.edu;cmu.edu;andrew.cmu.edu;cmu.edu;cmu.edu;andrew.cmu.edu",
"position": "PhD student;MS student;Undergrad student;Assistant Professor;Assistant Professor;Postdoc",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "3CQ3Vt0v99",
"title": "INQUIRE: INteractive Querying for User-aware Informative REasoning",
"track": "main",
"status": "Poster",
"keywords": "Active Learning;Learning from Demonstration;Human-Robot Interaction",
"primary_area": "",
"author": "Tesca Fitzgerald;Pallavi Koppol;Patrick Callaghan;Russell Quinlan Jun Hei Wong;Reid Simmons;Oliver Kroemer;Henny Admoni",
"authorids": "~Tesca_Fitzgerald1;~Pallavi_Koppol1;~Patrick_Callaghan1;~Russell_Quinlan_Jun_Hei_Wong1;~Reid_Simmons1;~Oliver_Kroemer1;~Henny_Admoni1",
"aff": "Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "cmu.edu;andrew.cmu.edu;cmu.edu;andrew.cmu.edu;cmu.edu;cmu.edu;cmu.edu",
"position": "Postdoc;PhD student;MS student;MS student;Researcher;Assistant Professor;Assistant Professor",
"rating": "4;4;6;10",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 23,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "3R3Pz5i0tye",
"title": "Inner Monologue: Embodied Reasoning through Planning with Language Models",
"track": "main",
"status": "Poster",
"keywords": "Large Language Models;Grounding Models;Multi-modal Control;Task and Motion Planning;Mobile Manipulation",
"primary_area": "",
"author": "Wenlong Huang;Fei Xia;Ted Xiao;Harris Chan;Jacky Liang;Pete Florence;Andy Zeng;Jonathan Tompson;Igor Mordatch;Yevgen Chebotar;Pierre Sermanet;Tomas Jackson;Noah Brown;Linda Luu;Sergey Levine;Karol Hausman;brian ichter",
"authorids": "~Wenlong_Huang1;~Fei_Xia1;~Ted_Xiao1;~Harris_Chan1;~Jacky_Liang1;~Pete_Florence1;~Andy_Zeng3;~Jonathan_Tompson1;~Igor_Mordatch5;~Yevgen_Chebotar1;~Pierre_Sermanet1;tomasjackson@google.com;noahbrown@google.com;luulinda@google.com;~Sergey_Levine1;~Karol_Hausman2;~brian_ichter1",
"aff": "Google;Google;Google Brain;Carnegie Mellon University;Google;Google DeepMind;Research, Google;Google;Google;Google;Google;Google;Google Brain",
"aff_domain": "google.com;google.com;google.com;cmu.edu;google.com;google.com;research.google.com;google.com;google.com;google.com;google.com;google.com;google.com",
"position": "Intern;Researcher;Student Researcher;PhD student;Research Scientist;Researcher;Researcher;Research Scientist;Research Scientist;Research Scientist;Research Scientist;Research Scientist;Research Scientist",
"rating": "4;6;6",
"confidence": "",
"rating_avg": 5.333333333333333,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 14,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "3RBY8fKjHeu",
"title": "DayDreamer: World Models for Physical Robot Learning",
"track": "main",
"status": "Poster",
"keywords": "reinforcement learning;model-based reinforcement learning;world models;locomotion;sample-efficiency",
"primary_area": "",
"author": "Philipp Wu;Alejandro Escontrela;Danijar Hafner;Pieter Abbeel;Ken Goldberg",
"authorids": "~Philipp_Wu1;~Alejandro_Escontrela2;~Danijar_Hafner1;~Pieter_Abbeel2;~Ken_Goldberg1",
"aff": "University of California, Berkeley;University of Toronto;Covariant;University of California, Berkeley;University of California, Berkeley",
"aff_domain": "berkeley.edu;cs.toronto;covariant.ai;berkeley.edu;berkeley.edu",
"position": "PhD student;PhD student;Founder;Full Professor;PhD student",
"rating": "4;4;6;6;6",
"confidence": "",
"rating_avg": 5.2,
"confidence_avg": 0,
"replies_avg": 21,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "4ffLQu_O-Dl",
"title": "Safe Control Under Input Limits with Neural Control Barrier Functions",
"track": "main",
"status": "Poster",
"keywords": "safe control;input limits",
"primary_area": "",
"author": "Simin Liu;Changliu Liu;John Dolan",
"authorids": "~Simin_Liu1;~Changliu_Liu1;~John_Dolan1",
"aff": "Carnegie Mellon University;Carnegie Mellon University;School of Computer Science, Carnegie Mellon University",
"aff_domain": "cmu.edu;cmu.edu;cs.cmu.edu",
"position": "PhD student;Assistant Professor;Full Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "4g3PwAp5nsX",
"title": "SE(2)-Equivariant Pushing Dynamics Models for Tabletop Object Manipulations",
"track": "main",
"status": "Oral",
"keywords": "Pushing dynamics learning;Pushing manipulation;Symmetry and Equivariance",
"primary_area": "",
"author": "Seungyeon Kim;Byeongdo Lim;Yonghyeon Lee;Frank C. Park",
"authorids": "~Seungyeon_Kim2;~Byeongdo_Lim1;~Yonghyeon_Lee2;~Frank_C._Park1",
"aff": "Seoul National University;Seoul National University;Seoul National University;Seoul National University",
"aff_domain": "snu.ac.kr;snu.ac.kr;snu.ac.kr;snu.ac.kr",
"position": "PhD student;MS student;PhD student;Full Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 20,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "4nt6RUGmILw",
"title": "i-Sim2Real: Reinforcement Learning of Robotic Policies in Tight Human-Robot Interaction Loops",
"track": "main",
"status": "Oral",
"keywords": "sim-to-real;human-robot interaction;reinforcement learning",
"primary_area": "",
"author": "Saminda Wishwajith Abeyruwan;Laura Graesser;David B D'Ambrosio;Avi Singh;Anish Shankar;Alex Bewley;Deepali Jain;Krzysztof Marcin Choromanski;Pannag R Sanketi",
"authorids": "~Saminda_Wishwajith_Abeyruwan1;~Laura_Graesser1;~David_B_D'Ambrosio1;~Avi_Singh1;~Anish_Shankar1;~Alex_Bewley1;~Deepali_Jain1;~Krzysztof_Marcin_Choromanski1;~Pannag_R_Sanketi1",
"aff": "Google;Google;Google;Google;Google;Google;Google;Google Brain Robotics & Columbia University;Google",
"aff_domain": "google.com;google.com;google.com;google.com;google.com;google.com;google.com;columbia.edu;google.com",
"position": "Software Engineer;Researcher;Researcher;Researcher;Software Engineer;Research Scientist;Researcher;research scientist & adjunct assistant professor;Researcher",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 21,
"authors#_avg": 9,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "52c5e73SlS2",
"title": "Walk These Ways: Tuning Robot Control for Generalization with Multiplicity of Behavior",
"track": "main",
"status": "Oral",
"keywords": "Locomotion;Reinforcement Learning;Task Specification",
"primary_area": "",
"author": "Gabriel B. Margolis;Pulkit Agrawal",
"authorids": "~Gabriel_B._Margolis1;~Pulkit_Agrawal1",
"aff": "Massachusetts Institute of Technology;Massachusetts Institute of Technology",
"aff_domain": "mit.edu;mit.edu",
"position": "Assistant Professor;PhD Student",
"rating": "4;4;6;10",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 24,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "52uzsIGV32_",
"title": "Efficient and Stable Off-policy Training via Behavior-aware Evolutionary Learning",
"track": "main",
"status": "Poster",
"keywords": "Continuos control;Reinforcement learning;Evolution strategies",
"primary_area": "",
"author": "Maiyue Chen;Guangyi He",
"authorids": "~Maiyue_Chen1;gyhe@pku.edu.cn",
"aff": "Peking University",
"aff_domain": "pku.edu.cn",
"position": "PhD student",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 1,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "5GJ-_KMLASa",
"title": "Learning the Dynamics of Compliant Tool-Environment Interaction for Visuo-Tactile Contact Servoing",
"track": "main",
"status": "Poster",
"keywords": "Contact-Rich Manipulation;Multi-Modal Dynamics Learning",
"primary_area": "",
"author": "Mark Van der Merwe;Dmitry Berenson;Nima Fazeli",
"authorids": "~Mark_Van_der_Merwe1;~Dmitry_Berenson1;~Nima_Fazeli1",
"aff": "University of Michigan - Ann Arbor;University of Michigan;University of Michigan",
"aff_domain": "umich.edu;umich.edu;umich.edu",
"position": "PhD student;Associate Professor;Assistant Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "6BIffCl6gsM",
"title": "Efficient Tactile Simulation with Differentiability for Robotic Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Tactile Simulation;Tactile Manipulation;Differentiable Simulation;Sim-to-Real",
"primary_area": "",
"author": "Jie Xu;Sangwoon Kim;Tao Chen;Alberto Rodriguez Garcia;Pulkit Agrawal;Wojciech Matusik;Shinjiro Sueda",
"authorids": "~Jie_Xu7;~Sangwoon_Kim1;~Tao_Chen1;~Alberto_Rodriguez_Garcia1;~Pulkit_Agrawal1;~Wojciech_Matusik2;~Shinjiro_Sueda1",
"aff": "Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Texas A&M University - College Station",
"aff_domain": "mit.edu;mit.edu;mit.edu;mit.edu;mit.edu;mit.edu;tamu.edu",
"position": "PhD student;PhD student;PhD student;Associate Professor;Assistant Professor;Full Professor;Associate Professor",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "6gEyD5zg0dt",
"title": "USHER: Unbiased Sampling for Hindsight Experience Replay",
"track": "main",
"status": "Poster",
"keywords": "Reinforcement Learning;Multi-goal reinforcement learning;Reinforcement learning theory",
"primary_area": "",
"author": "Liam Schramm;Yunfu Deng;Edgar Granados;Abdeslam Boularias",
"authorids": "~Liam_Schramm2;~Yunfu_Deng1;gary.granados@gmail.com;~Abdeslam_Boularias1",
"aff": "Rutgers University;Rutgers University, New Brunswick;, Rutgers University",
"aff_domain": "rutgers.edu;rutgers.edu;cs.rutgers.edu",
"position": "PhD student;MS student;Associate Professor",
"rating": "1;4;6;10",
"confidence": "",
"rating_avg": 5.25,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "7CrXRhmzVVR",
"title": "Solving Complex Manipulation Tasks with Model-Assisted Model-Free Reinforcement Learning",
"track": "main",
"status": "Poster",
"keywords": "Reinforcement learning;Data augmentation;Imaginary exploration;Optimistic initialization",
"primary_area": "",
"author": "Jianshu Hu;Paul Weng",
"authorids": "~Jianshu_Hu1;~Paul_Weng1",
"aff": "Shanghai Jiaotong University;Shanghai Jiaotong University",
"aff_domain": "sjtu.edu.cn;sjtu.edu.cn",
"position": "PhD student;Associate Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "7JVNhaMbZUu",
"title": "Particle-Based Score Estimation for State Space Model Learning in Autonomous Driving",
"track": "main",
"status": "Poster",
"keywords": "Autonomous Driving;Particle Filtering;Self-supervised Learning",
"primary_area": "",
"author": "Angad Singh;Omar Makhlouf;Maximilian Igl;Joao Messias;Arnaud Doucet;Shimon Whiteson",
"authorids": "~Angad_Singh2;makhlouf@waymo.com;~Maximilian_Igl1;messiasj@waymo.com;~Arnaud_Doucet2;~Shimon_Whiteson1",
"aff": "Waymo;Waymo;University of Oxford;University of Oxford",
"aff_domain": "waymo.com;waymo.com;ox.ac.uk;ox.ac.uk",
"position": "Researcher;Researcher;Full Professor;Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "7Nwds2LjN1s",
"title": "Learning Model Predictive Controllers with Real-Time Attention for Real-World Navigation",
"track": "main",
"status": "Poster",
"keywords": "Model Predictive Control;Transformers;Performers;Highly-Constrained Navigation;Social Navigation;Learning-based Control",
"primary_area": "",
"author": "Xuesu Xiao;Tingnan Zhang;Krzysztof Marcin Choromanski;Tsang-Wei Edward Lee;Anthony Francis;Jake Varley;Stephen Tu;Sumeet Singh;Peng Xu;Fei Xia;Sven Mikael Persson;Dmitry Kalashnikov;Leila Takayama;Roy Frostig;Jie Tan;Carolina Parada;Vikas Sindhwani",
"authorids": "~Xuesu_Xiao1;~Tingnan_Zhang1;~Krzysztof_Marcin_Choromanski1;~Tsang-Wei_Edward_Lee1;~Anthony_Francis1;~Jake_Varley1;~Stephen_Tu1;~Sumeet_Singh3;~Peng_Xu9;~Fei_Xia1;~Sven_Mikael_Persson1;~Dmitry_Kalashnikov1;~Leila_Takayama1;~Roy_Frostig1;~Jie_Tan1;~Carolina_Parada1;~Vikas_Sindhwani1",
"aff": "George Mason University;Google;Google Brain Robotics & Columbia University;Google;Google;Google Brain Robotics;Google;Google;Google;Google;University of California, Santa Cruz;Google;Google;Google;Google",
"aff_domain": "gmu.edu;google.com;columbia.edu;google.com;google.com;google.com;google.com;google.com;google.com;google.com;ucsc.edu;google.com;google.com;google.com;google.com",
"position": "Assistant Professor;Software Engineer;research scientist & adjunct assistant professor;Engineer;Researcher;Researcher;Researcher;Researcher;Researcher;Researcher;Associate Professor;Research scientist;Research Scientist;Senior Staff Research Scientist;Researcher",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 8,
"authors#_avg": 17,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "7RyzGWLk79H",
"title": "When the Sun Goes Down: Repairing Photometric Losses for All-Day Depth Estimation",
"track": "main",
"status": "Poster",
"keywords": "All day depth estimation;3D reconstruction;Photometric losses",
"primary_area": "",
"author": "Madhu Vankadari;Stuart Golodetz;Sourav Garg;Sangyun Shin;Andrew Markham;Niki Trigoni",
"authorids": "~Madhu_Vankadari1;~Stuart_Golodetz4;~Sourav_Garg1;sangyun.shin@cs.ox.ac.uk;~Andrew_Markham2;~Niki_Trigoni1",
"aff": "Department of Computer Science, University of Oxford;Department of Computer Science, University of Oxford;Queensland University of Technology;University of Oxford;University of Oxford",
"aff_domain": "cs.ox.ac.uk;cs.ox.ac.uk;qut.edu.au;ox.ac.uk;ox.ac.uk",
"position": "PhD student;Postdoc;Postdoc;Associate Professor;Full Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "7ZcePvChS7u",
"title": "Human-Robot Commensality: Bite Timing Prediction for Robot-Assisted Feeding in Groups",
"track": "main",
"status": "Poster",
"keywords": "Multimodal Learning;HRI;Assistive Robotics;Group Dynamics",
"primary_area": "",
"author": "Jan Ondras;Abrar Anwar;Tong Wu;Fanjun Bu;Malte Jung;Jorge Jose Ortiz;Tapomayukh Bhattacharjee",
"authorids": "~Jan_Ondras1;~Abrar_Anwar1;~Tong_Wu7;~Fanjun_Bu1;~Malte_Jung1;~Jorge_Jose_Ortiz1;~Tapomayukh_Bhattacharjee1",
"aff": "University of Oxford;Cornell University;Rutgers University;Cornell University;Cornell University;Rutgers University;Cornell University",
"aff_domain": "oxford.ac.uk;cornell.edu;rutgers.edu;cornell.edu;cornell.edu;rutgers.edu;cornell.edu",
"position": "MS student;Visiting Scholar;PhD student;PhD student;Associate Professor;Assistant Professor;Assistant Professor",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 22,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "8-8e18idYLD",
"title": "Online Dynamics Learning for Predictive Control with an Application to Aerial Robots",
"track": "main",
"status": "Poster",
"keywords": "Online Learning;Model Learning;Model Predictive Control;Aerial Robotics",
"primary_area": "",
"author": "Tom Z. Jiahao;Kong Yao Chee;M. Ani Hsieh",
"authorids": "~Tom_Z._Jiahao1;~Kong_Yao_Chee1;~M._Ani_Hsieh1",
"aff": "University of Pennsylvania;School of Engineering and Applied Science, University of Pennsylvania",
"aff_domain": "seas.upenn.edu;seas.upenn.edu",
"position": "PhD student;PhD student",
"rating": "1;6;6;10",
"confidence": "",
"rating_avg": 5.75,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "80vpxjt3vq",
"title": "PlanT: Explainable Planning Transformers via Object-Level Representations",
"track": "main",
"status": "Poster",
"keywords": "Autonomous Driving;Transformers;Explainability",
"primary_area": "",
"author": "Katrin Renz;Kashyap Chitta;Otniel-Bogdan Mercea;A. Sophia Koepke;Zeynep Akata;Andreas Geiger",
"authorids": "~Katrin_Renz1;~Kashyap_Chitta1;~Otniel-Bogdan_Mercea1;~A._Sophia_Koepke1;~Zeynep_Akata1;~Andreas_Geiger3",
"aff": "University of T\u00fcbingen;University of T\u00fcbingen;University of Tuebingen;University of T\u00fcbingen;University of Tuebingen;Eberhard-Karls-Universit\u00e4t T\u00fcbingen",
"aff_domain": "uni-tuebingen.de;uni-tuebingen.de;uni-tuebingen.de;uni-tuebingen.de;uni-tuebingen.de;uni-tuebingen.de",
"position": "PhD student;PhD student;Postdoc;Full Professor;Professor;PhD student",
"rating": "1;6;6;10",
"confidence": "",
"rating_avg": 5.75,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "8ktEdb5NHEh",
"title": "Learning Sampling Distributions for Model Predictive Control",
"track": "main",
"status": "Poster",
"keywords": "Model Predictive Control;Normalizing Flows",
"primary_area": "",
"author": "Jacob Sacks;Byron Boots",
"authorids": "~Jacob_Sacks1;~Byron_Boots1",
"aff": "Department of Computer Science, University of Washington;University of Washington",
"aff_domain": "cs.washington.edu;washington.edu",
"position": "PhD student;Associate Professor",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 7,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "8tmKW-NG2bH",
"title": "Learning Goal-Conditioned Policies Offline with Self-Supervised Reward Shaping",
"track": "main",
"status": "Poster",
"keywords": "Offline Reinforcement Learning;Self-Supervised Learning;Goal-Conditioned RL",
"primary_area": "",
"author": "Lina Mezghani;Sainbayar Sukhbaatar;Piotr Bojanowski;Alessandro Lazaric;Karteek Alahari",
"authorids": "~Lina_Mezghani1;~Sainbayar_Sukhbaatar1;~Piotr_Bojanowski1;~Alessandro_Lazaric2;~Karteek_Alahari1",
"aff": "Meta AI;Meta Facebook;Meta;Meta Facebook;Inria",
"aff_domain": "meta.com;fb.com;meta.com;fb.com;inria.fr",
"position": "PhD student;Research Scientist;Researcher;Research Scientist;Tenured researcher (eq. Asso. prof.)",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "A12nd105kFr",
"title": "Learning Diverse and Physically Feasible Dexterous Grasps with Generative Model and Bilevel Optimization",
"track": "main",
"status": "Poster",
"keywords": "dexterous grasping;grasp planning;bilevel optimization;generative model",
"primary_area": "",
"author": "Albert Wu;Michelle Guo;Karen Liu",
"authorids": "~Albert_Wu2;~Michelle_Guo1;~Karen_Liu1",
"aff": "Computer Science Department, Stanford University",
"aff_domain": "cs.stanford.edu",
"position": "PhD student",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "A5l7wE2uqtM",
"title": "BusyBot: Learning to Interact, Reason, and Plan in a BusyBoard Environment",
"track": "main",
"status": "Poster",
"keywords": "Manipulation;Scene Understanding;Learning Environment",
"primary_area": "",
"author": "Zeyi Liu;Zhenjia Xu;Shuran Song",
"authorids": "~Zeyi_Liu1;~Zhenjia_Xu1;~Shuran_Song3",
"aff": "Columbia University;Columbia University;Columbia University",
"aff_domain": "columbia.edu;columbia.edu;cs.columbia.edu",
"position": "Undergrad student;PhD student;Assistant Professor",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "AdFROt9BoqE",
"title": "Cross-Domain Transfer via Semantic Skill Imitation",
"track": "main",
"status": "Poster",
"keywords": "Reinforcement Learning;Imitation;Transfer Learning",
"primary_area": "",
"author": "Karl Pertsch;Ruta Desai;Vikash Kumar;Franziska Meier;Joseph J Lim;Dhruv Batra;Akshara Rai",
"authorids": "~Karl_Pertsch1;~Ruta_Desai1;~Vikash_Kumar2;~Franziska_Meier2;~Joseph_J_Lim1;~Dhruv_Batra1;~Akshara_Rai1",
"aff": "University of Southern California;Meta Facebook;Korea Advanced Institute of Science & Technology;FAIR, Meta;Facebook AI Research;Meta, FAIR",
"aff_domain": "usc.edu;facebook.com;kaist.ac.kr;meta.com;fb.com;meta.com",
"position": "PhD student;Researcher;Associate Professor;Researcher;Researcher;Researcher",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Ag-vOezQ0Gw",
"title": "ROS-PyBullet Interface: A Framework for Reliable Contact Simulation and Human-Robot Interaction",
"track": "main",
"status": "Poster",
"keywords": "Contact-rich Simulation;Manipulation;Teleoperation;Human-Robot Interaction",
"primary_area": "",
"author": "Christopher Mower;Theodoros Stouraitis;Jo\u00e3o Moura;Christian Rauch;Lei Yan;Nazanin Zamani Behabadi;Michael Gienger;Tom Vercauteren;Christos Bergeles;Sethu Vijayakumar",
"authorids": "~Christopher_Mower1;theostou@honda-ri.de;joao.moura@ed.ac.uk;christian.rauch@ed.ac.uk;lei.yan@ed.ac.uk;naz.zamani.b@gmail.com;~Michael_Gienger1;~Tom_Vercauteren1;christos.bergeles@kcl.ac.uk;sethu.vijayakumar@ed.ac.uk",
"aff": "University College London (UCL)",
"aff_domain": "ucl.ac.uk",
"position": "Associate Professor",
"rating": "6;6;10",
"confidence": "",
"rating_avg": 7.333333333333333,
"confidence_avg": 0,
"replies_avg": 8,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "AmPeAFzU3a4",
"title": "MIRA: Mental Imagery for Robotic Affordances",
"track": "main",
"status": "Poster",
"keywords": "Neural Radiance Fields;Rearrangement;Robotic Manipulation",
"primary_area": "",
"author": "Yen-Chen Lin;Pete Florence;Andy Zeng;Jonathan T. Barron;Yilun Du;Wei-Chiu Ma;Anthony Simeonov;Alberto Rodriguez Garcia;Phillip Isola",
"authorids": "~Yen-Chen_Lin1;~Pete_Florence1;~Andy_Zeng3;~Jonathan_T._Barron1;~Yilun_Du1;~Wei-Chiu_Ma1;~Anthony_Simeonov1;~Alberto_Rodriguez_Garcia1;~Phillip_Isola1",
"aff": "Massachusetts Institute of Technology;Google;Massachusetts Institute of Technology;Massachusetts Institute of Technology;NVIDIA;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Google;Google",
"aff_domain": "mit.edu;google.com;mit.edu;mit.edu;nvidia.com;mit.edu;mit.edu;google.com;google.com",
"position": "PhD student;Research Scientist;PhD student;PhD student;Intern;Associate Professor;Assistant Professor;Research Scientist;Research Scientist",
"rating": "4;6;10",
"confidence": "",
"rating_avg": 6.666666666666667,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 9,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Bf6on28H0Jv",
"title": "Masked World Models for Visual Control",
"track": "main",
"status": "Poster",
"keywords": "Visual model-based RL;World models",
"primary_area": "",
"author": "Younggyo Seo;Danijar Hafner;Hao Liu;Fangchen Liu;Stephen James;Kimin Lee;Pieter Abbeel",
"authorids": "~Younggyo_Seo1;~Danijar_Hafner1;~Hao_Liu1;~Fangchen_Liu2;~Stephen_James1;~Kimin_Lee1;~Pieter_Abbeel2",
"aff": "University of California, Berkeley;University of Toronto;University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;Covariant;University of California, Berkeley",
"aff_domain": "berkeley.edu;cs.toronto;berkeley.edu;berkeley.edu;berkeley.edu;covariant.ai;berkeley.edu",
"position": "Intern;PhD student;PhD student;Postdoc;Postdoc;Founder;PhD student",
"rating": "4;6;6;6;6",
"confidence": "",
"rating_avg": 5.6,
"confidence_avg": 0,
"replies_avg": 20,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "BxHcg_Zlpxj",
"title": "Rethinking Sim2Real: Lower Fidelity Simulation Leads to Higher Sim2Real Transfer in Navigation",
"track": "main",
"status": "Poster",
"keywords": "Sim2Real;Deep Reinforcement Learning;Visual-Based Navigation",
"primary_area": "",
"author": "Joanne Truong;Max Rudolph;Naoki Harrison Yokoyama;Sonia Chernova;Dhruv Batra;Akshara Rai",
"authorids": "~Joanne_Truong1;~Max_Rudolph1;~Naoki_Harrison_Yokoyama1;~Sonia_Chernova2;~Dhruv_Batra1;~Akshara_Rai1",
"aff": "University of Texas at Austin;Georgia Institute of Technology;Georgia Institute of Technology;FAIR, Meta;Facebook AI Research",
"aff_domain": "utexas.edu;gatech.edu;gatech.edu;meta.com;fb.com",
"position": "PhD student;PhD student;Associate Professor;Researcher;Researcher",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Bxr45keYrf",
"title": "Evo-NeRF: Evolving NeRF for Sequential Robot Grasping of Transparent Objects",
"track": "main",
"status": "Oral",
"keywords": "NeRF;grasping;transparent objects;speed",
"primary_area": "",
"author": "Justin Kerr;Letian Fu;Huang Huang;Yahav Avigal;Matthew Tancik;Jeffrey Ichnowski;Angjoo Kanazawa;Ken Goldberg",
"authorids": "~Justin_Kerr1;~Letian_Fu1;~Huang_Huang1;~Yahav_Avigal1;~Matthew_Tancik1;~Jeffrey_Ichnowski1;~Angjoo_Kanazawa1;~Ken_Goldberg1",
"aff": "University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;University of California, Berkeley",
"aff_domain": "berkeley.edu;berkeley.edu;berkeley.edu;berkeley.edu;berkeley.edu;berkeley.edu;berkeley.edu;berkeley.edu",
"position": "PhD student;Undergrad student;PhD student;PhD student;PhD student;Postdoc;Assistant Professor;Full Professor",
"rating": "6;6;10",
"confidence": "",
"rating_avg": 7.333333333333333,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 8,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "CC4JMO4dzg",
"title": "Learning Preconditions of Hybrid Force-Velocity Controllers for Contact-Rich Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Contact-Rich Manipulation;Hybrid Force-Velocity Controllers;Precondition Learning",
"primary_area": "",
"author": "Jacky Liang;Xianyi Cheng;Oliver Kroemer",
"authorids": "~Jacky_Liang1;xianyic@cmu.edu;~Oliver_Kroemer1",
"aff": "Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "cmu.edu;cmu.edu",
"position": "PhD student;Assistant Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 19,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "DE8rdNuGj_7",
"title": "LEADER: Learning Attention over Driving Behaviors for Planning under Uncertainty",
"track": "main",
"status": "Oral",
"keywords": "Planning under uncertainty;Integrating planning and learning;Autonomous driving",
"primary_area": "",
"author": "Mohamad Hosein Danesh;Panpan Cai;David Hsu",
"authorids": "~Mohamad_Hosein_Danesh1;~Panpan_Cai1;~David_Hsu1",
"aff": "National University of Singapore;National University of Singapore",
"aff_domain": "nus.edu.sg;nus.edu.sg",
"position": "Postdoc;Professor",
"rating": "6;6;6;10;10",
"confidence": "",
"rating_avg": 7.6,
"confidence_avg": 0,
"replies_avg": 29,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "DLkubm-dq-y",
"title": "Learning Road Scene-level Representations via Semantic Region Prediction",
"track": "main",
"status": "Poster",
"keywords": "Semantic Region Prediction;Egocentric Vision;Driver Intent;Risk Object Identification",
"primary_area": "",
"author": "Zihao Xiao;Alan Yuille;Yi-Ting Chen",
"authorids": "~Zihao_Xiao2;~Alan_Yuille1;~Yi-Ting_Chen2",
"aff": "Johns Hopkins University;Johns Hopkins University;National Yang Ming Chiao Tung University",
"aff_domain": "jhu.edu;johnshopkins.edu;nycu.edu.tw",
"position": "PhD student;Full Professor;Assistant Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "ED0G14V3WeH",
"title": "Data-Efficient Model Learning for Control with Jacobian-Regularized Dynamic-Mode Decomposition",
"track": "main",
"status": "Poster",
"keywords": "Koopman;learning;model-predictive control;optimal control",
"primary_area": "",
"author": "Brian Edward Jackson;Jeong Hun Lee;Kevin Tracy;Zachary Manchester",
"authorids": "~Brian_Edward_Jackson1;jeonghunlee@cmu.edu;ktracy@cmu.edu;~Zachary_Manchester1",
"aff": "Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "andrew.cmu.edu;cmu.edu",
"position": "PhD student;Assistant Professor",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 22,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "EVFrjBgYsPZ",
"title": "ROAD: Learning an Implicit Recursive Octree Auto-Decoder to Efficiently Encode 3D Shapes",
"track": "main",
"status": "Poster",
"keywords": "Implicit shape representations;Reconstruction;Data compression",
"primary_area": "",
"author": "Sergey Zakharov;Rares Andrei Ambrus;Katherine Liu;Adrien Gaidon",
"authorids": "~Sergey_Zakharov1;~Rares_Andrei_Ambrus1;~Katherine_Liu1;~Adrien_Gaidon1",
"aff": "Toyota Research Institute;Toyota Research Institute;Toyota Research Institute;Toyota Research Institute (TRI)",
"aff_domain": "tri.global;tri.global;tri.global;tri.global",
"position": "Researcher;Researcher;Researcher;Head of ML",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Eal_lL08v_l",
"title": "Transformers Are Adaptable Task Planners",
"track": "main",
"status": "Poster",
"keywords": "Task Planning;Prompt;Preferences;Object-centric Representation",
"primary_area": "",
"author": "Vidhi Jain;Yixin Lin;Eric Undersander;Yonatan Bisk;Akshara Rai",
"authorids": "~Vidhi_Jain2;~Yixin_Lin1;~Eric_Undersander2;~Yonatan_Bisk1;~Akshara_Rai1",
"aff": "Meta Facebook;Facebook AI Research;Meta ;Carnegie Mellon University;Facebook AI Research",
"aff_domain": "fb.com;facebook.com;meta.com;cmu.edu;fb.com",
"position": "AI resident;Research engineer;Research Engineer;Assistant Professor;Researcher",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Ef7xodOrgNW",
"title": "Lyapunov Design for Robust and Efficient Robotic Reinforcement Learning",
"track": "main",
"status": "Poster",
"keywords": "Reinforcement Learning;Control Lyapunov Functions;Stability;Robustness",
"primary_area": "",
"author": "Tyler Westenbroek;Fernando Castaneda;Ayush Agrawal;Shankar Sastry;Koushil Sreenath",
"authorids": "~Tyler_Westenbroek1;fcastaneda@berkeley.edu;~Ayush_Agrawal1;~Shankar_Sastry1;~Koushil_Sreenath1",
"aff": "University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;University of California, Berkeley",
"aff_domain": "berkeley.edu;berkeley.edu;berkeley.edu;berkeley.edu",
"position": "PhD student;PhD student;Assistant Professor;Full Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "F6iq9FU2xnc",
"title": "Towards Long-Tailed 3D Detection",
"track": "main",
"status": "Poster",
"keywords": "Autonomous Vehicles;Long-Tailed 3D Detection;Multimodal Fusion",
"primary_area": "",
"author": "Neehar Peri;Achal Dave;Deva Ramanan;Shu Kong",
"authorids": "~Neehar_Peri1;~Achal_Dave1;~Deva_Ramanan1;~Shu_Kong1",
"aff": "Carnegie Mellon University;Amazon;School of Computer Science, Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "cmu.edu;amazon.com;cs.cmu.edu;cmu.edu",
"position": "PhD student;Researcher;Full Professor;Postdoc Fellow",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 21,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "GS8xD_elvgC",
"title": "VIRDO++: Real-World, Visuo-tactile Dynamics and Perception of Deformable Objects",
"track": "main",
"status": "Poster",
"keywords": "Deformable Object Manipulation;Multimodal Representation Learning",
"primary_area": "",
"author": "Youngsun Wi;Andy Zeng;Pete Florence;Nima Fazeli",
"authorids": "~Youngsun_Wi1;~Andy_Zeng3;~Pete_Florence1;~Nima_Fazeli1",
"aff": "University of Michigan;Google;University of Michigan;Google",
"aff_domain": "umich.edu;google.com;umich.edu;google.com",
"position": "PhD student;Research Scientist;Assistant Professor;Research Scientist",
"rating": "1;4;6;6",
"confidence": "",
"rating_avg": 4.25,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "GTyBkq36tjx",
"title": "Neural Geometric Fabrics: Efficiently Learning High-Dimensional Policies from Demonstration",
"track": "main",
"status": "Poster",
"keywords": "Imitation Learning;Dexterous Manipulation",
"primary_area": "",
"author": "Mandy Xie;Ankur Handa;Stephen Tyree;Dieter Fox;Harish Ravichandar;Nathan D. Ratliff;Karl Van Wyk",
"authorids": "~Mandy_Xie1;~Ankur_Handa1;~Stephen_Tyree1;~Dieter_Fox1;~Harish_Ravichandar1;~Nathan_D._Ratliff1;~Karl_Van_Wyk1",
"aff": "Georgia Institute of Technology;Imperial College London;NVIDIA;Department of Computer Science;Georgia Institute of Technology;NVIDIA",
"aff_domain": "gatech.edu;imperial.ac.uk;nvidia.com;cs.washington.edu;gatech.edu;nvidia.com",
"position": "PhD student;Research Scientist;Research scientist;Full Professor;Researcher;Researcher",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 21,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "GeM6VUwYinO",
"title": "One-Shot Transfer of Affordance Regions? AffCorrs!",
"track": "main",
"status": "Poster",
"keywords": "One-shot;Affordance;Correspondence",
"primary_area": "",
"author": "Denis Hadjivelichkov;Sicelukwanda Zwane;Lourdes Agapito;Marc Peter Deisenroth;Dimitrios Kanoulas",
"authorids": "~Denis_Hadjivelichkov1;sicelukwanda.zwane@gmail.com;~Lourdes_Agapito1;~Marc_Peter_Deisenroth1;~Dimitrios_Kanoulas1",
"aff": "University College London;University College London;University College London",
"aff_domain": "ucl.ac.uk;ucl.ac.uk;ucl.ac.uk",
"position": "PhD student;Assistant Professor;Full Professor",
"rating": "4;4;6;10",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Go64YOmGwxM",
"title": "TRITON: Neural Neural Textures for Better Sim2Real",
"track": "main",
"status": "Poster",
"keywords": "differentiable rendering;sim2real;image translation",
"primary_area": "",
"author": "Ryan D Burgert;Jinghuan Shang;Xiang Li;Michael S Ryoo",
"authorids": "rburgert@cs.stonybrook.edu;~Jinghuan_Shang1;~Xiang_Li27;~Michael_S_Ryoo1",
"aff": "Department of Computer Science, State University of New York, Stony Brook;Google DeepMind",
"aff_domain": "cs.stonybrook.edu;google.com",
"position": "PhD student;Research Scientist",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "H6rr_CGzV9y",
"title": "A Dual Representation Framework for Robot Learning with Human Guidance",
"track": "main",
"status": "Poster",
"keywords": "Human Guidance;Evaluative Feedback;Preference Learning",
"primary_area": "",
"author": "Ruohan Zhang;Dhruva Bansal;Yilun Hao;Ayano Hiranaka;Jialu Gao;Chen Wang;Roberto Mart\u00edn-Mart\u00edn;Li Fei-Fei;Jiajun Wu",
"authorids": "~Ruohan_Zhang1;~Dhruva_Bansal1;~Yilun_Hao1;~Ayano_Hiranaka1;~Jialu_Gao1;~Chen_Wang16;~Roberto_Mart\u00edn-Mart\u00edn1;~Li_Fei-Fei1;~Jiajun_Wu1",
"aff": "Stanford University;Stanford University;Stanford University;Tsinghua University;Computer Science Department, Stanford University;SalesForce.com;Stanford University;Stanford University",
"aff_domain": "stanford.edu;stanford.edu;stanford.edu;cs.tsinghua.edu.cn;cs.stanford.edu;salesforce.com;stanford.edu;stanford.edu",
"position": "Postdoc;MS student;MS student;Undergrad student;PhD student;Researcher;Full Professor;Assistant Professor",
"rating": "1;6;6;6",
"confidence": "",
"rating_avg": 4.75,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 9,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "HbGgF93Ppoy",
"title": "Inferring Smooth Control: Monte Carlo Posterior Policy Iteration with Gaussian Processes",
"track": "main",
"status": "Oral",
"keywords": "model predictive control;policy search;reinforcement learning;approximate inference",
"primary_area": "",
"author": "Joe Watson;Jan Peters",
"authorids": "~Joe_Watson1;~Jan_Peters3",
"aff": "TU Darmstadt;TU Darmstadt",
"aff_domain": "tu-darmstadt.de;tu-darmstadt.de",
"position": "PhD student;Full Professor",
"rating": "4;6;10;10",
"confidence": "",
"rating_avg": 7.5,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "IKC5TfXLuW0",
"title": "Few-Shot Preference Learning for Human-in-the-Loop RL",
"track": "main",
"status": "Poster",
"keywords": "preference learning;interactive learning;multi-task learning;human-in-the-loop",
"primary_area": "",
"author": "Donald Joseph Hejna III;Dorsa Sadigh",
"authorids": "~Donald_Joseph_Hejna_III1;~Dorsa_Sadigh1",
"aff": "Stanford University;Stanford University",
"aff_domain": "stanford.edu;stanford.edu",
"position": "PhD student;Assistant Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 28,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "JErNvd_lKHr",
"title": "Verified Path Following Using Neural Control Lyapunov Functions",
"track": "main",
"status": "Poster",
"keywords": "Path Following;Trajectory Tracking;Control Lyapunov Functions;Plan Execution;Verified Autonomy",
"primary_area": "",
"author": "Alec Reed;Guillaume O Berger;Sriram Sankaranarayanan;Chris Heckman",
"authorids": "~Alec_Reed1;~Guillaume_O_Berger1;~Sriram_Sankaranarayanan1;~Chris_Heckman1",
"aff": "University of Colorado at Boulder;University of Colorado at Boulder;University of Colorado at Boulder;Amazon",
"aff_domain": "cs.colorado.edu;colorado.edu;colorado.edu;amazon.com",
"position": "PhD student;Postdoc;Full Professor;Researcher",
"rating": "4;4;4;6",
"confidence": "",
"rating_avg": 4.5,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "JWROnOf4w-K",
"title": "MidasTouch: Monte-Carlo inference over distributions across sliding touch",
"track": "main",
"status": "Oral",
"keywords": "Tactile perception;Localization;3D deep learning",
"primary_area": "",
"author": "Sudharshan Suresh;Zilin Si;Stuart Anderson;Michael Kaess;Mustafa Mukadam",
"authorids": "~Sudharshan_Suresh1;zsi@andrew.cmu.edu;~Stuart_Anderson1;~Michael_Kaess1;~Mustafa_Mukadam1",
"aff": "Carnegie Mellon University;Meta;Carnegie Mellon University;Meta AI",
"aff_domain": "cmu.edu;meta.com;cmu.edu;meta.com",
"position": "PhD student;Researcher;Associate Professor;Research Scientist",
"rating": "1;6;10;10",
"confidence": "",
"rating_avg": 6.75,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "JqqSTgdQ85F",
"title": "Visuo-Tactile Transformers for Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Multimodal Learning;Reinforcement Learning;Manipulation",
"primary_area": "",
"author": "Yizhou Chen;Mark Van der Merwe;Andrea Sipos;Nima Fazeli",
"authorids": "~Yizhou_Chen4;~Mark_Van_der_Merwe1;asipos@umich.edu;~Nima_Fazeli1",
"aff": "University of Michigan - Ann Arbor;University of Michigan - Ann Arbor;University of Michigan",
"aff_domain": "umich.edu;umich.edu;umich.edu",
"position": "MS student;PhD student;Assistant Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "JtK7F6D8t-3",
"title": "Learning Semantics-Aware Locomotion Skills from Human Demonstration",
"track": "main",
"status": "Poster",
"keywords": "Legged Locomotion;Semantic Perception;Imitation Learning;Hierarchical Control",
"primary_area": "",
"author": "Yuxiang Yang;Xiangyun Meng;Wenhao Yu;Tingnan Zhang;Jie Tan;Byron Boots",
"authorids": "~Yuxiang_Yang2;~Xiangyun_Meng1;~Wenhao_Yu1;~Tingnan_Zhang1;~Jie_Tan1;~Byron_Boots1",
"aff": "Google;University of Washington;Google;Google;Google;University of Washington",
"aff_domain": "google.com;washington.edu;google.com;google.com;google.com;washington.edu",
"position": "Researcher;PhD student;Software Engineer;Software Engineer;Research Scientist;Associate Professor",
"rating": "4;6;10;10",
"confidence": "",
"rating_avg": 7.5,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "K0gW0A6gi7G",
"title": "Learning Visualization Policies of Augmented Reality for Human-Robot Collaboration",
"track": "main",
"status": "Poster",
"keywords": "Augmented Reality;Multi-robot systems;Imitation Learning",
"primary_area": "",
"author": "Kishan Dhananjay Chandan;Jack Albertson;Shiqi Zhang",
"authorids": "~Kishan_Dhananjay_Chandan1;jalbert5@binghamton.edu;~Shiqi_Zhang1",
"aff": "State University of New York at Binghamton;State University of New York at Binghamton",
"aff_domain": "binghamton.edu;binghamton.edu",
"position": "PhD student;Assistant Professor",
"rating": "4;6;6",
"confidence": "",
"rating_avg": 5.333333333333333,
"confidence_avg": 0,
"replies_avg": 4,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "K8W6ObPZQyh",
"title": "On-Robot Learning With Equivariant Models",
"track": "main",
"status": "Poster",
"keywords": "Manipulation;Reinforcement Learning;Equivariance",
"primary_area": "",
"author": "Dian Wang;Mingxi Jia;Xupeng Zhu;Robin Walters;Robert Platt",
"authorids": "~Dian_Wang1;~Mingxi_Jia1;~Xupeng_Zhu1;~Robin_Walters1;~Robert_Platt1",
"aff": "Northeastern University;Northeastern University;Northeastern University;Northeastern University ;Northeastern University",
"aff_domain": "northeastern.edu;northeastern.edu;northeastern.edu;northeastern.edu;neu.edu",
"position": "PhD student;MS student;PhD student;Assistant Professor;Associate Professor",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "KDuBFXyRuE-",
"title": "Iterative Interactive Modeling for Knotting Plastic Bags",
"track": "main",
"status": "Poster",
"keywords": "Plastic Bag Manipulation;Learning from Demonstrations",
"primary_area": "",
"author": "Chongkai Gao;Zekun Li;Haichuan Gao;Feng Chen",
"authorids": "~Chongkai_Gao1;~Zekun_Li5;~Haichuan_Gao1;~Feng_Chen1",
"aff": "Tsinghua University;Tsinghua University;Tsinghua University;Tsinghua University",
"aff_domain": "tsinghua.edu.cn;tsinghua.edu.cn;mails.tsinghua.edu.cn;tsinghua.edu.cn",
"position": "MS student;MS student;PhD student;Full Professor",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "KWCZfuqshd",
"title": "Real-World Robot Learning with Masked Visual Pre-training",
"track": "main",
"status": "Oral",
"keywords": "Self-Supervised Learning;Visual Representations;Robot Learning",
"primary_area": "",
"author": "Ilija Radosavovic;Tete Xiao;Stephen James;Pieter Abbeel;Jitendra Malik;Trevor Darrell",
"authorids": "~Ilija_Radosavovic1;~Tete_Xiao1;~Stephen_James1;~Pieter_Abbeel2;~Jitendra_Malik2;~Trevor_Darrell2",
"aff": "University of California, Berkeley;Facebook AI Research;University of California, Berkeley;Covariant;University of California, Berkeley;Electrical Engineering & Computer Science Department",
"aff_domain": "berkeley.edu;facebook.com;berkeley.edu;covariant.ai;berkeley.edu;eecs.berkeley.edu",
"position": "PhD student;Researcher;Postdoc;Founder;Full Professor;Professor",
"rating": "6;10;10;10",
"confidence": "",
"rating_avg": 9.0,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "KXkzplx6H2K",
"title": "Socially-Attentive Policy Optimization in Multi-Agent Self-Driving System",
"track": "main",
"status": "Poster",
"keywords": "self-driving;social preference;multi-agent;reinforcement learning",
"primary_area": "",
"author": "Zipeng Dai;Tianze Zhou;Kun Shao;David Henry Mguni;Bin Wang;Jianye HAO",
"authorids": "~Zipeng_Dai1;~Tianze_Zhou1;~Kun_Shao1;~David_Henry_Mguni1;~Bin_Wang12;~Jianye_HAO1",
"aff": "Beijing Institute of Technology;Queen Mary University, London;Huawei Noah's Ark Lab;Tianjin University;Beijing Institute of Technology",
"aff_domain": "bit.edu.cn;qmul.ac.uk;huawei.com;tju.edu.cn;bit.edu.cn",
"position": "PhD student;Lecturer;Senior Researcher;Associate Professor;MS student",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 27,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "KwdUWypQ5gC",
"title": "Bayesian Reinforcement Learning for Single-Episode Missions in Partially Unknown Environments",
"track": "main",
"status": "Poster",
"keywords": "Planning under Uncertainty;Gaussian Processes;Single-Episode Bayesian Reinforcement Learning",
"primary_area": "",
"author": "Matthew Budd;Paul Duckworth;Nick Hawes;Bruno Lacerda",
"authorids": "~Matthew_Budd1;~Paul_Duckworth1;~Nick_Hawes1;~Bruno_Lacerda1",
"aff": "University of Oxford;University of Oxford;University of Oxford;University of Oxford",
"aff_domain": "ox.ac.uk;robots.ox.ac.uk;ox.ac.uk;ox.ac.uk",
"position": "PhD student;Postdoc;Associate Professor;Senior Researcher",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "L8hCfhPbFho",
"title": "VIOLA: Object-Centric Imitation Learning for Vision-Based Robot Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Imitation Learning;Robot Manipulation;Object-Centric Representation",
"primary_area": "",
"author": "Yifeng Zhu;Abhishek Joshi;Peter Stone;Yuke Zhu",
"authorids": "~Yifeng_Zhu2;~Abhishek_Joshi1;~Peter_Stone1;~Yuke_Zhu1",
"aff": "The University of Texas at Austin;University of Texas at Austin;University of Texas, Austin;Computer Science Department, University of Texas, Austin",
"aff_domain": "utexas.edu;utexas.edu;utexas.edu;cs.utexas.edu",
"position": "PhD student;Undergrad student;Full Professor;Assistant Professor",
"rating": "4;4;6;10",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 20,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "LunGpKUNIR",
"title": "SE(3)-Equivariant Relational Rearrangement with Neural Descriptor Fields",
"track": "main",
"status": "Poster",
"keywords": "Neural Fields;Relations;Manipulation;Object Rearrangement",
"primary_area": "",
"author": "Anthony Simeonov;Yilun Du;Yen-Chen Lin;Alberto Rodriguez Garcia;Leslie Pack Kaelbling;Tom\u00e1s Lozano-P\u00e9rez;Pulkit Agrawal",
"authorids": "~Anthony_Simeonov1;~Yilun_Du1;~Yen-Chen_Lin1;~Alberto_Rodriguez_Garcia1;~Leslie_Pack_Kaelbling1;~Tom\u00e1s_Lozano-P\u00e9rez1;~Pulkit_Agrawal1",
"aff": "NVIDIA;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology",
"aff_domain": "nvidia.com;mit.edu;mit.edu;mit.edu;mit.edu;mit.edu;mit.edu",
"position": "Intern;PhD student;PhD student;Associate Professor;Full Professor;Full Professor;Assistant Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "MUcBYHjzqp7",
"title": "Transferring Hierarchical Structures with Dual Meta Imitation Learning",
"track": "main",
"status": "Poster",
"keywords": "Hierarchical Imitation Learning;Meta Learning",
"primary_area": "",
"author": "Chongkai Gao;Yizhou Jiang;Feng Chen",
"authorids": "~Chongkai_Gao1;~Yizhou_Jiang1;~Feng_Chen1",
"aff": "Tsinghua University;Tsinghua University;Tsinghua University",
"aff_domain": "tsinghua.edu.cn;tsinghua.edu.cn;tsinghua.edu.cn",
"position": "MS student;PhD student;Full Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "MoSC0pziRd",
"title": "Fleet-DAgger: Interactive Robot Fleet Learning with Scalable Human Supervision",
"track": "main",
"status": "Oral",
"keywords": "Fleet Learning;Interactive Learning;Human Robot Interaction",
"primary_area": "",
"author": "Ryan Hoque;Lawrence Yunliang Chen;Satvik Sharma;Karthik Dharmarajan;Brijen Thananjeyan;Pieter Abbeel;Ken Goldberg",
"authorids": "~Ryan_Hoque1;yunliang.chen@berkeley.edu;satvik.sharma@berkeley.edu;~Karthik_Dharmarajan1;~Brijen_Thananjeyan1;~Pieter_Abbeel2;~Ken_Goldberg1",
"aff": "University of California, Berkeley;Electrical Engineering & Computer Science Department, University of California, Berkeley;University of California, Berkeley;Covariant;University of California, Berkeley",
"aff_domain": "berkeley.edu;eecs.berkeley.edu;berkeley.edu;covariant.ai;berkeley.edu",
"position": "PhD student;Undergrad student;PhD student;Founder;Full Professor",
"rating": "6;10;10;10",
"confidence": "",
"rating_avg": 9.0,
"confidence_avg": 0,
"replies_avg": 17,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Mp3Y5jd7rnW",
"title": "CADSim: Robust and Scalable in-the-wild 3D Reconstruction for Controllable Sensor Simulation",
"track": "main",
"status": "Poster",
"keywords": "3D Reconstruction;CAD models;Sensor Simulation;Self-Driving",
"primary_area": "",
"author": "Jingkang Wang;Sivabalan Manivasagam;Yun Chen;Ze Yang;Ioan Andrei B\u00e2rsan;Anqi Joyce Yang;Wei-Chiu Ma;Raquel Urtasun",
"authorids": "~Jingkang_Wang1;~Sivabalan_Manivasagam1;~Yun_Chen3;~Ze_Yang5;~Ioan_Andrei_B\u00e2rsan1;~Anqi_Joyce_Yang1;~Wei-Chiu_Ma1;~Raquel_Urtasun1",
"aff": "University of Toronto;Waabi Innovation Inc.;Waabi Innovation Inc;Massachusetts Institute of Technology;Department of Computer Science, University of Toronto;University of Toronto;Department of Computer Science, University of Toronto",
"aff_domain": "toronto.edu;waabi.ai;waabi.ai;mit.edu;cs.toronto.edu;toronto.edu;cs.toronto.edu",
"position": "PhD student;Researcher;Researcher;PhD student;Full Professor;PhD student;PhD student",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 8,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Mzqn__AxyA6",
"title": "Inferring Versatile Behavior from Demonstrations by Matching Geometric Descriptors",
"track": "main",
"status": "Poster",
"keywords": "Imitation Learning;Versatile Skill Learning;Distribution Matching",
"primary_area": "",
"author": "Niklas Freymuth;Nicolas Schreiber;Aleksandar Taranovic;Philipp Becker;Gerhard Neumann",
"authorids": "~Niklas_Freymuth1;nicolas.schreiber@kit.edu;~Aleksandar_Taranovic1;~Philipp_Becker1;~Gerhard_Neumann2",
"aff": "Karlsruhe Institute of Technology;Karlsruher Institut f\u00fcr Technologie;Karlsruhe Institute of Technology;Karlsruhe Institute of Technology",
"aff_domain": "kit.edu;kit.edu;kit.edu;kit.edu",
"position": "PhD student;PhD student;PhD student;Full Professor",
"rating": "4;6;6",
"confidence": "",
"rating_avg": 5.333333333333333,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "N-HtsQkRotI",
"title": "Hypernetworks in Meta-Reinforcement Learning",
"track": "main",
"status": "Poster",
"keywords": "Hypernetwork;Deep Learning;Reinforcement Learning;Reinforcement;RL;Meta-Learning;Meta;Meta-RL;Meta-World;Robotics",
"primary_area": "",
"author": "Jacob Beck;Matthew Thomas Jackson;Risto Vuorio;Shimon Whiteson",
"authorids": "~Jacob_Beck1;~Matthew_Thomas_Jackson1;~Risto_Vuorio1;~Shimon_Whiteson1",
"aff": "University of Oxford;University of Oxford;Department of Computer Science, University of Oxford;QualComm",
"aff_domain": "oxford.ac.uk;ox.ac.uk;cs.ox.ac.uk;qualcomm.com",
"position": "PhD student;Professor;PhD student;Intern",
"rating": "4;4;6",
"confidence": "",
"rating_avg": 4.666666666666667,
"confidence_avg": 0,
"replies_avg": 8,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "N78I92JIqOJ",
"title": "Generative Category-Level Shape and Pose Estimation with Semantic Primitives",
"track": "main",
"status": "Poster",
"keywords": "Category-level Pose Estimation;Shape Estimation",
"primary_area": "",
"author": "Guanglin Li;Yifeng Li;Zhichao Ye;Qihang Zhang;Tao Kong;Zhaopeng Cui;Guofeng Zhang",
"authorids": "~Guanglin_Li1;~Yifeng_Li3;~Zhichao_Ye1;~Qihang_Zhang1;~Tao_Kong3;~Zhaopeng_Cui1;~Guofeng_Zhang3",
"aff": "Zhejiang University;Zhejiang University;The Chinese University of Hong Kong;Bytedance;Zhejiang University;Zhejiang University",
"aff_domain": "zju.edu.cn;zju.edu.cn;cuhk.edu.hk;bytedance.com;zju.edu.cn;zju.edu.cn",
"position": "MS student;PhD student;Postgraduate student;Researcher;Assistant Professor;Full Professor",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "NEGjAH7p0fm",
"title": "In-Hand Gravitational Pivoting Using Tactile Sensing",
"track": "main",
"status": "Poster",
"keywords": "Tactile Pose Sensing;In Hand Manipulation",
"primary_area": "",
"author": "Jason Toskov;Rhys Newbury;Mustafa Mukadam;Dana Kulic;Akansel Cosgun",
"authorids": "jtos0003@student.monash.edu;~Rhys_Newbury1;~Mustafa_Mukadam1;~Dana_Kulic1;~Akansel_Cosgun1",
"aff": "Monash University;Meta AI;Monash University",
"aff_domain": "monash.edu;meta.com;monash.edu",
"position": "PhD student;Research Scientist;Full Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "NanNxv92Uih",
"title": "Reinforcement learning with Demonstrations from Mismatched Task under Sparse Reward",
"track": "main",
"status": "Poster",
"keywords": "Sparse Reward Reinforcement Learning;Learn from Demonstration;Task Mismatch",
"primary_area": "",
"author": "Yanjiang Guo;Jingyue Gao;Zheng Wu;Chengming Shi;Jianyu Chen",
"authorids": "~Yanjiang_Guo1;~Jingyue_Gao2;~Zheng_Wu2;~Chengming_Shi1;~Jianyu_Chen1",
"aff": "Tsinghua University;Tsinghua University;University of California, Berkeley;Tsinghua University;Tsinghua University",
"aff_domain": "mails.tsinghua.edu.cn;mails.tsinghua.edu.cn;berkeley.edu;tsinghua.edu.cn;tsinghua.edu.cn",
"position": "Undergrad student;Undergrad student;PhD student;Undergrad student;Assistant Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 19,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "No3mbanRlZJ",
"title": "Touching a NeRF: Leveraging Neural Radiance Fields for Tactile Sensory Data Generation",
"track": "main",
"status": "Poster",
"keywords": "Camera-based tactile sensing;cross-modal tactile data generation",
"primary_area": "",
"author": "Shaohong Zhong;Alessandro Albini;Oiwi Parker Jones;Perla Maiolino;Ingmar Posner",
"authorids": "~Shaohong_Zhong1;~Alessandro_Albini1;~Oiwi_Parker_Jones1;~Perla_Maiolino1;~Ingmar_Posner1",
"aff": "University of Oxford;University of Oxford;University of Oxford;University of Oxford;University of Oxford",
"aff_domain": "ox.ac.uk;ox.ac.uk;ox.ac.uk;oxford.ac.uk;ox.ac.uk",
"position": "PhD student;Postdoc;Postdoc;Associate Professor;Full Professor",
"rating": "1;6;6;10",
"confidence": "",
"rating_avg": 5.75,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "OIaJRUo5UXy",
"title": "Learning Neuro-Symbolic Skills for Bilevel Planning",
"track": "main",
"status": "Poster",
"keywords": "Skill Learning;Neuro-Symbolic;Task and Motion Planning",
"primary_area": "",
"author": "Tom Silver;Ashay Athalye;Joshua B. Tenenbaum;Tom\u00e1s Lozano-P\u00e9rez;Leslie Pack Kaelbling",
"authorids": "~Tom_Silver1;~Ashay_Athalye1;~Joshua_B._Tenenbaum1;~Tom\u00e1s_Lozano-P\u00e9rez1;~Leslie_Pack_Kaelbling1",
"aff": "Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology",
"aff_domain": "mit.edu;mit.edu;mit.edu;mit.edu;mit.edu",
"position": "PhD student;MS student;Professor;Full Professor;Full Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 25,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "OzP68WT3UA",
"title": "NeuralGrasps: Learning Implicit Representations for Grasps of Multiple Robotic Hands",
"track": "main",
"status": "Poster",
"keywords": "Robot Grasping;Neural Implicit Representations;Grasp Transfer;Grasping Contact Modeling;6D Object Pose Estimation",
"primary_area": "",
"author": "Ninad Khargonkar;Neil Song;Zesheng Xu;B Prabhakaran;Yu Xiang",
"authorids": "~Ninad_Khargonkar1;~Neil_Song1;~Zesheng_Xu1;~B_Prabhakaran1;~Yu_Xiang3",
"aff": "University of Texas at Dallas;University of Texas at Dallas;University of Texas at Dallas;University of Texas - Dallas;University of Texas, Dallas",
"aff_domain": "utdallas.edu;utdallas.edu;utdallas.edu;utdallas.edu",
"position": "PhD student;Researcher;Undergrad student;Full Professor;Assistant Professor",
"rating": "6;6;10",
"confidence": "",
"rating_avg": 7.333333333333333,
"confidence_avg": 0,
"replies_avg": 9,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "PAFEQQtDf8s",
"title": "CoBEVT: Cooperative Bird\u2019s Eye View Semantic Segmentation with Sparse Transformers",
"track": "main",
"status": "Poster",
"keywords": "Autonomous driving;BEV map understanding;Vehicle-to-Vehicle (V2V) application",
"primary_area": "",
"author": "Runsheng Xu;Zhengzhong Tu;Hao Xiang;Wei Shao;Bolei Zhou;Jiaqi Ma",
"authorids": "~Runsheng_Xu3;~Zhengzhong_Tu1;~Hao_Xiang1;~Wei_Shao4;~Bolei_Zhou5;jiaqima@ucla.edu",
"aff": "University of California, Los Angeles;University of Texas at Austin;University of California, Los Angeles;Arizona State University;University of California, Los Angeles",
"aff_domain": "ucla.edu;utexas.edu;ucla.edu;asu.edu;ucla.edu",
"position": "PhD student;PhD student;PhD student;Postdoc;Assistant Professor",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 20,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "PS_eCS_WCvD",
"title": "Perceiver-Actor: A Multi-Task Transformer for Robotic Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Transformers;Language Grounding;Manipulation;Behavior Cloning",
"primary_area": "",
"author": "Mohit Shridhar;Lucas Manuelli;Dieter Fox",
"authorids": "~Mohit_Shridhar1;~Lucas_Manuelli1;~Dieter_Fox1",
"aff": "NVIDIA;NVIDIA;Department of Computer Science",
"aff_domain": "nvidia.com;nvidia.com;cs.washington.edu",
"position": "NVIDIA;Researcher;Full Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 23,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "PZiKO7mjC43",
"title": "Towards Capturing the Temporal Dynamics for Trajectory Prediction: a Coarse-to-Fine Approach",
"track": "main",
"status": "Poster",
"keywords": "autonomous prediction;trajectory prediction",
"primary_area": "",
"author": "Xiaosong Jia;Li Chen;Penghao Wu;Jia Zeng;Junchi Yan;Hongyang Li;Yu Qiao",
"authorids": "~Xiaosong_Jia1;~Li_Chen15;~Penghao_Wu1;~Jia_Zeng2;~Junchi_Yan2;~Hongyang_Li1;~Yu_Qiao1",
"aff": "Shanghai Jiaotong University;Shanghai AI Laboratory;Shanghai Jiaotong University;Shanghai Jiaotong University;Shanghai AI Lab;Shanghai Jiaotong University",
"aff_domain": "sjtu.edu.cn;pjlab.org.cn;sjtu.edu.cn;sjtu.edu.cn;pjlab.org.cn;sjtu.edu.cn",
"position": "PhD student;Researcher;Undergrad student;PhD student;Researcher;Associate Professor",
"rating": "1;4;6;10",
"confidence": "",
"rating_avg": 5.25,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "QFYq0VwBCLE",
"title": "Online Inverse Reinforcement Learning with Learned Observation Model",
"track": "main",
"status": "Poster",
"keywords": "Observation model;Inverse reinforcement learning;Maximum entropy",
"primary_area": "",
"author": "Saurabh Arora;Prashant Doshi;Bikramjit Banerjee",
"authorids": "sa08751@uga.edu;~Prashant_Doshi1;~Bikramjit_Banerjee1",
"aff": "University of Georgia;University of Southern Mississippi",
"aff_domain": "cs.uga.edu;usm.edu",
"position": "Full Professor;Full Professor",
"rating": "4;4;6;10",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 9,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "QSUsBMuw0uV",
"title": "Bayesian Object Models for Robotic Interaction with Differentiable Probabilistic Programming",
"track": "main",
"status": "Poster",
"keywords": "Simulation;Probabilistic programming;Differentiable physics;Bayesian inference;Causal inference",
"primary_area": "",
"author": "Krishna Murthy Jatavallabhula;Miles Macklin;Dieter Fox;Animesh Garg;Fabio Ramos",
"authorids": "~Krishna_Murthy_Jatavallabhula1;~Miles_Macklin1;~Dieter_Fox1;~Animesh_Garg1;~Fabio_Ramos1",
"aff": "NVIDIA;Department of Computer Science;University of Toronto;NVIDIA;University of Montreal",
"aff_domain": "nvidia.com;cs.washington.edu;toronto.edu;nvidia.com;umontreal.ca",
"position": "Principal Engineer;Full Professor;Assistant Professor;Principal Research Scientist;PhD student",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 6,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "QgXArq7RIh",
"title": "Learning and Retrieval from Prior Data for Skill-based Imitation Learning",
"track": "main",
"status": "Poster",
"keywords": "Imitation Learning;Skill Learning;Robot Manipulation",
"primary_area": "",
"author": "Soroush Nasiriany;Tian Gao;Ajay Mandlekar;Yuke Zhu",
"authorids": "~Soroush_Nasiriany1;gaot19@utexas.edu;~Ajay_Mandlekar1;~Yuke_Zhu1",
"aff": "University of Texas, Austin;Stanford University;Computer Science Department, University of Texas, Austin",
"aff_domain": "utexas.edu;stanford.edu;cs.utexas.edu",
"position": "PhD student;PhD student;Assistant Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 25,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Re3NjSwf0WF",
"title": "Legged Locomotion in Challenging Terrains using Egocentric Vision",
"track": "main",
"status": "Oral",
"keywords": "legged robots;reinforcement learning;vision;locomotion;walking",
"primary_area": "",
"author": "Ananye Agarwal;Ashish Kumar;Jitendra Malik;Deepak Pathak",
"authorids": "~Ananye_Agarwal1;~Ashish_Kumar1;~Jitendra_Malik2;~Deepak_Pathak1",
"aff": "Carnegie Mellon University;University of California, Berkeley;University of California, Berkeley;Carnegie Mellon University",
"aff_domain": "cmu.edu;berkeley.edu;berkeley.edu;cmu.edu",
"position": "PhD student;Graduate Student;Full Professor;Assistant Professor",
"rating": "10;10;10;10",
"confidence": "",
"rating_avg": 10.0,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "RgJwDQwW82y",
"title": "Last-Mile Embodied Visual Navigation",
"track": "main",
"status": "Poster",
"keywords": "Visual Navigation;Embodied AI;Image-Goal Navigation;Perspective-n-Point;AI Habitat;Sim-to-Real",
"primary_area": "",
"author": "Justin Wasserman;Karmesh Yadav;Girish Chowdhary;Abhinav Gupta;Unnat Jain",
"authorids": "~Justin_Wasserman1;~Karmesh_Yadav1;~Girish_Chowdhary1;~Abhinav_Gupta1;~Unnat_Jain1",
"aff": "University of Illinois, Urbana Champaign;Meta AI;University of Illinois, Urbana Champaign;Meta Facebook",
"aff_domain": "illinois.edu;meta.com;illinois.edu;fb.com",
"position": "PhD student;Researcher;Associate Professor;Researcher",
"rating": "4;6;6",
"confidence": "",
"rating_avg": 5.333333333333333,
"confidence_avg": 0,
"replies_avg": 17,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "RzhhFh4rkWu",
"title": "Discriminator-Guided Model-Based Offline Imitation Learning",
"track": "main",
"status": "Poster",
"keywords": "Offline Imitation Learning;Model-based Learning",
"primary_area": "",
"author": "Wenjia Zhang;Haoran Xu;Haoyi Niu;Peng Cheng;Ming Li;Heming Zhang;Guyue Zhou;Xianyuan Zhan",
"authorids": "~Wenjia_Zhang2;~Haoran_Xu4;~Haoyi_Niu1;~Peng_Cheng1;~Ming_Li22;~Heming_Zhang2;~Guyue_Zhou2;~Xianyuan_Zhan1",
"aff": "Tsinghua University;JD.com;Department of Automation, Tsinghua University;Beijing Jiaotong University;Tsinghua University;Tsinghua University;Tsinghua University",
"aff_domain": "tsinghua.edu.cn;jd.com;tsinghua.edu.cn;bjtu.edu.cn;tsinghua.edu.cn;mail.tsinghua.edu.cn;tsinghua.edu.cn",
"position": "PhD student;Researcher;Undergrad student;PhD student;Undergrad student;Full Professor;Associate Professor",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 8,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "SM70KHTBG-0",
"title": "Vision-based Uneven BEV Representation Learning with Polar Rasterization and Surface Estimation",
"track": "main",
"status": "Poster",
"keywords": "Polar Rasterization;Surface Estimation;BEV Segmentation",
"primary_area": "",
"author": "Zhi Liu;Shaoyu Chen;Xiaojie Guo;Xinggang Wang;Tianheng Cheng;Hongmei Zhu;Qian Zhang;Wenyu Liu;Yi Zhang",
"authorids": "~Zhi_Liu8;~Shaoyu_Chen1;~Xiaojie_Guo2;~Xinggang_Wang1;~Tianheng_Cheng1;~Hongmei_Zhu2;~Qian_Zhang7;~Wenyu_Liu3;~Yi_Zhang39",
"aff": "Horizon Robotics;Huazhong University of Science and Technology;Huazhong University of Science and Technology;Horizon Robotics;Horizon Robotics;Huazhong University of Science and Technology;Tianjin University;Tianjin University",
"aff_domain": "horizon.ai;hust.edu.cn;hust.edu.cn;horizon.ai;horizon.cc;hust.edu.cn;tju.edu.cn;tju.edu",
"position": "Intern;Full Professor;PhD student;Engineer;Researcher;Full Professor;Associate Professor;MS student",
"rating": "4;4;6",
"confidence": "",
"rating_avg": 4.666666666666667,
"confidence_avg": 0,
"replies_avg": 8,
"authors#_avg": 9,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "SrSCqW4dq9",
"title": "Volumetric-based Contact Point Detection for 7-DoF Grasping",
"track": "main",
"status": "Poster",
"keywords": "Contact point detection;7-DoF grasping;General object grasping",
"primary_area": "",
"author": "Junhao Cai;Jingcheng Su;Zida Zhou;Hui Cheng;Qifeng Chen;Michael Y Wang",
"authorids": "~Junhao_Cai1;~Jingcheng_Su1;~Zida_Zhou1;~Hui_Cheng5;~Qifeng_Chen1;~Michael_Y_Wang1",
"aff": "Hong Kong University of Science and Technology;SUN YAT-SEN UNIVERSITY;SUN YAT-SEN UNIVERSITY;Hong Kong University of Science and Technology;Hong Kong University of Science and Technology",
"aff_domain": "ust.hk;sysu.edu.cn;sysu.edu.cn;hkust.edu;ust.hk",
"position": "PhD student;MS student;Researcher;Assistant Professor;Full Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "TAgVKiF2O8p",
"title": "Concept Learning for Interpretable Multi-Agent Reinforcement Learning",
"track": "main",
"status": "Poster",
"keywords": "Multi-Agent Reinforcement Learning;Interpretable Machine Learning",
"primary_area": "",
"author": "Renos Zabounidis;Joseph Campbell;Simon Stepputtis;Dana Hughes;Katia P. Sycara",
"authorids": "~Renos_Zabounidis1;~Joseph_Campbell1;~Simon_Stepputtis1;~Dana_Hughes1;~Katia_P._Sycara1",
"aff": "University of Massachusetts, Amherst;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "umass.edu;cmu.edu;cmu.edu;cmu.edu;cmu.edu",
"position": "Undergrad student;Postdoc;Postdoc;Postdoc;Full Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 23,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "TGUp8EaCGj9",
"title": "Offline Reinforcement Learning at Multiple Frequencies",
"track": "main",
"status": "Poster",
"keywords": "offline reinforcement learning;robotics",
"primary_area": "",
"author": "Kaylee Burns;Tianhe Yu;Chelsea Finn;Karol Hausman",
"authorids": "~Kaylee_Burns2;~Tianhe_Yu1;~Chelsea_Finn1;~Karol_Hausman2",
"aff": "Stanford University;Stanford University;Google;Google Brain",
"aff_domain": "stanford.edu;stanford.edu;google.com;google.com",
"position": "PhD student;PhD student;Research Scientist;Research Scientist",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 17,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "UAA5bNospA0",
"title": "PLATO: Predicting Latent Affordances Through Object-Centric Play",
"track": "main",
"status": "Poster",
"keywords": "Human Play Data;Object Affordance Learning;Imitation Learning",
"primary_area": "",
"author": "Suneel Belkhale;Dorsa Sadigh",
"authorids": "~Suneel_Belkhale1;~Dorsa_Sadigh1",
"aff": "Stanford University;Stanford University",
"aff_domain": "stanford.edu;stanford.edu",
"position": "PhD student;Assistant Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 21,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "UW5A3SweAH",
"title": "LM-Nav: Robotic Navigation with Large Pre-Trained Models of Language, Vision, and Action",
"track": "main",
"status": "Poster",
"keywords": "instruction following;language models;vision-based navigation",
"primary_area": "",
"author": "Dhruv Shah;B\u0142a\u017cej Osi\u0144ski;brian ichter;Sergey Levine",
"authorids": "~Dhruv_Shah1;~B\u0142a\u017cej_Osi\u0144ski1;~brian_ichter1;~Sergey_Levine1",
"aff": "UC Berkeley;University of Warsaw;Google;Google",
"aff_domain": "berkeley.edu;mimuw.edu.pl;google.com;google.com",
"position": "PhD student;PhD student;Research Scientist;Research Scientist",
"rating": "1;6;6;6",
"confidence": "",
"rating_avg": 4.75,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "UWTP_JvSug",
"title": "Proactive slip control by learned slip model and trajectory adaptation",
"track": "main",
"status": "Poster",
"keywords": "Manipulation;Motion planning;Slip control;Motion control",
"primary_area": "",
"author": "Kiyanoush Nazari;Willow Mandil;Amir Masoud Ghalamzan Esfahani",
"authorids": "~Kiyanoush_Nazari1;~Willow_Mandil1;~Amir_Masoud_Ghalamzan_Esfahani1",
"aff": "University of Lincoln;University of Lincoln",
"aff_domain": "lincoln.ac.uk;lincoln.ac.uk",
"position": "PhD student;Associate Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 17,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "V3Mjpi4kzdn",
"title": "ARC - Actor Residual Critic for Adversarial Imitation Learning",
"track": "main",
"status": "Poster",
"keywords": "Adversarial Imitation Learning (AIL);Actor-Critic (AC);Actor Residual Critic (ARC)",
"primary_area": "",
"author": "Ankur Deka;Changliu Liu;Katia P. Sycara",
"authorids": "~Ankur_Deka1;~Changliu_Liu1;~Katia_P._Sycara1",
"aff": "Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "cmu.edu;cmu.edu",
"position": "Assistant Professor;Full Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 63,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "VD0nXUG5Qk",
"title": "RoboTube: Learning Household Manipulation from Human Videos with Simulated Twin Environments",
"track": "main",
"status": "Oral",
"keywords": "Learning from Videos;Video Demonstration Dataset;Real2Sim;Self-supervised Reward Learning;Robotic Simulation Benchmark",
"primary_area": "",
"author": "haoyu Xiong;Haoyuan Fu;Jieyi Zhang;Chen Bao;Qiang Zhang;Yongxi Huang;Wenqiang Xu;Animesh Garg;Cewu Lu",
"authorids": "~haoyu_Xiong2;~Haoyuan_Fu1;~Jieyi_Zhang1;~Chen_Bao2;~Qiang_Zhang10;~Yongxi_Huang1;~Wenqiang_Xu2;~Animesh_Garg1;~Cewu_Lu3",
"aff": "Carnegie Mellon University;Shanghai Jiaotong University;Shanghai Jiaotong University;Shanghai Jiaotong University;Shanghai Jiaotong University;Shanghai Jiaotong University;University of Toronto;Shanghai Jiaotong University",
"aff_domain": "andrew.cmu.edu;sjtu.edu.cn;sjtu.edu.cn;sjtu.edu.cn;sjtu.edu.cn;sjtu.edu.cn;toronto.edu;sjtu.edu.cn",
"position": "MS student;MS student;Undergrad student;Undergrad student;PhD student;PhD student;Assistant Professor;Full Professor",
"rating": "6;6;10",
"confidence": "",
"rating_avg": 7.333333333333333,
"confidence_avg": 0,
"replies_avg": 4,
"authors#_avg": 9,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "VHia4Cint7",
"title": "HERD: Continuous Human-to-Robot Evolution for Learning from Human Demonstration",
"track": "main",
"status": "Poster",
"keywords": "learning from human demonstration;imitation learning;curriculum learning;transfer learning;robotic manipulation",
"primary_area": "",
"author": "Xingyu Liu;Deepak Pathak;Kris M. Kitani",
"authorids": "~Xingyu_Liu1;~Deepak_Pathak1;~Kris_M._Kitani1",
"aff": "Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "cmu.edu;cmu.edu;cmu.edu",
"position": "Postdoc;Assistant Professor;Associate Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "ViYLaruFwN3",
"title": "Latent Plans for Task-Agnostic Offline Reinforcement Learning",
"track": "main",
"status": "Poster",
"keywords": "Offline Reinforcement Learning;Imitation Learning;Robot Learning",
"primary_area": "",
"author": "Erick Rosete-Beas;Oier Mees;Gabriel Kalweit;Joschka Boedecker;Wolfram Burgard",
"authorids": "~Erick_Rosete-Beas1;~Oier_Mees1;~Gabriel_Kalweit1;~Joschka_Boedecker1;~Wolfram_Burgard2",
"aff": "Albert-Ludwigs-Universit\u00e4t Freiburg;CS Department, University of Freiburg, Germany, Albert-Ludwigs-Universit\u00e4t Freiburg;Universit\u00e4t Freiburg;Universit\u00e4t Freiburg",
"aff_domain": "uni-freiburg.de;informatik.uni-freiburg.de;uni-freiburg.de;uni-freiburg.de",
"position": "MS student;PhD student;PhD student;Assistant Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "WJbw_C-pCox",
"title": "Synthesizing Adversarial Visual Scenarios for Model-Based Robotic Control",
"track": "main",
"status": "Poster",
"keywords": "",
"primary_area": "",
"author": "Shubhankar Agarwal;Sandeep P. Chinchali",
"authorids": "~Shubhankar_Agarwal1;~Sandeep_P._Chinchali1",
"aff": "University of Texas at Austin",
"aff_domain": "utexas.edu",
"position": "Assistant Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "WbdaYyDkNZL",
"title": "Don\u2019t Start From Scratch: Leveraging Prior Data to Automate Robotic Reinforcement Learning",
"track": "main",
"status": "Poster",
"keywords": "autonomous RL;offline RL;reset-free manipulation",
"primary_area": "",
"author": "Homer Rich Walke;Jonathan Heewon Yang;Albert Yu;Aviral Kumar;J\u0119drzej Orbik;Avi Singh;Sergey Levine",
"authorids": "~Homer_Rich_Walke1;~Jonathan_Heewon_Yang1;~Albert_Yu1;~Aviral_Kumar2;~J\u0119drzej_Orbik1;~Avi_Singh1;~Sergey_Levine1",
"aff": "University of California, Berkeley;Electrical Engineering & Computer Science Department, University of California, Berkeley;University of Texas at Austin;University of California, Berkeley;Google;Google",
"aff_domain": "berkeley.edu;eecs.berkeley.edu;utexas.edu;berkeley.edu;google.com;google.com",
"position": "PhD student;Undergrad student;PhD student;PhD student;Researcher;Research Scientist",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "WkbvHMQL6uJ",
"title": "Where To Start? Transferring Simple Skills to Complex Environments",
"track": "main",
"status": "Poster",
"keywords": "Robot manipulation;planning;obstacle avoidance",
"primary_area": "",
"author": "Vitalis Vosylius;Edward Johns",
"authorids": "~Vitalis_Vosylius1;~Edward_Johns1",
"aff": "Imperial College London;Imperial College London",
"aff_domain": "imperial.ac.uk;imperial.ac.uk",
"position": "PhD student;Associate Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "X4228W0QpvN",
"title": "Safe Robot Learning in Assistive Devices through Neural Network Repair",
"track": "main",
"status": "Poster",
"keywords": "Imitation Learning;Assistive Robotics;Safety;Prosthesis",
"primary_area": "",
"author": "Keyvan Majd;Geoffrey Mitchell Clark;Tanmay Khandait;Siyu Zhou;Sriram Sankaranarayanan;Georgios Fainekos;Heni Amor",
"authorids": "~Keyvan_Majd1;~Geoffrey_Mitchell_Clark1;tkhandai@asu.edu;szhou22@asu.edu;~Sriram_Sankaranarayanan1;~Georgios_Fainekos1;~Heni_Amor1",
"aff": "Arizona State University;Arizona State University;University of Colorado at Boulder;Arizona State University;Arizona State University",
"aff_domain": "asu.edu;asu.edu;colorado.edu;asu.edu;asu.edu",
"position": "PhD student;PhD student;Full Professor;Associate Professor;Assistant Professor",
"rating": "1;6;6;6",
"confidence": "",
"rating_avg": 4.75,
"confidence_avg": 0,
"replies_avg": 25,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "X6CjiTWVRVr",
"title": "Out-of-Dynamics Imitation Learning from Multimodal Demonstrations",
"track": "main",
"status": "Poster",
"keywords": "Imitation Learning;Out-of-Dynamics Imitation Learning",
"primary_area": "",
"author": "Yiwen Qiu;Jialong Wu;Zhangjie Cao;Mingsheng Long",
"authorids": "~Yiwen_Qiu1;~Jialong_Wu1;~Zhangjie_Cao1;~Mingsheng_Long5",
"aff": "Tsinghua University;School of Software, Tsinghua University;Stanford University;Tsinghua University",
"aff_domain": "tsinghua.edu.cn;tsinghua.edu.cn;stanford.edu;tsinghua.edu.cn",
"position": "Undergrad student;Undergrad student;PhD student;Associate Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 22,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "X_qYPtJLaX8",
"title": "PRISM: Probabilistic Real-Time Inference in Spatial World Models",
"track": "main",
"status": "Oral",
"keywords": "generative model;SLAM;Bayes filter;uncertainty;differentiable rendering",
"primary_area": "",
"author": "Atanas Mirchev;Baris Kayalibay;Ahmed Agha;Patrick van der Smagt;Daniel Cremers;Justin Bayer",
"authorids": "~Atanas_Mirchev1;~Baris_Kayalibay1;~Ahmed_Agha1;~Patrick_van_der_Smagt1;~Daniel_Cremers1;~Justin_Bayer1",
"aff": "Machine Learning Research Lab, Volkswagen Group;Data Lab, Volkswagen Group;Volkswagen Group;Machine Learning Research Lab; Volkswagen Group;Technical University Munich;VW Group",
"aff_domain": "argmax.ai;volkswagen.de;volkswagen.de;volkswagen.de;tum.de;volkswagen.de",
"position": "PhD student;PhD student;Research Assistant;Full Professor;Full Professor;research scientist",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 4,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Xo3eOibXCQ8",
"title": "Learning with Muscles: Benefits for Data-Efficiency and Robustness in Anthropomorphic Tasks",
"track": "main",
"status": "Poster",
"keywords": "reinforcement learning;model predictive control;actuator morphology;morphological computation",
"primary_area": "",
"author": "Isabell Wochner;Pierre Schumacher;Georg Martius;Dieter B\u00fcchler;Syn Schmitt;Daniel Haeufle",
"authorids": "~Isabell_Wochner1;~Pierre_Schumacher1;~Georg_Martius1;~Dieter_B\u00fcchler1;~Syn_Schmitt1;~Daniel_Haeufle1",
"aff": "Universit\u00e4t Stuttgart;Max Planck Institute for Intelligent Systems, Max-Planck Institute;Max Planck Institute for Intelligent Systems;Max Planck Institute for Intelligent Systems, Max-Planck Institute;Universit\u00e4t Stuttgart",
"aff_domain": "uni-stuttgart.de;tuebingen.mpg.de;tuebingen.mpg.de;tuebingen.mpg.de;uni-stuttgart.de",
"position": "PhD student;PhD Student;Assistant Professor;Group Leader;Full Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Xux9gSS7WE0",
"title": "In-Hand Object Rotation via Rapid Motor Adaptation",
"track": "main",
"status": "Poster",
"keywords": "Dexterous In-Hand Manipulation;Object Rotation;Reinforcement Learning",
"primary_area": "",
"author": "Haozhi Qi;Ashish Kumar;Roberto Calandra;Yi Ma;Jitendra Malik",
"authorids": "~Haozhi_Qi1;~Ashish_Kumar1;~Roberto_Calandra1;~Yi_Ma4;~Jitendra_Malik2",
"aff": "University of California, Berkeley;University of California, Berkeley;Meta Facebook;University of California, Berkeley;University of California, Berkeley",
"aff_domain": "berkeley.edu;berkeley.edu;fb.com;berkeley.edu;berkeley.edu",
"position": "PhD student;Graduate Student;Research Scientist;Full Professor;Full Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 20,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Y42uoIekm5b",
"title": "JFP: Joint Future Prediction with Interactive Multi-Agent Modeling for Autonomous Driving",
"track": "main",
"status": "Poster",
"keywords": "Self-driving;motion forecasting;interactive prediction",
"primary_area": "",
"author": "Wenjie Luo;Cheol Park;Andre Cornman;Benjamin Sapp;Dragomir Anguelov",
"authorids": "~Wenjie_Luo1;cheolhop@waymo.com;~Andre_Cornman1;~Benjamin_Sapp3;~Dragomir_Anguelov1",
"aff": "Waymo;Waymo;Waymo",
"aff_domain": "waymo.com;waymo.com;waymo.com",
"position": "Researcher;Researcher;Researcher",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Y7xQsyGEQ0C",
"title": "Adapting Neural Models with Sequential Monte Carlo Dropout",
"track": "main",
"status": "Poster",
"keywords": "Model Adaptation;Meta-Learning;Online Robot Control and Prediction",
"primary_area": "",
"author": "Pamela Carreno;Dana Kulic;Michael Burke",
"authorids": "~Pamela_Carreno1;~Dana_Kulic1;~Michael_Burke1",
"aff": "Monash University;Monash University;Monash University",
"aff_domain": "monash.edu;monash.edu;monash.edu",
"position": "Lecturer;Full Professor;Associate Professor",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Y_YUEEQMjQK",
"title": "Rethinking Optimization with Differentiable Simulation from a Global Perspective",
"track": "main",
"status": "Oral",
"keywords": "Differentiable simulation;Global optimization;Deformable Objects",
"primary_area": "",
"author": "Rika Antonova;Jingyun Yang;Krishna Murthy Jatavallabhula;Jeannette Bohg",
"authorids": "~Rika_Antonova1;~Jingyun_Yang1;~Krishna_Murthy_Jatavallabhula1;~Jeannette_Bohg1",
"aff": "Stanford University;Stanford University;University of Montreal",
"aff_domain": "stanford.edu;stanford.edu;umontreal.ca",
"position": "PhD student;Assistant Professor;PhD student",
"rating": "6;10;10;10",
"confidence": "",
"rating_avg": 9.0,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "YmJi0bTfeNX",
"title": "TAX-Pose: Task-Specific Cross-Pose Estimation for Robot Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Learning from Demonstration;Manipulation;3D Learning",
"primary_area": "",
"author": "Chuer Pan;Brian Okorn;Harry Zhang;Ben Eisner;David Held",
"authorids": "~Chuer_Pan1;~Brian_Okorn1;~Harry_Zhang2;~Ben_Eisner1;~David_Held1",
"aff": "Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "andrew.cmu.edu;cmu.edu;andrew.cmu.edu;cmu.edu;cmu.edu",
"position": "MS student;PhD student;MS student;PhD student;Assistant Professor",
"rating": "4;4;6;10",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "Z8mqodASTQd",
"title": "Domain Adaptation and Generalization: A Low-Complexity Approach",
"track": "main",
"status": "Poster",
"keywords": "unsupervised domain adaptation;semantic segmentation;domain generalization",
"primary_area": "",
"author": "Joshua Niemeijer;J\u00f6rg Peter Sch\u00e4fer",
"authorids": "~Joshua_Niemeijer1;joerg.schaefer@dlr.de",
"aff": "German Aerospace Center (DLR)",
"aff_domain": "dlr.de",
"position": "Researcher",
"rating": "4;6;6",
"confidence": "",
"rating_avg": 5.333333333333333,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 1,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "ZAbh4Zp0Blt",
"title": "PoET: Pose Estimation Transformer for Single-View, Multi-Object 6D Pose Estimation",
"track": "main",
"status": "Poster",
"keywords": "6D Pose Estimation;Transformer;Object-Relative Localization",
"primary_area": "",
"author": "Thomas Georg Jantos;Mohamed Amin Hamdad;Wolfgang Granig;Stephan Weiss;Jan Steinbrener",
"authorids": "~Thomas_Georg_Jantos1;~Mohamed_Amin_Hamdad1;wolfgang.granig@infineon.com;~Stephan_Weiss1;~Jan_Steinbrener1",
"aff": "University of Klagenfurt;Alpen-Adria Universit\u00e4t Klagenfurt;Alpen-Adria Universit\u00e4t Klagenfurt",
"aff_domain": "aau.at;aau.at;aau.at",
"position": "PhD student;Full Professor;Assistant Professor",
"rating": "4;4;4;6",
"confidence": "",
"rating_avg": 4.5,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "ZJYbW8Cwys",
"title": "Real-Time Generation of Time-Optimal Quadrotor Trajectories with Semi-Supervised Seq2Seq Learning",
"track": "main",
"status": "Poster",
"keywords": "Motion Planning;Model Learning",
"primary_area": "",
"author": "Gilhyun Ryou;Ezra Tal;Sertac Karaman",
"authorids": "~Gilhyun_Ryou1;eatal@mit.edu;~Sertac_Karaman1",
"aff": "Massachusetts Institute of Technology;Massachusetts Institute of Technology",
"aff_domain": "mit.edu;mit.edu",
"position": "PhD student;Full Professor",
"rating": "4;6;6",
"confidence": "",
"rating_avg": 5.333333333333333,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "ZL2keFk7WXJ",
"title": "Learning Multi-Objective Curricula for Robotic Policy Learning",
"track": "main",
"status": "Poster",
"keywords": "ACL;Hyper-net;Multi-objective Curricula",
"primary_area": "",
"author": "Jikun Kang;Miao Liu;Abhinav Gupta;Christopher Pal;Xue Liu;Jie Fu",
"authorids": "~Jikun_Kang1;~Miao_Liu1;~Abhinav_Gupta2;~Christopher_Pal1;~Xue_Liu1;~Jie_Fu2",
"aff": "McGill University;International Business Machines;Meta AI;Polytechnique Montreal;McGill University;University of Montreal",
"aff_domain": "mcgill.ca;ibm.com;meta.com;polymtl.ca;mcgill.ca;umontreal.ca",
"position": "PhD student;Research Staff Member;Research Intern;Full Professor;Full Professor;Postdoc",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "ZUtgUA0Fuwd",
"title": "Watch and Match: Supercharging Imitation with Regularized Optimal Transport",
"track": "main",
"status": "Oral",
"keywords": "Imitation Learning;Manipulation;Robotics",
"primary_area": "",
"author": "Siddhant Haldar;Vaibhav Mathur;Denis Yarats;Lerrel Pinto",
"authorids": "~Siddhant_Haldar1;~Vaibhav_Mathur1;~Denis_Yarats1;~Lerrel_Pinto1",
"aff": "New York University;New York University;New York University;New York University",
"aff_domain": "nyu.edu;nyu.edu;cs.nyu.edu;cs.nyu.edu",
"position": "PhD student;MS student;PhD student;Assistant Professor",
"rating": "10;10;10;10",
"confidence": "",
"rating_avg": 10.0,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "ZezSmJq06Ep",
"title": "Deep Projective Rotation Estimation through Relative Supervision",
"track": "main",
"status": "Poster",
"keywords": "rotations;deep learning;relative-supervision;self-supervision;modified rodrigues parameters;stereographic projection;pose estimation",
"primary_area": "",
"author": "Brian Okorn;Chuer Pan;Martial Hebert;David Held",
"authorids": "~Brian_Okorn1;~Chuer_Pan1;~Martial_Hebert1;~David_Held1",
"aff": "Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "cmu.edu;andrew.cmu.edu;cmu.edu;cmu.edu",
"position": "PhD student;MS student;Professor;Assistant Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "_8DoIe8G3t",
"title": "BEHAVIOR-1K: A Benchmark for Embodied AI with 1,000 Everyday Activities and Realistic Simulation",
"track": "main",
"status": "Oral",
"keywords": "Embodied AI Benchmark;Everyday Activities;Mobile Manipulation",
"primary_area": "",
"author": "Chengshu Li;Ruohan Zhang;Josiah Wong;Cem Gokmen;Sanjana Srivastava;Roberto Mart\u00edn-Mart\u00edn;Chen Wang;Gabrael Levine;Michael Lingelbach;Jiankai Sun;Mona Anvari;Minjune Hwang;Manasi Sharma;Arman Aydin;Dhruva Bansal;Samuel Hunter;Kyu-Young Kim;Alan Lou;Caleb R Matthews;Ivan Villa-Renteria;Jerry Huayang Tang;Claire Tang;Fei Xia;Silvio Savarese;Hyowon Gweon;Karen Liu;Jiajun Wu;Li Fei-Fei",
"authorids": "~Chengshu_Li1;~Ruohan_Zhang1;~Josiah_Wong1;~Cem_Gokmen1;~Sanjana_Srivastava2;~Roberto_Mart\u00edn-Mart\u00edn1;~Chen_Wang16;~Gabrael_Levine1;~Michael_Lingelbach1;~Jiankai_Sun6;~Mona_Anvari2;~Minjune_Hwang1;~Manasi_Sharma1;~Arman_Aydin1;~Dhruva_Bansal1;~Samuel_Hunter2;~Kyu-Young_Kim1;~Alan_Lou1;~Caleb_R_Matthews1;~Ivan_Villa-Renteria1;~Jerry_Huayang_Tang1;~Claire_Tang1;~Fei_Xia1;~Silvio_Savarese1;~Hyowon_Gweon1;~Karen_Liu1;~Jiajun_Wu1;~Li_Fei-Fei1",
"aff": "Stanford University;Stanford University;Stanford University;Stanford University;Stanford University;SalesForce.com;Computer Science Department, Stanford University;Stanford University;Stanford University;Stanford University;Computer Science Department, Stanford University;Stanford University;Stanford University;Stanford University;Computer Science Department, Stanford University;Stanford University;Stanford University;Stanford University;Computer Science Department, Stanford University;Google;Stanford University;Stanford University;Stanford University;Stanford University;Stanford University",
"aff_domain": "stanford.edu;stanford.edu;stanford.edu;stanford.edu;stanford.edu;salesforce.com;cs.stanford.edu;stanford.edu;stanford.edu;stanford.edu;cs.stanford.edu;stanford.edu;stanford.edu;stanford.edu;cs.stanford.edu;stanford.edu;stanford.edu;stanford.edu;cs.stanford.edu;google.com;stanford.edu;stanford.edu;stanford.edu;stanford.edu;stanford.edu",
"position": "PhD student;Postdoc;MS student;MS student;PhD student;Researcher;PhD student;Undergrad student;PhD student;PhD student;MS student;MS student;MS student;MS student;MS student;Undergrad student;MS student;Undergrad student;Undergrad student;Researcher;Adjunct Professor;Associate Professor;Assistant Professor;Full Professor;MS student",
"rating": "6;10;10;10",
"confidence": "",
"rating_avg": 9.0,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 28,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "_u4m5aEbWfU",
"title": "SurroundDepth: Entangling Surrounding Views for Self-Supervised Multi-Camera Depth Estimation",
"track": "main",
"status": "Poster",
"keywords": "Self-supervised depth estimation;Multi-camera perception;Structure-from-motion",
"primary_area": "",
"author": "Yi Wei;Linqing Zhao;Wenzhao Zheng;Zheng Zhu;Yongming Rao;Guan Huang;Jiwen Lu;Jie Zhou",
"authorids": "~Yi_Wei1;~Linqing_Zhao1;~Wenzhao_Zheng1;~Zheng_Zhu1;~Yongming_Rao1;~Guan_Huang1;~Jiwen_Lu1;~Jie_Zhou3",
"aff": "Automation, Tsinghua University, Tsinghua University;Tianjin University;Tsinghua University;PhiGent Robotics;Tsinghua University;Xforward AI Technology;Tsinghua University;Tsinghua University",
"aff_domain": "mails.tsinghua.edu.cn;tju.edu.cn;tsinghua.edu.cn;phigent.ai;tsinghua.edu.cn;xforwardai.com;tsinghua.edu.cn;tsinghua.edu.cn",
"position": "PhD student;PhD student;PhD student;Researcher;PhD student;Researcher;Associate Professor;Full Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 32,
"authors#_avg": 8,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "aQnn9cIVTRJ",
"title": "Motion Policy Networks",
"track": "main",
"status": "Poster",
"keywords": "Motion Control;Imitation Learning;End-to-End Learning",
"primary_area": "",
"author": "Adam Fishman;Adithyavairavan Murali;Clemens Eppner;Bryan Peele;Byron Boots;Dieter Fox",
"authorids": "~Adam_Fishman1;~Adithyavairavan_Murali2;~Clemens_Eppner1;~Bryan_Peele1;~Byron_Boots1;~Dieter_Fox1",
"aff": "University of Washington;NVIDIA;Universit\u00e4t Freiburg;University of Washington;Department of Computer Science;NVIDIA",
"aff_domain": "washington.edu;nvidia.com;uni-freiburg.de;washington.edu;cs.washington.edu;nvidia.com",
"position": "PhD student;Researcher;MS student;Associate Professor;Full Professor;Researcher",
"rating": "1;4;4;10;10",
"confidence": "",
"rating_avg": 5.8,
"confidence_avg": 0,
"replies_avg": 24,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "abd_D-iVjk0",
"title": "LaRa: Latents and Rays for Multi-Camera Bird\u2019s-Eye-View Semantic Segmentation",
"track": "main",
"status": "Poster",
"keywords": "bird\u2019s eye view semantic segmentation;encoder-decoder transformers;autonomous driving",
"primary_area": "",
"author": "Florent Bartoccioni;Eloi Zablocki;Andrei Bursuc;Patrick Perez;Matthieu Cord;Karteek Alahari",
"authorids": "~Florent_Bartoccioni2;~Eloi_Zablocki3;~Andrei_Bursuc1;~Patrick_Perez1;~Matthieu_Cord1;~Karteek_Alahari1",
"aff": "Valeo;Sorbonne Universit\u00e9;Inria;Valeo;Valeo;Valeo",
"aff_domain": "valeo.com;isir.upmc.fr;inria.fr;valeo.com;valeo.com;valeo.com",
"position": "Research Scientist;Full Professor;Tenured researcher (eq. Asso. prof.);Researcher;PhD student;Scientific Director",
"rating": "6;6;10",
"confidence": "",
"rating_avg": 7.333333333333333,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "awciQcCEGJs",
"title": "Graph Inverse Reinforcement Learning from Diverse Videos",
"track": "main",
"status": "Oral",
"keywords": "Inverse Reinforcement Learning;Third-Person Video;Graph Network",
"primary_area": "",
"author": "Sateesh Kumar;Jonathan Zamora;Nicklas Hansen;Rishabh Jangir;Xiaolong Wang",
"authorids": "~Sateesh_Kumar2;~Jonathan_Zamora1;~Nicklas_Hansen1;~Rishabh_Jangir1;~Xiaolong_Wang3",
"aff": "University of California, San Diego;Meta;University of California, San Diego;University of California, San Diego;University of California, San Diego",
"aff_domain": "ucsd.edu;fb.com;ucsd.edu;ucsd.edu;ucsd.edu",
"position": "MS student;Intern;MS student;Assistant Professor;Undergrad student",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "b1zMsZuzd2e",
"title": "Learning Dense Visual Descriptors using Image Augmentations for Robot Manipulation Tasks",
"track": "main",
"status": "Poster",
"keywords": "self-supervised learning;computer vision;representation learning;bin-picking",
"primary_area": "",
"author": "Christian Graf;David B. Adrian;Joshua Weil;Miroslav Gabriel;Philipp Schillinger;Markus Spies;Heiko Neumann;Andras Gabor Kupcsik",
"authorids": "~Christian_Graf1;~David_B._Adrian1;fixed-term.joshua.weil@de.bosch.com;miroslav.gabriel@de.bosch.com;~Philipp_Schillinger1;markus.spies2@de.bosch.com;~Heiko_Neumann1;~Andras_Gabor_Kupcsik2",
"aff": "Bosch Center for Artifical Intelligence;Robert Bosch GmbH, Bosch;Robert Bosch GmbH, Bosch;Ulm University;Bosch Center for Artificial Intelligence",
"aff_domain": "de.bosch.com;de.bosch.com;de.bosch.com;uni-ulm.de;de.bosch.com",
"position": "Researcher;PhD student;Researcher;Full Professor;Researcher",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 19,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "b88HF4vd_ej",
"title": "Learning Representations that Enable Generalization in Assistive Tasks",
"track": "main",
"status": "Poster",
"keywords": "assistive robots;representation learning;OOD generalization",
"primary_area": "",
"author": "Jerry Zhi-Yang He;Zackory Erickson;Daniel S. Brown;Aditi Raghunathan;Anca Dragan",
"authorids": "~Jerry_Zhi-Yang_He1;~Zackory_Erickson1;~Daniel_S._Brown1;~Aditi_Raghunathan1;~Anca_Dragan1",
"aff": "Carnegie Mellon University;University of California, Berkeley;Carnegie Mellon University;University of California, Berkeley",
"aff_domain": "cmu.edu;berkeley.edu;cmu.edu;berkeley.edu",
"position": "Assistant Professor;Postdoc;Assistant Professor;Associate Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "bJS2fBkFZ-K",
"title": "PI-QT-Opt: Predictive Information Improves Multi-Task Robotic Reinforcement Learning at Scale",
"track": "main",
"status": "Poster",
"keywords": "deep reinforcement learning;robot manipulation;multi-task learning",
"primary_area": "",
"author": "Kuang-Huei Lee;Ted Xiao;Adrian Li;Paul Wohlhart;Ian Fischer;Yao Lu",
"authorids": "~Kuang-Huei_Lee1;~Ted_Xiao1;alhli@google.com;~Paul_Wohlhart1;~Ian_Fischer1;~Yao_Lu13",
"aff": "Google;Graz University of Technology;Google;Google",
"aff_domain": "google.com; ;google.com;google.com",
"position": "Researcher;Post Doc;Researcher;Researcher",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "bUUf1CT1sNu",
"title": "Learning Robust Real-World Dexterous Grasping Policies via Implicit Shape Augmentation",
"track": "main",
"status": "Poster",
"keywords": "Dexterous Manipulation;Learning from Human Demonstration;Data Augmentation",
"primary_area": "",
"author": "Qiuyu Chen;Karl Van Wyk;Yu-Wei Chao;Wei Yang;Arsalan Mousavian;Abhishek Gupta;Dieter Fox",
"authorids": "~Qiuyu_Chen5;~Karl_Van_Wyk1;~Yu-Wei_Chao1;~Wei_Yang2;~Arsalan_Mousavian1;~Abhishek_Gupta1;~Dieter_Fox1",
"aff": "Department of Computer Science, University of Washington;NVIDIA;NVIDIA;NVIDIA;Massachusetts Institute of Technology;Department of Computer Science",
"aff_domain": "cs.washington.edu;nvidia.com;nvidia.com;nvidia.com;mit.edu;cs.washington.edu",
"position": "PhD student;Research Scientist;Research Scientist;Research Scientist;Postdoc;Full Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "bdHkMjBJG_w",
"title": "Do As I Can, Not As I Say: Grounding Language in Robotic Affordances",
"track": "main",
"status": "Oral",
"keywords": "Large Language Models;Task and Motion Planning;Grounding Models;Mobile Manipulation;Reinforcement Learning;Imitation learning",
"primary_area": "",
"author": "brian ichter;Anthony Brohan;Yevgen Chebotar;Chelsea Finn;Karol Hausman;Alexander Herzog;Daniel Ho;Julian Ibarz;Alex Irpan;Eric Jang;Ryan Julian;Dmitry Kalashnikov;Sergey Levine;Yao Lu;Carolina Parada;Kanishka Rao;Pierre Sermanet;Alexander T Toshev;Vincent Vanhoucke;Fei Xia;Ted Xiao;Peng Xu;Mengyuan Yan;Noah Brown;Michael Ahn;Omar Cortes;Nicolas Sievers;Clayton Tan;Sichun Xu;Diego Reyes;Jarek Rettinghouse;Jornell Quiambao;Peter Pastor;Linda Luu;Kuang-Huei Lee;Yuheng Kuang;Sally Jesmonth;Kyle Jeffrey;Rosario Jauregui Ruano;Jasmine Hsu;Keerthana Gopalakrishnan;Byron David;Andy Zeng;Chuyuan Kelly Fu",
"authorids": "~brian_ichter1;~Anthony_Brohan1;~Yevgen_Chebotar1;~Chelsea_Finn1;~Karol_Hausman2;~Alexander_Herzog2;~Daniel_Ho1;~Julian_Ibarz1;~Alex_Irpan1;~Eric_Jang1;~Ryan_Julian2;~Dmitry_Kalashnikov1;~Sergey_Levine1;~Yao_Lu13;~Carolina_Parada1;~Kanishka_Rao1;~Pierre_Sermanet1;~Alexander_T_Toshev1;~Vincent_Vanhoucke1;~Fei_Xia1;~Ted_Xiao1;~Peng_Xu9;~Mengyuan_Yan1;noahbrown@google.com;michaelahn@google.com;ocortes@google.com;nsievers@google.com;claytontan@google.com;sicxu@google.com;diegoreyes@google.com;jarekr@google.com;jornell@google.com;peterpastor@google.com;luulinda@google.com;~Kuang-Huei_Lee1;yuheng@google.com;sallyjesmonth@google.com;kylejeffrey@google.com;jaureguiruano@google.com;hellojas@google.com;keerthanapg@google.com;byrondavid@google.com;~Andy_Zeng3;fuchuyuan@google.com",
"aff": "Google;Google;Google;Google;Google;Google DeepMind;Google;Google;Google;Google;Google;Google;Google;Google;Google;Google;Google;Research, Google;Google;Google;Google Brain",
"aff_domain": "google.com;google.com;google.com;google.com;google.com;google.com;google.com;google.com;google.com;google.com;google.com;google.com;google.com;google.com;google.com;google.com;google.com;research.google.com;google.com;google.com;google.com",
"position": "Research Scientist;Research Scientist;Research Scientist;Researcher;Software Engineer;Researcher;Researcher;Senior Research Software Engineer;Researcher;Research Scientist;Researcher;Research Scientist;Principal Scientist;Researcher;Researcher;Researcher;Researcher;Researcher;Research Scientist;Senior Staff Software Engineer;Research Scientist",
"rating": "6;10;10;10",
"confidence": "",
"rating_avg": 9.0,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 25,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "cAIIbdNAeNa",
"title": "CAtNIPP: Context-Aware Attention-based Network for Informative Path Planning",
"track": "main",
"status": "Poster",
"keywords": "deep RL;informative path planning;context-aware decision-making",
"primary_area": "",
"author": "Yuhong Cao;Yizhuo Wang;Apoorva Vashisth;Haolin Fan;Guillaume Adrien Sartoretti",
"authorids": "~Yuhong_Cao1;~Yizhuo_Wang1;~Apoorva_Vashisth1;~Haolin_Fan1;~Guillaume_Adrien_Sartoretti1",
"aff": "National University of Singapore;National University of Singapore;Indian Institute of Technology Kharagpur;National University of Singapore;National University of Singapore",
"aff_domain": "u.nus.edu;nus.edu.sg;iitkgp.ac.in;u.nus.edu;nus.edu.sg",
"position": "PhD student;Researcher;Undergrad student;MS student;Assistant Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 19,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "cF1dxVGxic-",
"title": "Embedding Synthetic Off-Policy Experience for Autonomous Driving via Zero-Shot Curricula",
"track": "main",
"status": "Oral",
"keywords": "Imitation Learning;Curriculum Learning;Autonomous Driving",
"primary_area": "",
"author": "Eli Bronstein;Sirish Srinivasan;Supratik Paul;Aman Sinha;Matthew O'Kelly;Payam Nikdel;Shimon Whiteson",
"authorids": "~Eli_Bronstein1;~Sirish_Srinivasan1;~Supratik_Paul1;~Aman_Sinha1;~Matthew_O'Kelly2;~Payam_Nikdel1;~Shimon_Whiteson1",
"aff": "Waymo;Waymo Research;Waymo;Princeton University;Simon Fraser University;University of Oxford;Trustworthy AI",
"aff_domain": "waymo.com;waymo.com;waymo.com;princeton.edu;cs.sfu.ca;ox.ac.uk;trustworthy.ai",
"position": "Researcher;Researcher;Researcher;Undergrad student;PhD student;Professor;Researcher",
"rating": "1;6;6;10",
"confidence": "",
"rating_avg": 5.75,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "d-JYso87y6s",
"title": "Frame Mining: a Free Lunch for Learning Robotic Manipulation from 3D Point Clouds",
"track": "main",
"status": "Poster",
"keywords": "point cloud;coordinate frame;robot manipulation;3D;RL",
"primary_area": "",
"author": "Minghua Liu;Xuanlin Li;Zhan Ling;Yangyan Li;Hao Su",
"authorids": "~Minghua_Liu1;~Xuanlin_Li1;~Zhan_Ling2;~Yangyan_Li1;~Hao_Su1",
"aff": "University of California, San Diego;University of California, San Diego;Qualcomm Inc, QualComm;Alibaba Group;University of California, San Diego",
"aff_domain": "ucsd.edu;ucsd.edu;qti.qualcomm.com;alibaba-inc.com;ucsd.edu",
"position": "PhD student;PhD student;Intern;Researcher;Assistant Professor",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "eI8CZ2s267o",
"title": "Learning Markerless Robot-Depth Camera Calibration and End-Effector Pose Estimation",
"track": "main",
"status": "Poster",
"keywords": "Camera Calibration;Pose Estimation;Perception",
"primary_area": "",
"author": "Bugra Can Sefercik;Baris Akgun",
"authorids": "~Bugra_Can_Sefercik1;~Baris_Akgun1",
"aff": "Ko\u00e7 University;Koc University",
"aff_domain": "ku.edu.tr;ku.edu.tr",
"position": "MS student;Assistant Professor",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "esOrVR_8-rc",
"title": "Generalization with Lossy Affordances: Leveraging Broad Offline Data for Learning Visuomotor Tasks",
"track": "main",
"status": "Oral",
"keywords": "Reinforcement Learning;Representation Learning;Planning",
"primary_area": "",
"author": "Kuan Fang;Patrick Yin;Ashvin Nair;Homer Rich Walke;Gengchen Yan;Sergey Levine",
"authorids": "~Kuan_Fang3;~Patrick_Yin1;~Ashvin_Nair1;~Homer_Rich_Walke1;~Gengchen_Yan1;~Sergey_Levine1",
"aff": "University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;Google",
"aff_domain": "berkeley.edu;berkeley.edu;berkeley.edu;berkeley.edu;google.com",
"position": "Undergrad student;PhD student;PhD student;Undergrad student;Research Scientist",
"rating": "6;10;10",
"confidence": "",
"rating_avg": 8.666666666666666,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "eyxfGTFZbNQ",
"title": "Sim-to-Real via Sim-to-Seg: End-to-end Off-road Autonomous Driving Without Real Data",
"track": "main",
"status": "Poster",
"keywords": "Sim-to-Real;Reinforcement Learning;Autonomous Driving",
"primary_area": "",
"author": "John So;Amber Xie;Sunggoo Jung;Jeffrey Edlund;Rohan Thakker;Ali-akbar Agha-mohammadi;Pieter Abbeel;Stephen James",
"authorids": "johnianrso@berkeley.edu;~Amber_Xie1;sunggoo.jung@jpl.nasa.gov;jeffrey.a.edlund@jpl.nasa.gov;rohan.a.thakker@jpl.nasa.gov;aliakbar.aghamohammadi@jpl.nasa.gov;~Pieter_Abbeel2;~Stephen_James1",
"aff": "University of California, Berkeley;Covariant;University of California, Berkeley",
"aff_domain": "berkeley.edu;covariant.ai;berkeley.edu",
"position": "Undergrad student;Founder;Postdoc",
"rating": "4;4;6;10",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "fXMV2CEwNVo",
"title": "SSL-Lanes: Self-Supervised Learning for Motion Forecasting in Autonomous Driving",
"track": "main",
"status": "Poster",
"keywords": "Motion Forecasting;Autonomous Driving;Self-Supervised Learning",
"primary_area": "",
"author": "Prarthana Bhattacharyya;Chengjie Huang;Krzysztof Czarnecki",
"authorids": "~Prarthana_Bhattacharyya1;c.huang@uwaterloo.ca;~Krzysztof_Czarnecki1",
"aff": "University of Waterloo;University of Waterloo",
"aff_domain": "uwaterloo.ca;uwaterloo.ca",
"position": "PhD student;Full Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "f_XmiyZcsjL",
"title": "Reciprocal MIND MELD: Improving Learning From Demonstration via Personalized, Reciprocal Teaching",
"track": "main",
"status": "Poster",
"keywords": "meta-learning;personalization;imitation learning",
"primary_area": "",
"author": "Mariah L Schrum;Erin Hedlund-Botti;Matthew Gombolay",
"authorids": "~Mariah_L_Schrum1;ehedlund6@gatech.edu;~Matthew_Gombolay1",
"aff": "Georgia Institute of Technology;Georgia Institute of Technology",
"aff_domain": "gatech.edu;cc.gatech.edu",
"position": "PhD student;Assistant Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 19,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "fnaMlJbRc4t",
"title": "Interpretable Self-Aware Neural Networks for Robust Trajectory Prediction",
"track": "main",
"status": "Poster",
"keywords": "autonomous vehicles;trajectory prediction;out-of-distribution detection;distribution shift;epistemic uncertainty estimation",
"primary_area": "",
"author": "Masha Itkina;Mykel Kochenderfer",
"authorids": "~Masha_Itkina1;~Mykel_Kochenderfer1",
"aff": "Stanford University;Stanford University",
"aff_domain": "stanford.edu;stanford.edu",
"position": "PhD student;Associate Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "ft8IeFe4-8e",
"title": "Manipulation via Membranes: High-Resolution and Highly Deformable Tactile Sensing and Control",
"track": "main",
"status": "Poster",
"keywords": "manipulation;tactile control;deformable tactile sensors",
"primary_area": "",
"author": "Miquel Oller;Mireia Planas i Lisbona;Dmitry Berenson;Nima Fazeli",
"authorids": "~Miquel_Oller1;mireiap@umich.edu;~Dmitry_Berenson1;~Nima_Fazeli1",
"aff": "University of Michigan - Ann Arbor;University of Michigan;University of Michigan",
"aff_domain": "umich.edu;umich.edu;umich.edu",
"position": "PhD student;Associate Professor;Assistant Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "gJhuiYQ6VGJ",
"title": "Deep Black-Box Reinforcement Learning with Movement Primitives",
"track": "main",
"status": "Poster",
"keywords": "Movement Primitives;Episode-Based;Black-Box;Deep Reinforcement Learning;Trust Regions",
"primary_area": "",
"author": "Fabian Otto;Onur Celik;Hongyi Zhou;Hanna Ziesche;Vien Anh Ngo;Gerhard Neumann",
"authorids": "~Fabian_Otto1;~Onur_Celik1;uokad@student.kit.edu;~Hanna_Ziesche1;~Vien_Anh_Ngo1;~Gerhard_Neumann2",
"aff": "Bosch Center for AI;Karlsruhe Institute of Technology;Bosch Center for Artificial Intelligence;Karlsruhe Institute of Technology;Robert Bosch GmbH, Bosch",
"aff_domain": "bosch.com;kit.edu;bosch.com;kit.edu;de.bosch.com",
"position": "PhD student;PhD student;Research Scientist;Full Professor;Research Scientist",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 20,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "gOW9pdOeqUc",
"title": "Lidar Line Selection with Spatially-Aware Shapley Value for Cost-Efficient Depth Completion",
"track": "main",
"status": "Poster",
"keywords": "Lidar;Shapley value;feature selection;depth completion",
"primary_area": "",
"author": "Kamil Adamczewski;Christos Sakaridis;Vaishakh Patil;Luc Van Gool",
"authorids": "~Kamil_Adamczewski1;~Christos_Sakaridis1;patil@vision.ee.ethz.ch;~Luc_Van_Gool1",
"aff": "Max Planck Institute for Intelligent Systems, Max-Planck Institute;ETHZ - ETH Zurich;KU Leuven",
"aff_domain": "tuebingen.mpg.de;ethz.ch;kuleuven.be",
"position": "PhD student;Postdoc;Emeritus",
"rating": "4;6;6",
"confidence": "",
"rating_avg": 5.333333333333333,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "gUtbYFHluAg",
"title": "SE(3)-Equivariant Point Cloud-Based Place Recognition",
"track": "main",
"status": "Poster",
"keywords": "Place Recognition;SE(3)-Invariant;Equivariant Representation Learning;3D Point Clouds",
"primary_area": "",
"author": "Chien Erh Lin;Jingwei Song;Ray Zhang;Minghan Zhu;Maani Ghaffari",
"authorids": "~Chien_Erh_Lin1;jingweso@umich.edu;rzh@umich.edu;~Minghan_Zhu1;~Maani_Ghaffari1",
"aff": "University of Michigan;University of Michigan;University of Michigan",
"aff_domain": "umich.edu;umich.edu;umich.edu",
"position": "PhD student;PhD student;Assistant Professor",
"rating": "4;4;6;10",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "h0Yb0U_-Tki",
"title": "Instruction-driven history-aware policies for robotic manipulations",
"track": "main",
"status": "Oral",
"keywords": "Robotics Manipulation;Language Instruction;Transformer",
"primary_area": "",
"author": "Pierre-Louis Guhur;Shizhe Chen;Ricardo Garcia Pinel;Makarand Tapaswi;Ivan Laptev;Cordelia Schmid",
"authorids": "~Pierre-Louis_Guhur1;~Shizhe_Chen1;~Ricardo_Garcia_Pinel1;~Makarand_Tapaswi1;~Ivan_Laptev1;~Cordelia_Schmid1",
"aff": "INRIA;INRIA;INRIA;Wadhwani Institute for Artificial Intelligence;INRIA Paris;Inria",
"aff_domain": "inria.fr;inria.fr;inria.fr;wadhwaniai.org;inria.fr;inria.fr",
"position": "PhD student;Postdoc;PhD student;Senior ML Scientist;Senior Researcher;Researcher",
"rating": "6;6;10",
"confidence": "",
"rating_avg": 7.333333333333333,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "h5g_VDJJfbt",
"title": "Learning Generalizable Dexterous Manipulation from Human Grasp Affordance",
"track": "main",
"status": "Poster",
"keywords": "Generalized policy learning;Dexterous manipulation;Affordance model;Reinforcement learning;Imitation learning",
"primary_area": "",
"author": "Yueh-Hua Wu;Jiashun Wang;Xiaolong Wang",
"authorids": "~Yueh-Hua_Wu1;~Jiashun_Wang1;~Xiaolong_Wang3",
"aff": "University of California, San Diego;University of California, San Diego",
"aff_domain": "ucsd.edu;ucsd.edu",
"position": "MS student;Assistant Professor",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "hW0tcXOJas2",
"title": "Multi-Robot Scene Completion: Towards Task-Agnostic Collaborative Perception",
"track": "main",
"status": "Poster",
"keywords": "Multi-Robot Perception;Scene Completion;Representation Learning",
"primary_area": "",
"author": "Yiming Li;Juexiao Zhang;Dekun Ma;Yue Wang;Chen Feng",
"authorids": "~Yiming_Li2;~Juexiao_Zhang1;~Dekun_Ma1;~Yue_Wang2;~Chen_Feng2",
"aff": "New York University;New York University;New York University;Massachusetts Institute of Technology;New York University",
"aff_domain": "nyu.edu;nyu.edu;nyu.edu;mit.edu;nyu.edu",
"position": "PhD student;MS student;Undergrad student;PhD student;Assistant Professor",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "iM932PeUi_7",
"title": "Decentralized Data Collection for Robotic Fleet Learning: A Game-Theoretic Approach",
"track": "main",
"status": "Poster",
"keywords": "",
"primary_area": "",
"author": "Oguzhan Akcin;Po-han Li;Shubhankar Agarwal;Sandeep P. Chinchali",
"authorids": "~Oguzhan_Akcin2;~Po-han_Li1;~Shubhankar_Agarwal1;~Sandeep_P._Chinchali1",
"aff": "The University of Texas at Austin;University of Texas, Austin;University of Texas at Austin",
"aff_domain": "utexas.edu;utexas.edu;utexas.edu",
"position": "PhD student;PhD student;Assistant Professor",
"rating": "1;6;6;6",
"confidence": "",
"rating_avg": 4.75,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "iRabxvK3j0",
"title": "Eliciting Compatible Demonstrations for Multi-Human Imitation Learning",
"track": "main",
"status": "Poster",
"keywords": "Interactive Imitation Learning;Active Demonstration Elicitation;Human Robot Interaction",
"primary_area": "",
"author": "Kanishk Gandhi;Siddharth Karamcheti;Madeline Liao;Dorsa Sadigh",
"authorids": "~Kanishk_Gandhi1;~Siddharth_Karamcheti1;~Madeline_Liao1;~Dorsa_Sadigh1",
"aff": "Stanford University;Computer Science Department, Stanford University;Stanford University;Stanford University",
"aff_domain": "stanford.edu;cs.stanford.edu;stanford.edu;stanford.edu",
"position": "PhD student;MS student;Assistant Professor;PhD student",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "iVxy2eO601U",
"title": "Skill-based Model-based Reinforcement Learning",
"track": "main",
"status": "Poster",
"keywords": "Model-Based Reinforcement Learning;Skill Dynamics Model",
"primary_area": "",
"author": "Lucy Xiaoyang Shi;Joseph J Lim;Youngwoon Lee",
"authorids": "~Lucy_Xiaoyang_Shi1;~Joseph_J_Lim1;~Youngwoon_Lee1",
"aff": "University of Southern California;Korea Advanced Institute of Science & Technology;University of Southern California",
"aff_domain": "usc.edu;kaist.ac.kr;usc.edu",
"position": "Undergrad student;Associate Professor;PhD student",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 22,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "jTh3rdEF3LH",
"title": "HUM3DIL: Semi-supervised Multi-modal 3D HumanPose Estimation for Autonomous Driving",
"track": "main",
"status": "Poster",
"keywords": "autonomous driving;perception;human pose;key points;skeletal representation",
"primary_area": "",
"author": "Andrei Zanfir;Mihai Zanfir;Alex Gorban;Jingwei Ji;Yin Zhou;Dragomir Anguelov;Cristian Sminchisescu",
"authorids": "~Andrei_Zanfir1;~Mihai_Zanfir1;~Alex_Gorban1;~Jingwei_Ji1;~Yin_Zhou1;~Dragomir_Anguelov1;~Cristian_Sminchisescu1",
"aff": "Google;Google;Waymo LLC;Waymo;Waymo;Lund University;Waymo",
"aff_domain": "google.com;google.com;waymo.com;waymo.com;waymo.com;lth.se;waymo.com",
"position": "Researcher;Researcher;Researcher;Researcher;Researcher;Professor;Senior Research Scientist",
"rating": "1;6;6;6",
"confidence": "",
"rating_avg": 4.75,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "lLq09gVoaTE",
"title": "Learning Visuo-Haptic Skewering Strategies for Robot-Assisted Feeding",
"track": "main",
"status": "Oral",
"keywords": "Assistive Feeding;Deformable Manipulation;Multisensory Learning",
"primary_area": "",
"author": "Priya Sundaresan;Suneel Belkhale;Dorsa Sadigh",
"authorids": "~Priya_Sundaresan1;~Suneel_Belkhale1;~Dorsa_Sadigh1",
"aff": "Stanford University;Stanford University;Stanford University",
"aff_domain": "stanford.edu;stanford.edu;stanford.edu",
"position": "PhD student;PhD student;Assistant Professor",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 17,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "lV-rNbXVSaO",
"title": "Semantic Abstraction: Open-World 3D Scene Understanding from 2D Vision-Language Models",
"track": "main",
"status": "Poster",
"keywords": "3D scene understanding;out-of-domain generalization;language",
"primary_area": "",
"author": "Huy Ha;Shuran Song",
"authorids": "~Huy_Ha1;~Shuran_Song3",
"aff": "Columbia University;Columbia University",
"aff_domain": "columbia.edu;cs.columbia.edu",
"position": "PhD student;Assistant Professor",
"rating": "4;6;6",
"confidence": "",
"rating_avg": 5.333333333333333,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "lb7B5Rw7tjw",
"title": "You Only Look at One: Category-Level Object Representations for Pose Estimation From a Single Example",
"track": "main",
"status": "Poster",
"keywords": "pose estimation;object representations;one-shot",
"primary_area": "",
"author": "Walter Goodwin;Ioannis Havoutis;Ingmar Posner",
"authorids": "~Walter_Goodwin1;~Ioannis_Havoutis1;~Ingmar_Posner1",
"aff": "University of Oxford;University of Oxford",
"aff_domain": "ox.ac.uk;ox.ac.uk",
"position": "PhD student;Full Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 19,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "mqry_xMzvCM",
"title": "GenLoco: Generalized Locomotion Controllers for Quadrupedal Robots",
"track": "main",
"status": "Poster",
"keywords": "Legged Locomotion;Reinforcement Learning;Transfer Learning",
"primary_area": "",
"author": "Gilbert Feng;Hongbo Zhang;Zhongyu Li;Xue Bin Peng;Bhuvan Basireddy;Linzhu Yue;ZHITAO SONG;Lizhi Yang;Yunhui Liu;Koushil Sreenath;Sergey Levine",
"authorids": "~Gilbert_Feng1;lifelongyuanzhb@gmail.com;~Zhongyu_Li3;~Xue_Bin_Peng1;~Bhuvan_Basireddy1;lzyue@mae.cuhk.edu.hk;~ZHITAO_SONG1;~Lizhi_Yang1;yhliu@cuhk.edu.hk;~Koushil_Sreenath1;~Sergey_Levine1",
"aff": "University of California, Berkeley;University of California, Berkeley;Simon Fraser University;University of California, Berkeley;The Chinese University of Hong Kong;University of California, Berkeley;University of California, Berkeley;Google",
"aff_domain": "berkeley.edu;berkeley.edu;sfu.ca;berkeley.edu;cuhk.edu.hk;berkeley.edu;berkeley.edu;google.com",
"position": "Undergrad student;PhD student;Assistant Professor;Undergrad student;PhD student;Undergrad student;Assistant Professor;Research Scientist",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 8,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "nBnHXevkjZ",
"title": "CC-3DT: Panoramic 3D Object Tracking via Cross-Camera Fusion",
"track": "main",
"status": "Poster",
"keywords": "Autonomous driving;3D multi-object tracking;cross-camera fusion",
"primary_area": "",
"author": "Tobias Fischer;Yung-Hsu Yang;Suryansh Kumar;Min Sun;Fisher Yu",
"authorids": "~Tobias_Fischer3;~Yung-Hsu_Yang1;~Suryansh_Kumar1;~Min_Sun1;~Fisher_Yu2",
"aff": "Swiss Federal Institute of Technology;National Tsing Hua University;Swiss Federal Institute of Technology;National Tsing Hua University;Swiss Federal Institute of Technology",
"aff_domain": "ethz.ch;nthu.edu.tw;ethz.ch;nthu.edu.tw;ethz.ch",
"position": "PhD student;MS student;Researcher;Assistant Professor;Assistant Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "nPw7jaGBrCG",
"title": "Leveraging Language for Accelerated Learning of Tool Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Language for Robotics;Tool Manipulation;Meta-learning",
"primary_area": "",
"author": "Allen Z. Ren;Bharat Govil;Tsung-Yen Yang;Karthik R Narasimhan;Anirudha Majumdar",
"authorids": "~Allen_Z._Ren1;bgovil@princeton.edu;~Tsung-Yen_Yang2;~Karthik_R_Narasimhan1;~Anirudha_Majumdar1",
"aff": "Toyota Research Institute;Princeton University;Princeton University;Princeton University",
"aff_domain": "tri.global;princeton.edu;princeton.edu;princeton.edu",
"position": "Intern;PhD student;Assistant Professor;Associate Professor",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 17,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "ndYsaoyzCWv",
"title": "Temporal Logic Imitation: Learning Plan-Satisficing Motion Policies from Demonstrations",
"track": "main",
"status": "Oral",
"keywords": "Learning from Demonstration;Dynamical Systems;Formal Methods;Linear Temporal Logic;Certifiable Imitation Learning",
"primary_area": "",
"author": "Yanwei Wang;Nadia Figueroa;Shen Li;Ankit Shah;Julie Shah",
"authorids": "~Yanwei_Wang1;nadiafig@seas.upenn.edu;~Shen_Li1;~Ankit_Shah2;~Julie_Shah2",
"aff": "Massachusetts Institute of Technology;Massachusetts Institute of Technology;Brown University;Massachusetts Institute of Technology",
"aff_domain": "mit.edu;mit.edu;brown.edu;mit.edu",
"position": "PhD student;PhD student;Postdoc;Professor",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 21,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "niys1Zt1blq",
"title": "COACH: Cooperative Robot Teaching",
"track": "main",
"status": "Poster",
"keywords": "Robot Teaching;Human-Robot Interaction",
"primary_area": "",
"author": "Cunjun Yu;Yiqing Xu;Linfeng Li;David Hsu",
"authorids": "~Cunjun_Yu1;~Yiqing_Xu1;~Linfeng_Li2;~David_Hsu1",
"aff": "National University of Singapore;National University of Singapore;National University of Singapore;National University of Singapore",
"aff_domain": "u.nus.edu;u.nus.edu;u.nus.edu;nus.edu.sg",
"position": "PhD student;PhD student;PhD student;Professor",
"rating": "1;6;10",
"confidence": "",
"rating_avg": 5.666666666666667,
"confidence_avg": 0,
"replies_avg": 44,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "nuAGobCwb8V",
"title": "Representation Learning for Object Detection from Unlabeled Point Cloud Sequences",
"track": "main",
"status": "Poster",
"keywords": "Representation learning;object detection;point cloud sequences",
"primary_area": "",
"author": "Xiangru Huang;Yue Wang;Vitor Campagnolo Guizilini;Rares Andrei Ambrus;Adrien Gaidon;Justin Solomon",
"authorids": "~Xiangru_Huang1;~Yue_Wang2;~Vitor_Campagnolo_Guizilini2;~Rares_Andrei_Ambrus1;~Adrien_Gaidon1;~Justin_Solomon1",
"aff": "Computer Science and Artificial Intelligence Laboratory, Electrical Engineering & Computer Science;Massachusetts Institute of Technology;Toyota Research Institute;Toyota Research Institute;Toyota Research Institute (TRI);Massachusetts Institute of Technology",
"aff_domain": "csail.mit.edu;mit.edu;tri.global;tri.global;tri.global;mit.edu",
"position": "Postdoc;PhD student;Staff Research Scientist;Researcher;Head of ML;Associate Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "o8dLx8OVcNk",
"title": "Learning Riemannian Stable Dynamical Systems via Diffeomorphisms",
"track": "main",
"status": "Poster",
"keywords": "Dynamical systems;Riemannian manifolds;Motion learning;Learning from demonstrations;Neural ODEs",
"primary_area": "",
"author": "Jiechao Zhang;Hadi Beik Mohammadi;Leonel Rozo",
"authorids": "~Jiechao_Zhang1;~Hadi_Beik_Mohammadi1;~Leonel_Rozo1",
"aff": "Karlsruher Institut f\u00fcr Technologie;Bosch;Robert Bosch GmbH, Bosch",
"aff_domain": "kit.edu;bosch.com;de.bosch.com",
"position": "MS student;PhD student;Researcher",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "oLLOSt3zV4",
"title": "Fast Lifelong Adaptive Inverse Reinforcement Learning from Demonstrations",
"track": "main",
"status": "Poster",
"keywords": "Personalized Learning;Learning from Heterogeneous Demonstration;Inverse Reinforcement Learning",
"primary_area": "",
"author": "Letian Chen;Sravan Jayanthi;Rohan R Paleja;Daniel Martin;Viacheslav Zakharov;Matthew Gombolay",
"authorids": "~Letian_Chen1;sjayanthi@gatech.edu;~Rohan_R_Paleja1;dmartin20576@gmail.com;chesl97@gmail.com;~Matthew_Gombolay1",
"aff": "Georgia Institute of Technology;Georgia Institute of Technology;Georgia Institute of Technology",
"aff_domain": "gatech.edu;gatech.edu;cc.gatech.edu",
"position": "PhD student;PhD student;Assistant Professor",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "oPRhm0Aben_",
"title": "Task-Relevant Failure Detection for Trajectory Predictors in Autonomous Vehicles",
"track": "main",
"status": "Poster",
"keywords": "Run-time Monitoring;Autonomous Vehicles;Trajectory Prediction",
"primary_area": "",
"author": "Alec Farid;Sushant Veer;Boris Ivanovic;Karen Leung;Marco Pavone",
"authorids": "~Alec_Farid1;~Sushant_Veer1;~Boris_Ivanovic1;~Karen_Leung2;~Marco_Pavone1",
"aff": "NVIDIA;NVIDIA;NVIDIA;Stanford University",
"aff_domain": "nvidia.com;nvidia.com;nvidia.com;stanford.edu",
"position": "Researcher;Researcher;Research Scientist;Associate Professor",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "oud6xgdpqVM",
"title": "QuaDUE-CCM: Interpretable Distributional Reinforcement Learning using Uncertain Contraction Metrics for Precise Quadrotor Trajectory Tracking",
"track": "main",
"status": "Poster",
"keywords": "Quadrotor trajectory tracking;Learning-based control",
"primary_area": "",
"author": "YANRAN WANG;James O'Keeffe;QIUCHEN QIAN;David Boyle",
"authorids": "~YANRAN_WANG3;~James_O'Keeffe1;~QIUCHEN_QIAN1;~David_Boyle1",
"aff": "Imperial College London;Imperial College London, Imperial College London;Imperial College London, Imperial College London;Imperial College London, Imperial College London",
"aff_domain": "imperial.ac.uk;imperial.ac.uk;imperial.ac.uk;imperial.ac.uk",
"position": "PhD student;Postdoc;PhD student;Associate Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 9,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "pPR--ivXwPD",
"title": "Exploring with Sticky Mittens: Reinforcement Learning with Expert Interventions via Option Templates",
"track": "main",
"status": "Poster",
"keywords": "Sample-Efficient Reinforcement Learning;Expert Intervention;Options;Planning with Primitives",
"primary_area": "",
"author": "Souradeep Dutta;Kaustubh Sridhar;Osbert Bastani;Edgar Dobriban;James Weimer;Insup Lee;Julia Parish-Morris",
"authorids": "~Souradeep_Dutta2;~Kaustubh_Sridhar1;~Osbert_Bastani1;~Edgar_Dobriban2;~James_Weimer1;~Insup_Lee1;~Julia_Parish-Morris1",
"aff": "University of Pennsylvania;AWS AI Labs;University of Pennsylvania;The Wharton School, University of Pennsylvania;Vanderbilt University;University of Pennsylvania;University of Pennsylvania",
"aff_domain": "upenn.edu;amazon.com;upenn.edu;wharton.upenn.edu;vanderbilt.edu;upenn.edu;upenn.edu",
"position": "Postdoc;Intern;Assistant Professor;Assistant Professor;Assistant Professor;Full Professor;Assistant Professor",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "pVSaWTgDmCu",
"title": "Planning Paths through Occlusions in Urban Environments",
"track": "main",
"status": "Oral",
"keywords": "Navigation;Occluded Environments;Semantic Scene Understanding",
"primary_area": "",
"author": "Yutao Han;Youya Xia;Guo-Jun Qi;Mark Campbell",
"authorids": "~Yutao_Han1;~Youya_Xia1;~Guo-Jun_Qi1;~Mark_Campbell1",
"aff": "Innopeak Technology (OPPO Research USA);Cornell University;Guangdong OPPO Mobile Telecommunications Corp.,Ltd.;Cornell University",
"aff_domain": "innopeaktech.com;cornell.edu;oppo.com;cornell.edu",
"position": "Researcher;PhD student;Dean and Chief Scientist;Full Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "pn-HOPBioUE",
"title": "Leveraging Fully Observable Policies for Learning under Partial Observability",
"track": "main",
"status": "Poster",
"keywords": "Partial Observability;Imitation Learning;Fully Observable Expert",
"primary_area": "",
"author": "Hai Huu Nguyen;Andrea Baisero;Dian Wang;Christopher Amato;Robert Platt",
"authorids": "~Hai_Huu_Nguyen1;~Andrea_Baisero1;~Dian_Wang1;~Christopher_Amato1;~Robert_Platt1",
"aff": "Northeastern University;Northeastern University;Northeastern University;Northeastern University;Northeastern University",
"aff_domain": "northeastern.edu;northeastern.edu;northeastern.edu;neu.edu;neu.edu",
"position": "PhD student;PhD student;PhD student;Assistant Professor;Associate Professor",
"rating": "4;4;4;6",
"confidence": "",
"rating_avg": 4.5,
"confidence_avg": 0,
"replies_avg": 19,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "qDtbMK67PJG",
"title": "Learning Bimanual Scooping Policies for Food Acquisition",
"track": "main",
"status": "Poster",
"keywords": "Bimanual Manipulation;Food Acquisition;Robot-Assisted Feeding;Deformable Object Manipulation",
"primary_area": "",
"author": "Jennifer Grannen;Yilin Wu;Suneel Belkhale;Dorsa Sadigh",
"authorids": "~Jennifer_Grannen1;~Yilin_Wu1;~Suneel_Belkhale1;~Dorsa_Sadigh1",
"aff": "Computer Science Department, Stanford University;Stanford University;Stanford University;Stanford University",
"aff_domain": "cs.stanford.edu;stanford.edu;stanford.edu;stanford.edu",
"position": "PhD student;MS student;PhD student;Assistant Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "qUhkhHw8Dz",
"title": "VideoDex: Learning Dexterity from Internet Videos",
"track": "main",
"status": "Poster",
"keywords": "Dexterous Manipulation;Large Scale Robotics;Imitation Learning",
"primary_area": "",
"author": "Kenneth Shaw;Shikhar Bahl;Deepak Pathak",
"authorids": "~Kenneth_Shaw1;~Shikhar_Bahl1;~Deepak_Pathak1",
"aff": "Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "cmu.edu;cmu.edu;cmu.edu",
"position": "MS student;PhD student;Assistant Professor",
"rating": "4;6;6",
"confidence": "",
"rating_avg": 5.333333333333333,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "qUvTmyGpnm7",
"title": "Learning Multi-Object Dynamics with Compositional Neural Radiance Fields",
"track": "main",
"status": "Poster",
"keywords": "Neural Radiance Fields;Dynamics Model Learning;Neural Implicit Representations;Visual Prediction;Graph Neural Networks;Representation Learning;Robotic Manipulation",
"primary_area": "",
"author": "Danny Driess;Zhiao Huang;Yunzhu Li;Russ Tedrake;Marc Toussaint",
"authorids": "~Danny_Driess1;~Zhiao_Huang1;~Yunzhu_Li1;~Russ_Tedrake1;~Marc_Toussaint3",
"aff": "Technische Universit\u00e4t Berlin;University of California, San Diego, University of California, San Diego;Massachusetts Institute of Technology;Massachusetts Institute of Technology;TU Berlin",
"aff_domain": "tu-berlin.de;eng.ucsd.edu;mit.edu;mit.edu;tu-berlin.de",
"position": "PhD student;PhD student;PhD student;Full Professor;Full Professor",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "qr0wqg8NqkL",
"title": "TrackletMapper: Ground Surface Segmentation and Mapping from Traffic Participant Trajectories",
"track": "main",
"status": "Poster",
"keywords": "Knowledge Distillation;Semantic Segmentation;Navigation",
"primary_area": "",
"author": "Jannik Z\u00fcrn;Sebastian Weber;Wolfram Burgard",
"authorids": "~Jannik_Z\u00fcrn1;sebastian.weber@students.uni-freiburg.de;wolfram.burgard@utn.de",
"aff": "Albert-Ludwigs-Universit\u00e4t Freiburg",
"aff_domain": "uni-freiburg.de",
"position": "PhD student",
"rating": "1;4;10;10",
"confidence": "",
"rating_avg": 6.25,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 1,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "qzMY915hCYX",
"title": "Safety-Enhanced Autonomous Driving Using Interpretable Sensor Fusion Transformer",
"track": "main",
"status": "Poster",
"keywords": "autonomous driving;sensor fusion;transformer;safety",
"primary_area": "",
"author": "Hao Shao;Letian Wang;Ruobing Chen;Hongsheng Li;Yu Liu",
"authorids": "~Hao_Shao1;~Letian_Wang1;~Ruobing_Chen1;~Hongsheng_Li3;~Yu_Liu2",
"aff": "Tsinghua University;University of Toronto;Sensetime Group;The Chinese University of Hong Kong;SenseTime",
"aff_domain": "tsinghua.edu.cn;utoronto.ca;sensetime.com;cuhk.edu.hk;sensetime.com",
"position": "MS student;PhD student;Researcher;Assistant Professor;Principal Researcher",
"rating": "4;6;10",
"confidence": "",
"rating_avg": 6.666666666666667,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "r-w9Wh-QVnH",
"title": "Real-time Mapping of Physical Scene Properties with an Autonomous Robot Experimenter",
"track": "main",
"status": "Poster",
"keywords": "Neural field;robot experimentation;physical properties",
"primary_area": "",
"author": "Iain Haughton;Edgar Sucar;Andre Mouton;Edward Johns;Andrew Davison",
"authorids": "~Iain_Haughton1;~Edgar_Sucar1;~Andre_Mouton3;~Edward_Johns1;~Andrew_Davison1",
"aff": "Imperial College London;Imperial College London;Dyson Ltd;Imperial College London;Imperial College London",
"aff_domain": "ic.ac.uk;imperial.ac.uk;dyson.com;imperial.ac.uk;imperial.ac.uk",
"position": "Researcher;PhD student;Researcher;Associate Professor;Full Professor",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 9,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "rJIwfTxTXvm",
"title": "Learning to Correct Mistakes: Backjumping in Long-Horizon Task and Motion Planning",
"track": "main",
"status": "Poster",
"keywords": "task and motion planning;heuristic learning;supervised leanring",
"primary_area": "",
"author": "Yoonchang Sung;Zizhao Wang;Peter Stone",
"authorids": "~Yoonchang_Sung1;~Zizhao_Wang3;~Peter_Stone1",
"aff": "University of Texas at Austin;University of Texas at Austin;University of Texas, Austin",
"aff_domain": "cs.utexas.edu;utexas.edu;utexas.edu",
"position": "Postdoc;PhD student;Full Professor",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "rbIzq-I84i_",
"title": "Graph network simulators can learn discontinuous, rigid contact dynamics",
"track": "main",
"status": "Poster",
"keywords": "graph networks;contacts;rigid body dynamics;simulation",
"primary_area": "",
"author": "Kelsey R Allen;Tatiana Lopez Guevara;Yulia Rubanova;Kim Stachenfeld;Alvaro Sanchez-Gonzalez;Peter Battaglia;Tobias Pfaff",
"authorids": "~Kelsey_R_Allen1;zepolitat@deepmind.com;~Yulia_Rubanova2;~Kim_Stachenfeld1;~Alvaro_Sanchez-Gonzalez1;~Peter_Battaglia1;~Tobias_Pfaff1",
"aff": "Google;Google DeepMind;Google DeepMind;Google DeepMind;Deepmind;Google DeepMind",
"aff_domain": "deepmind.com;deepmind.com;google.com;google.com;google.com;deepmind.com",
"position": "Research Scientist;Research Scientist;Senior Research Engineer;Researcher;Research scientist;Research Scientist",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 9,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "s6NEzqZKaP-",
"title": "Visuotactile Affordances for Cloth Manipulation with Local Control",
"track": "main",
"status": "Poster",
"keywords": "Multi-modal learning;Cloth manipulation;Tactile control",
"primary_area": "",
"author": "Neha Sunil;Shaoxiong Wang;Yu She;Edward Adelson;Alberto Rodriguez Garcia",
"authorids": "~Neha_Sunil1;~Shaoxiong_Wang1;shey@purdue.edu;~Edward_Adelson1;~Alberto_Rodriguez_Garcia1",
"aff": "Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology;Massachusetts Institute of Technology",
"aff_domain": "mit.edu;mit.edu;mit.edu;mit.edu",
"position": "PhD student;PhD student;Full Professor;Associate Professor",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "sK2aWU7X9b8",
"title": "Training Robots to Evaluate Robots: Example-Based Interactive Reward Functions for Policy Learning",
"track": "main",
"status": "Oral",
"keywords": "Reinforcement Learning;Interactive Perception;Task Specification",
"primary_area": "",
"author": "Kun Huang;Edward S. Hu;Dinesh Jayaraman",
"authorids": "~Kun_Huang6;~Edward_S._Hu1;~Dinesh_Jayaraman2",
"aff": "School of Engineering and Applied Science, University of Pennsylvania;University of Pennsylvania;University of Pennsylvania",
"aff_domain": "seas.upenn.edu;upenn.edu;upenn.edu",
"position": "MS student;Assistant Professor;PhD student",
"rating": "10;10;10;10",
"confidence": "",
"rating_avg": 10.0,
"confidence_avg": 0,
"replies_avg": 23,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "sygvGP-YLfx",
"title": "See, Hear, and Feel: Smart Sensory Fusion for Robotic Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Multisensory Perception;Robotic Manipulation;Robot Learning",
"primary_area": "",
"author": "Hao Li;Yizhi Zhang;Junzhe Zhu;Shaoxiong Wang;Michelle A Lee;Huazhe Xu;Edward Adelson;Li Fei-Fei;Ruohan Gao;Jiajun Wu",
"authorids": "~Hao_Li23;~Yizhi_Zhang1;~Junzhe_Zhu1;~Shaoxiong_Wang1;~Michelle_A_Lee1;~Huazhe_Xu1;~Edward_Adelson1;~Li_Fei-Fei1;~Ruohan_Gao2;~Jiajun_Wu1",
"aff": "Stanford University;Stanford University;Stanford University;Massachusetts Institute of Technology;New York University;Stanford University;Massachusetts Institute of Technology;Stanford University;Stanford University;Stanford University",
"aff_domain": "stanford.edu;stanford.edu;stanford.edu;mit.edu;nyu.edu;stanford.edu;mit.edu;stanford.edu;cs.stanford.edu;stanford.edu",
"position": "MS student;MS student;MS student;PhD student;Assistant Professor;Postdoc;Full Professor;Full Professor;Postdoc;Assistant Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 10,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "t-IO7wCaNgH",
"title": "Learning Temporally Extended Skills in Continuous Domains as Symbolic Actions for Planning",
"track": "main",
"status": "Oral",
"keywords": "temporally extended skill learning;hierarchical reinforcement learning;diverse skill learning",
"primary_area": "",
"author": "Jan Achterhold;Markus Krimmel;Joerg Stueckler",
"authorids": "~Jan_Achterhold1;~Markus_Krimmel1;~Joerg_Stueckler2",
"aff": "University of Tuebingen;Max Planck Institute for Intelligent Systems;Max Planck Institute for Intelligent Systems, Max-Planck Institute",
"aff_domain": "uni-tuebingen.de;is.tuebingen.mpg.de;tuebingen.mpg.de",
"position": "PhD student;Undergrad student;Group Leader",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "tGbpgz6yOrI",
"title": "R3M: A Universal Visual Representation for Robot Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Visual Representation Learning;Robotic Manipulation",
"primary_area": "",
"author": "Suraj Nair;Aravind Rajeswaran;Vikash Kumar;Chelsea Finn;Abhinav Gupta",
"authorids": "~Suraj_Nair1;~Aravind_Rajeswaran1;~Vikash_Kumar2;~Chelsea_Finn1;~Abhinav_Gupta1",
"aff": "Meta Facebook;Meta Facebook;Meta Facebook;Google;Meta Facebook",
"aff_domain": "facebook.com;meta.com;facebook.com;google.com;fb.com",
"position": "Student Researcher;Research Scientist;Researcher;Research Scientist;Researcher",
"rating": "1;6;10",
"confidence": "",
"rating_avg": 5.666666666666667,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "tJE1Yyi8fUX",
"title": "DexPoint: Generalizable Point Cloud Reinforcement Learning for Sim-to-Real Dexterous Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Dexterous Manipulation;Policy Learning;Point Clouds;Sim-to-Real",
"primary_area": "",
"author": "Yuzhe Qin;Binghao Huang;Zhao-Heng Yin;Hao Su;Xiaolong Wang",
"authorids": "~Yuzhe_Qin1;~Binghao_Huang1;~Zhao-Heng_Yin1;~Hao_Su1;~Xiaolong_Wang3",
"aff": "University of California, San Diego;University of California, San Diego;University of California, San Diego;University of California, San Diego;Hong Kong University of Science and Technology",
"aff_domain": "ucsd.edu;ucsd.edu;ucsd.edu;ucsd.edu;ust.hk",
"position": "PhD student;MS student;Assistant Professor;Assistant Professor;MPhil",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "tVgD4METs6o",
"title": "Motion Style Transfer: Modular Low-Rank Adaptation for Deep Motion Forecasting",
"track": "main",
"status": "Poster",
"keywords": "Motion Forecasting;Trajectory Prediction;Distribution Shifts;Transfer Learning",
"primary_area": "",
"author": "Parth Kothari;Danya Li;Yuejiang Liu;Alexandre Alahi",
"authorids": "~Parth_Kothari1;~Danya_Li1;~Yuejiang_Liu1;~Alexandre_Alahi3",
"aff": "Swiss Federal Institute of Technology Lausanne;EPFL - EPF Lausanne;Swiss Federal Institute of Technology Lausanne;EPFL",
"aff_domain": "epfl.ch;epfl.ch;epfl.ch;epfl.ch",
"position": "PhD student;MS student;PhD student;Associate Professor",
"rating": "4;4;6;6;6",
"confidence": "",
"rating_avg": 5.2,
"confidence_avg": 0,
"replies_avg": 17,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "teEnA3L4aRe",
"title": "DiffStack: A Differentiable and Modular Control Stack for Autonomous Vehicles",
"track": "main",
"status": "Poster",
"keywords": "Autonomous Vehicles;Differentiable Algorithms;Motion Forecasting;Planning;Control",
"primary_area": "",
"author": "Peter Karkus;Boris Ivanovic;Shie Mannor;Marco Pavone",
"authorids": "~Peter_Karkus1;~Boris_Ivanovic1;~Shie_Mannor2;~Marco_Pavone1",
"aff": "NVIDIA;NVIDIA;Technion - Israel Institute of Technology, Technion;Stanford University",
"aff_domain": "nvidia.com;nvidia.com;technion.il;stanford.edu",
"position": "Researcher;Researcher;Full Professor;Associate Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "th7GW868Pok",
"title": "Proactive Robot Assistance via Spatio-Temporal Object Modeling",
"track": "main",
"status": "Poster",
"keywords": "Proactive Robot Assistance;Spatio-Temporal Object Tracking",
"primary_area": "",
"author": "Maithili Patel;Sonia Chernova",
"authorids": "~Maithili_Patel1;~Sonia_Chernova2",
"aff": "Allen Institute for Artificial Intelligence;Georgia Institute of Technology",
"aff_domain": "allenai.org;gatech.edu",
"position": "Research Intern;Associate Professor",
"rating": "4;4;6;10",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 10,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "tiPHpS4eA4",
"title": "Towards Scale Balanced 6-DoF Grasp Detection in Cluttered Scenes",
"track": "main",
"status": "Poster",
"keywords": "Grasp Detection;Point-cloud Representation;Scale Balance",
"primary_area": "",
"author": "Haoxiang Ma;Di Huang",
"authorids": "~Haoxiang_Ma1;~Di_Huang4",
"aff": "Beihang University;Beihang University",
"aff_domain": "buaa.edu.cn;buaa.edu.cn",
"position": "PhD student;Full Professor",
"rating": "6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "tyXMrpEMkDb",
"title": "Detecting Incorrect Visual Demonstrations for Improved Policy Learning",
"track": "main",
"status": "Poster",
"keywords": "Imitation Learning;Visual Demonstrations;Incorrect Demonstrations",
"primary_area": "",
"author": "Mostafa Hussein;Momotaz Begum",
"authorids": "~Mostafa_Hussein1;~Momotaz_Begum1",
"aff": "computer science , University of New Hampshire;University of New Hampshire",
"aff_domain": "cs.unh.edu;unh.edu",
"position": "PhD student;Associate Professor",
"rating": "4;6;6;6",
"confidence": "",
"rating_avg": 5.5,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "tyxyBj2w4vw",
"title": "Planning with Spatial-Temporal Abstraction from Point Clouds for Deformable Object Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Long horizon planning;deformable object manipulation",
"primary_area": "",
"author": "Xingyu Lin;Carl Qi;Yunchu Zhang;Zhiao Huang;Katerina Fragkiadaki;Yunzhu Li;Chuang Gan;David Held",
"authorids": "~Xingyu_Lin1;~Carl_Qi1;~Yunchu_Zhang1;~Zhiao_Huang1;~Katerina_Fragkiadaki1;~Yunzhu_Li1;~Chuang_Gan1;~David_Held1",
"aff": "Carnegie Mellon University;Carnegie Mellon University;Carnegie Mellon University;University of California, San Diego, University of California, San Diego;Carnegie Mellon University;Massachusetts Institute of Technology;MIT-IBM Watson AI Lab;Carnegie Mellon University",
"aff_domain": "cmu.edu;andrew.cmu.edu;cmu.edu;eng.ucsd.edu;cmu.edu;mit.edu;ibm.com;cmu.edu",
"position": "PhD student;MS student;MS student;PhD student;Assistant Professor;PhD student;PhD student;Assistant Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 12,
"authors#_avg": 8,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "u4QXJbcvx8u",
"title": "Laplace Approximation Based Epistemic Uncertainty Estimation in 3D Object Detection",
"track": "main",
"status": "Poster",
"keywords": "Laplace approximation;epistemic uncertainty;3D object detection",
"primary_area": "",
"author": "Peng Yun;Ming Liu",
"authorids": "~Peng_Yun1;~Ming_Liu11",
"aff": "Department of Computer Science and Engineering, Hong Kong University of Science and Technology;Hong Kong University of Science and Technology",
"aff_domain": "cse.ust.hk;ust.hk",
"position": "PhD student;Associate Professor",
"rating": "4;4;6;6",
"confidence": "",
"rating_avg": 5.0,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "uCaNr6_dQB0",
"title": "Modularity through Attention: Efficient Training and Transfer of Language-Conditioned Policies for Robot Manipulation",
"track": "main",
"status": "Poster",
"keywords": "Language-Conditioned Learning;Attention;Imitation;Modularity",
"primary_area": "",
"author": "Yifan Zhou;Shubham Sonawani;Mariano Phielipp;Simon Stepputtis;Heni Amor",
"authorids": "~Yifan_Zhou4;~Shubham_Sonawani1;~Mariano_Phielipp2;~Simon_Stepputtis1;~Heni_Amor1",
"aff": "Arizona State University;Arizona State University;Intel Labs;Carnegie Mellon University;Arizona State University",
"aff_domain": "asu.edu;asu.edu;intel.com;cmu.edu;asu.edu",
"position": "PhD student;PhD student;Principal Researcher;Postdoc;Assistant Professor",
"rating": "6;6;10",
"confidence": "",
"rating_avg": 7.333333333333333,
"confidence_avg": 0,
"replies_avg": 18,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "uPWhEXjyvoo",
"title": "HTRON: Efficient Outdoor Navigation with Sparse Rewards via Heavy Tailed Adaptive Reinforce Algorithm",
"track": "main",
"status": "Poster",
"keywords": "Robot Navigation;Deep Reinforcement Learning;Heavy Tailed Policy",
"primary_area": "",
"author": "Kasun Weerakoon;Souradip Chakraborty;Nare Karapetyan;Adarsh Jagan Sathyamoorthy;Amrit Bedi;Dinesh Manocha",
"authorids": "~Kasun_Weerakoon1;~Souradip_Chakraborty1;knare@umd.edu;asathyam@umd.edu;~Amrit_Bedi1;~Dinesh_Manocha3",
"aff": "University of Maryland, College Park;University of Maryland, College Park;University of Maryland, College Park",
"aff_domain": "umd.edu;umd.edu;umd.edu",
"position": "PhD student;PhD student;Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "uUxDTZK3o3X",
"title": "Robustness Certification of Visual Perception Models via Camera Motion Smoothing",
"track": "main",
"status": "Poster",
"keywords": "Certifiable Robustness;Camera Motion Perturbation;Robotic Perception",
"primary_area": "",
"author": "Hanjiang Hu;Zuxin Liu;Linyi Li;Jiacheng Zhu;Ding Zhao",
"authorids": "~Hanjiang_Hu1;~Zuxin_Liu1;~Linyi_Li1;~Jiacheng_Zhu1;~Ding_Zhao1",
"aff": "Carnegie Mellon University;Microsoft Research;Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "cmu.edu;microsoft.com;andrew.cmu.edu;cmu.edu",
"position": "PhD student;Research Intern;PhD student;Assistant Professor",
"rating": "1;4;6;10",
"confidence": "",
"rating_avg": 5.25,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "uhIfIEIiWm_",
"title": "Offline Reinforcement Learning for Visual Navigation",
"track": "main",
"status": "Oral",
"keywords": "offline reinforcement learning;visual navigation;motion planning",
"primary_area": "",
"author": "Dhruv Shah;Arjun Bhorkar;Hrishit Leen;Ilya Kostrikov;Nicholas Rhinehart;Sergey Levine",
"authorids": "~Dhruv_Shah1;~Arjun_Bhorkar1;~Hrishit_Leen1;~Ilya_Kostrikov1;~Nicholas_Rhinehart1;~Sergey_Levine1",
"aff": "UC Berkeley;University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;University of California, Berkeley;Google",
"aff_domain": "berkeley.edu;berkeley.edu;berkeley.edu;berkeley.edu;berkeley.edu;google.com",
"position": "PhD student;Undergrad student;Undergrad student;Postdoc;Postdoc;Research Scientist",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "uhhA2OryTjj",
"title": "Robust Trajectory Prediction against Adversarial Attacks",
"track": "main",
"status": "Oral",
"keywords": "Adversarial Attack;Trajectory Prediction;Autonomous Driving",
"primary_area": "",
"author": "Yulong Cao;Danfei Xu;Xinshuo Weng;Zhuoqing Mao;Anima Anandkumar;Chaowei Xiao;Marco Pavone",
"authorids": "~Yulong_Cao1;~Danfei_Xu1;~Xinshuo_Weng3;~Zhuoqing_Mao1;~Anima_Anandkumar1;~Chaowei_Xiao2;~Marco_Pavone1",
"aff": "University of Michigan;NVIDIA;Carnegie Mellon University;University of Michigan;Stanford University;California Institute of Technology;Arizona State University",
"aff_domain": "umich.edu;nvidia.com;cmu.edu;umich.edu;stanford.edu;caltech.edu;asu.edu",
"position": "PhD student;Research Scientist;PhD student;Professor;Associate Professor;Full Professor;Assistant Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 5,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "uv1nRhayFII",
"title": "Contrastive Decision Transformers",
"track": "main",
"status": "Poster",
"keywords": "Reinforcement Learning;Decision Transformers;Contrastive Learning",
"primary_area": "",
"author": "Sachin G Konan;Esmaeil Seraj;Matthew Gombolay",
"authorids": "~Sachin_G_Konan1;~Esmaeil_Seraj1;~Matthew_Gombolay1",
"aff": "Georgia Institute of Technology;Georgia Institute of Technology;Georgia Institute of Technology",
"aff_domain": "gatech.edu;gatech.edu;cc.gatech.edu",
"position": "Undergrad student;PhD student;Assistant Professor",
"rating": "6;6;6;6",
"confidence": "",
"rating_avg": 6.0,
"confidence_avg": 0,
"replies_avg": 13,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "vyR0C7zvozS",
"title": "GLSO: Grammar-guided Latent Space Optimization for Sample-efficient Robot Design Automation",
"track": "main",
"status": "Poster",
"keywords": "Robot Design Automation;Latent Optimization;Graph Grammar",
"primary_area": "",
"author": "Jiaheng Hu;Julian Whitman;Howie Choset",
"authorids": "~Jiaheng_Hu1;jwhitman@cmu.edu;~Howie_Choset1",
"aff": "Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "cmu.edu;cmu.edu",
"position": "MS student;Full Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "wyCdmAJJY1F",
"title": "CausalAF: Causal Autoregressive Flow for Safety-Critical Driving Scenario Generation",
"track": "main",
"status": "Poster",
"keywords": "Causal Generative Models;Scenario Generation;Autonomous Driving",
"primary_area": "",
"author": "Wenhao Ding;Haohong Lin;Bo Li;Ding Zhao",
"authorids": "~Wenhao_Ding1;~Haohong_Lin1;~Bo_Li19;~Ding_Zhao1",
"aff": "Carnegie Mellon University;Carnegie Mellon University;University of Illinois, Urbana Champaign;Carnegie Mellon University",
"aff_domain": "cmu.edu;cmu.edu;illinois.edu;cmu.edu",
"position": "PhD student;PhD student;Assistant Professor;Assistant Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 19,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "x6INXlnUGro",
"title": "Learning Agile Skills via Adversarial Imitation of Rough Partial Demonstrations",
"track": "main",
"status": "Oral",
"keywords": "Adversarial;Imitation Learning;Legged Robots",
"primary_area": "",
"author": "Chenhao Li;Marin Vlastelica;Sebastian Blaes;Jonas Frey;Felix Grimminger;Georg Martius",
"authorids": "~Chenhao_Li3;~Marin_Vlastelica1;~Sebastian_Blaes1;jonfrey@ethz.ch;felix.grimminger@tuebingen.mpg.de;~Georg_Martius1",
"aff": "ETHZ - ETH Zurich;Max Planck Institute for Intelligent Systems, Max Planck Institute for Intelligent Systems;Max Planck Institute for Intelligent Systems;Max Planck Institute for Intelligent Systems, Max-Planck Institute",
"aff_domain": "ethz.ch;is.tue.mpg.de;tuebingen.mpg.de;tuebingen.mpg.de",
"position": "MS student;PhD student;Assistant Professor;PhD student",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 4,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "xC-68ANJeK_",
"title": "Learning Control Admissibility Models with Graph Neural Networks for Multi-Agent Navigation",
"track": "main",
"status": "Poster",
"keywords": "Graph Neural Networks;Multi-Agent Navigation",
"primary_area": "",
"author": "Chenning Yu;Hongzhan Yu;Sicun Gao",
"authorids": "~Chenning_Yu1;~Hongzhan_Yu1;~Sicun_Gao1",
"aff": "University of California, San Diego;University of California, San Diego",
"aff_domain": "ucsd.edu;ucsd.edu",
"position": "PhD student;PhD student",
"rating": "4;4;6",
"confidence": "",
"rating_avg": 4.666666666666667,
"confidence_avg": 0,
"replies_avg": 11,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "xK-UtqDpD7L",
"title": "Learning to Grasp the Ungraspable with Emergent Extrinsic Dexterity",
"track": "main",
"status": "Oral",
"keywords": "Manipulation;Reinforcement Learning;Extrinsic Dexterity",
"primary_area": "",
"author": "Wenxuan Zhou;David Held",
"authorids": "~Wenxuan_Zhou1;~David_Held1",
"aff": "Meta AI;Carnegie Mellon University",
"aff_domain": "meta.com;cmu.edu",
"position": "Intern;Assistant Professor",
"rating": "6;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 8,
"authors#_avg": 2,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "xjTUxBfIzE",
"title": "Topological Semantic Graph Memory for Image-Goal Navigation",
"track": "main",
"status": "Oral",
"keywords": "Landmark-Based Navigation;Incremental Topological Memory;Visual Navigation",
"primary_area": "",
"author": "Nuri Kim;Obin Kwon;Hwiyeon Yoo;Yunho Choi;Jeongho Park;Songhwai Oh",
"authorids": "~Nuri_Kim1;~Obin_Kwon1;~Hwiyeon_Yoo1;~Yunho_Choi1;~Jeongho_Park1;~Songhwai_Oh1",
"aff": "Seoul National University;Seoul National University;Seoul National University;Seoul National University;Seoul National University;Seoul National University",
"aff_domain": "snu.ac.kr;snu.ac.kr;snu.ac.kr;snu.ac.kr;snu.ac.kr;snu.ac.kr",
"position": "PhD student;PhD student;PhD student;PhD student;PhD student;Full Professor",
"rating": "4;6;6;10",
"confidence": "",
"rating_avg": 6.5,
"confidence_avg": 0,
"replies_avg": 17,
"authors#_avg": 6,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "y1t0c5eUk2w",
"title": "Fusing Priori and Posteriori Metrics for Automatic Dataset Annotation of Planar Grasping",
"track": "main",
"status": "Poster",
"keywords": "Grasp Detection;Grasp Metric;Grasp Dataset;Automatic Annotation",
"primary_area": "",
"author": "Hao Sha;Lai Qianen;Hongxiang Yu;Rong Xiong;Yue Wang",
"authorids": "~Hao_Sha3;~Lai_Qianen1;~Hongxiang_Yu1;~Rong_Xiong1;~Yue_Wang1",
"aff": "Zhejiang University;Zhejiang University;Zhejiang University;Zhejiang University",
"aff_domain": "zju.edu.cn;zju.edu.cn;zju.edu.cn;zju.edu.cn",
"position": "MS student;MS student;Full Professor;Associate Professor",
"rating": "6;6;6;6;10",
"confidence": "",
"rating_avg": 6.8,
"confidence_avg": 0,
"replies_avg": 15,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "yPJ9A0GWLg0",
"title": "Embodied Concept Learner: Self-supervised Learning of Concepts and Mapping through Instruction Following",
"track": "main",
"status": "Poster",
"keywords": "Embodied AI;Embodied Concept Learner;Instruction Following",
"primary_area": "",
"author": "Mingyu Ding;Yan Xu;Zhenfang Chen;David Daniel Cox;Ping Luo;Joshua B. Tenenbaum;Chuang Gan",
"authorids": "~Mingyu_Ding1;~Yan_Xu8;~Zhenfang_Chen1;~David_Daniel_Cox1;~Ping_Luo2;~Joshua_B._Tenenbaum1;~Chuang_Gan1",
"aff": "University of Hong Kong;The Chinese University of Hong Kong;MIT-IBM Watson AI lab;International Business Machines;Massachusetts Institute of Technology;MIT-IBM Watson AI Lab;The University of Hong Kong",
"aff_domain": "hku.hk;cuhk.edu.hk;ibm.com;ibm.com;mit.edu;ibm.com;hku.hk",
"position": "PhD student;PhD student;Researcher;IBM Director, MIT-IBM Watson AI Lab;Professor;PhD student;Assistant Professor",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 7,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "zNB_UVj5oKQ",
"title": "Meta-Learning Priors for Safe Bayesian Optimization",
"track": "main",
"status": "Oral",
"keywords": "Safety;Meta-Learning;Bayesian Optimization;Gaussian Processes",
"primary_area": "",
"author": "Jonas Rothfuss;Christopher Koenig;Alisa Rupenyan;Andreas Krause",
"authorids": "~Jonas_Rothfuss1;koenig@inspire.ethz.ch;~Alisa_Rupenyan2;~Andreas_Krause1",
"aff": "Swiss Federal Institute of Technology;Swiss Federal Institute of Technology;Swiss Federal Institute of Technology",
"aff_domain": "ethz.ch;ethz.ch;ethz.ch",
"position": "PhD student;Senior scientist;Full Professor",
"rating": "6;6;10;10",
"confidence": "",
"rating_avg": 8.0,
"confidence_avg": 0,
"replies_avg": 14,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "z_hPo2Fu9A3",
"title": "RAP: Risk-Aware Prediction for Robust Planning",
"track": "main",
"status": "Oral",
"keywords": "Risk Measures;Forecasting;Safety;Human-Robot Interaction",
"primary_area": "",
"author": "Haruki Nishimura;Jean Mercat;Blake Wulfe;Rowan Thomas McAllister;Adrien Gaidon",
"authorids": "~Haruki_Nishimura2;~Jean_Mercat1;~Blake_Wulfe1;~Rowan_Thomas_McAllister1;~Adrien_Gaidon1",
"aff": "Toyota Research Institute;Toyota Research Institute;Toyota Research Institute (TRI);Toyota Research Institute",
"aff_domain": "tri.global;tri.global;tri.global;tri.global",
"position": "Researcher;Machine Learning Scientist;Head of ML;Researcher",
"rating": "6;6;6;10",
"confidence": "",
"rating_avg": 7.0,
"confidence_avg": 0,
"replies_avg": 16,
"authors#_avg": 5,
"corr_rating_confidence": 0,
"project": "",
"github": ""
},
{
"id": "zldI4UpuG7v",
"title": "Deep Whole-Body Control: Learning a Unified Policy for Manipulation and Locomotion",
"track": "main",
"status": "Oral",
"keywords": "Mobile Manipulation;Whole-Body Control;Legged Locomotion",
"primary_area": "",
"author": "Zipeng Fu;Xuxin Cheng;Deepak Pathak",
"authorids": "~Zipeng_Fu1;~Xuxin_Cheng2;~Deepak_Pathak1",
"aff": "Stanford University;Carnegie Mellon University;Carnegie Mellon University",
"aff_domain": "stanford.edu;cs.cmu.edu;cmu.edu",
"position": "PhD student;MS student;Assistant Professor",
"rating": "10;10;10;10",
"confidence": "",
"rating_avg": 10.0,
"confidence_avg": 0,
"replies_avg": 19,
"authors#_avg": 3,
"corr_rating_confidence": 0,
"project": "",
"github": ""
}
] |