File size: 197,138 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 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 |
[
{
"id": "site_c7d3ee98c4",
"title": "$D^2$: Decentralized Training over Decentralized Data",
"author": "Hanlin Tang, Xiangru Lian, Ming Yan, Ce Zhang, Ji Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2485"
},
{
"id": "site_04356c035f",
"title": "A Boo(n) for Evaluating Architecture Performance",
"author": "Ondrej Bajgar, Rudolf Kadlec, Jan Kleindienst",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2260"
},
{
"id": "site_f8c1c5388f",
"title": "A Classification-Based Study of Covariate Shift in GAN Distributions",
"author": "Shibani Santurkar, Ludwig Schmidt, Aleksander Madry",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2413"
},
{
"id": "site_fb7aeb512c",
"title": "A Conditional Gradient Framework for Composite Convex Minimization with Applications to Semidefinite Programming",
"author": "Alp Yurtsever, Olivier Fercoq, Francesco Locatello, Volkan Cevher",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2152"
},
{
"id": "site_824a54d924",
"title": "A Delay-tolerant Proximal-Gradient Algorithm for Distributed Learning",
"author": "Konstantin Mishchenko, Franck Iutzeler, J\u00e9r\u00f4me Malick, Massih-Reza Amini",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2143"
},
{
"id": "site_7174bffb5b",
"title": "A Distributed Second-Order Algorithm You Can Trust",
"author": "Celestine Mendler-D\u00fcnner, Aurelien Lucchi, Matilde Gargiani, Yatao Bian, Thomas Hofmann, Martin Jaggi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2457"
},
{
"id": "site_041a7a8f60",
"title": "A Fast and Scalable Joint Estimator for Integrating Additional Knowledge in Learning Multiple Related Sparse Gaussian Graphical Models",
"author": "Beilun Wang, Arshdeep Sekhon, Yanjun Qi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2327"
},
{
"id": "site_21611394f0",
"title": "A Hierarchical Latent Vector Model for Learning Long-Term Structure in Music",
"author": "Adam Roberts, Jesse Engel, Colin Raffel, Curtis Hawthorne, Douglas Eck",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2420"
},
{
"id": "site_cf8104fd75",
"title": "A Primal-Dual Analysis of Global Optimality in Nonconvex Low-Rank Matrix Recovery",
"author": "Xiao Zhang, Lingxiao Wang, Yaodong Yu, Quanquan Gu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2096"
},
{
"id": "site_33ab2a44a7",
"title": "A Probabilistic Theory of Supervised Similarity Learning for Pointwise ROC Curve Optimization",
"author": "Robin Vogel, Aur\u00e9lien Bellet, St\u00e9phan Cl\u00e9men\u00e7on",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2118"
},
{
"id": "site_08b5f3c04a",
"title": "A Progressive Batching L-BFGS Method for Machine Learning",
"author": "Vijaya Raghavendra Bollapragada, Jorge Nocedal, Dheevatsa Mudigere, Hao-Jun M Shi, Peter Tang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2059"
},
{
"id": "site_53c8af5cbb",
"title": "A Reductions Approach to Fair Classification",
"author": "Alekh Agarwal, Alina Beygelzimer, Miroslav Dudik, John Langford, Hanna Wallach",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2361"
},
{
"id": "site_e5a6295692",
"title": "A Robust Approach to Sequential Information Theoretic Planning",
"author": "Sue Zheng, Jason Pacheco, John Fisher",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2372"
},
{
"id": "site_4f38ddc168",
"title": "A Semantic Loss Function for Deep Learning with Symbolic Knowledge",
"author": "Jingyi Xu, Zilu Zhang, Tal Friedman, Yitao Liang, Guy Van den Broeck",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2431"
},
{
"id": "site_b581133b81",
"title": "A Simple Stochastic Variance Reduced Algorithm with Fast Convergence Rates",
"author": "Kaiwen Zhou, Fanhua Shang, James Cheng",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2016"
},
{
"id": "site_785b96c555",
"title": "A Spectral Approach to Gradient Estimation for Implicit Distributions",
"author": "Jiaxin Shi, Shengyang Sun, Jun Zhu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2490"
},
{
"id": "site_c0b8e059bf",
"title": "A Spline Theory of Deep Learning",
"author": "Randall Balestriero, Richard Baraniuk",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2302"
},
{
"id": "site_3a1370149d",
"title": "A Theoretical Explanation for Perplexing Behaviors of Backpropagation-based Visualizations",
"author": "Weili Nie, Yang Zhang, Ankit Patel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2279"
},
{
"id": "site_4596a937e6",
"title": "A Two-Step Computation of the Exact GAN Wasserstein Distance",
"author": "Huidong Liu, Xianfeng GU, Samaras Dimitris",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2363"
},
{
"id": "site_4600c36179",
"title": "A Unified Framework for Structured Low-rank Matrix Learning",
"author": "Pratik Kumar Jawanpuria, Bamdev Mishra",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1930"
},
{
"id": "site_4ab62cfe3e",
"title": "A probabilistic framework for multi-view feature learning with many-to-many associations via neural networks",
"author": "Akifumi Okuno, Tetsuya Hada, Hidetoshi Shimodaira",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2020"
},
{
"id": "site_c37ea79bea",
"title": "ADMM and Accelerated ADMM as Continuous Dynamical Systems",
"author": "Guilherme Franca, Daniel Robinson, Rene Vidal",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2396"
},
{
"id": "site_05167f155e",
"title": "Accelerated Spectral Ranking",
"author": "Arpit Agarwal, Prathamesh Patil, Shivani Agarwal",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1999"
},
{
"id": "site_e4a4166677",
"title": "Accelerating Greedy Coordinate Descent Methods",
"author": "Haihao Lu, Robert Freund, Vahab Mirrokni",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2201"
},
{
"id": "site_8044589b02",
"title": "Accelerating Natural Gradient with Higher-Order Invariance",
"author": "Yang Song, Jiaming Song, Stefano Ermon",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2386"
},
{
"id": "site_534e159187",
"title": "Accurate Inference for Adaptive Linear Models",
"author": "Yash Deshpande, Lester Mackey, Vasilis Syrgkanis, Matt Taddy",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2060"
},
{
"id": "site_c3d31e86c4",
"title": "Accurate Uncertainties for Deep Learning Using Calibrated Regression",
"author": "Volodymyr Kuleshov, Nathan Fenner, Stefano Ermon",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2486"
},
{
"id": "site_e5f5f87b56",
"title": "Active Learning with Logged Data",
"author": "Songbai Yan, Kamalika Chaudhuri, Tara Javidi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1990"
},
{
"id": "site_5edc919900",
"title": "Active Testing: An Efficient and Robust Framework for Estimating Accuracy",
"author": "Phuc Nguyen, Deva Ramanan, Charless Fowlkes",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1946"
},
{
"id": "site_608c993bdc",
"title": "Adafactor: Adaptive Learning Rates with Sublinear Memory Cost",
"author": "Noam Shazeer, Mitchell Stern",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2446"
},
{
"id": "site_585c4e72a9",
"title": "Adaptive Exploration-Exploitation Tradeoff for Opportunistic Bandits",
"author": "Huasen Wu, Xueying Guo, Xin Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1996"
},
{
"id": "site_5dfb211c8a",
"title": "Adaptive Sampled Softmax with Kernel Based Sampling",
"author": "Guy Blanc, Steffen Rendle",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1953"
},
{
"id": "site_589defd244",
"title": "Adaptive Three Operator Splitting",
"author": "Fabian Pedregosa, Gauthier Gidel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1871"
},
{
"id": "site_5c629fb8a3",
"title": "Addressing Function Approximation Error in Actor-Critic Methods",
"author": "Scott Fujimoto, Herke van Hoof, David Meger",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2227"
},
{
"id": "site_3970c7f273",
"title": "Adversarial Attack on Graph Structured Data",
"author": "Hanjun Dai, Hui Li, Tian Tian, Xin Huang, Lin Wang, Jun Zhu, Le Song",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2294"
},
{
"id": "site_d783e4eab4",
"title": "Adversarial Learning with Local Coordinate Coding",
"author": "Jiezhang Cao, Yong Guo, Qingyao Wu, Chunhua Shen, Junzhou Huang, Mingkui Tan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1902"
},
{
"id": "site_949b9f4fa6",
"title": "Adversarial Regression with Multiple Learners",
"author": "Liang Tong, Sixie Yu, Scott Alfeld, Yevgeniy Vorobeychik",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2481"
},
{
"id": "site_6040f0a19c",
"title": "Adversarial Risk and the Dangers of Evaluating Against Weak Attacks",
"author": "Jonathan Uesato, Brendan O'Donoghue, Pushmeet Kohli, A\u00e4ron van den Oord",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2138"
},
{
"id": "site_58bfda866c",
"title": "Adversarial Time-to-Event Modeling",
"author": "Paidamoyo Chapfuwa, Chenyang Tao, Chunyuan Li, Courtney Page, Benjamin Goldstein, Lawrence Carin, Ricardo Henao",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2332"
},
{
"id": "site_041d17850f",
"title": "Adversarially Regularized Autoencoders",
"author": "Jake Zhao, Yoon Kim, Kelly Zhang, Alexander Rush, Yann LeCun",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2267"
},
{
"id": "site_0aa982f031",
"title": "Alternating Randomized Block Coordinate Descent",
"author": "Jelena Diakonikolas, Orecchia Lorenzo",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2445"
},
{
"id": "site_d0cc78c984",
"title": "An Algorithmic Framework of Variable Metric Over-Relaxed Hybrid Proximal Extra-Gradient Method",
"author": "Li Shen, Peng Sun, Yitong Wang, Wei Liu, Tong Zhang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1885"
},
{
"id": "site_613532a3da",
"title": "An Alternative View: When Does SGD Escape Local Minima?",
"author": "Bobby Kleinberg, Yuanzhi Li, Yang Yuan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1941"
},
{
"id": "site_eec789bc5e",
"title": "An Efficient Semismooth Newton based Algorithm for Convex Clustering",
"author": "Yancheng Yuan, Defeng Sun, Kim-Chuan Toh",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2003"
},
{
"id": "site_93659a85d1",
"title": "An Efficient, Generalized Bellman Update For Cooperative Inverse Reinforcement Learning",
"author": "Dhruv Malik, Malayandi Palaniappan, Jaime Fisac, Dylan Hadfield-Menell, Stuart Russell, Anca Dragan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1969"
},
{
"id": "site_1c72f8b3a7",
"title": "An Estimation and Analysis Framework for the Rasch Model",
"author": "Andrew Lan, Mung Chiang, Christoph Studer",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1977"
},
{
"id": "site_27c27142d6",
"title": "An Inference-Based Policy Gradient Method for Learning Options",
"author": "Matthew Smith, Herke van Hoof, Joelle Pineau",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2432"
},
{
"id": "site_1f0adecd41",
"title": "An Iterative, Sketching-based Framework for Ridge Regression",
"author": "Agniva Chowdhury, Jiasen Yang, Petros Drineas",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1895"
},
{
"id": "site_059f7d060c",
"title": "An Optimal Control Approach to Deep Learning and Applications to Discrete-Weight Neural Networks",
"author": "Qianxiao Li, IHPC Shuji Hao",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1992"
},
{
"id": "site_3973f41473",
"title": "Analysis of Minimax Error Rate for Crowdsourcing and Its Application to Worker Clustering Model",
"author": "Hideaki Imamura, Issei Sato, Masashi Sugiyama",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2211"
},
{
"id": "site_9e43924068",
"title": "Analyzing Uncertainty in Neural Machine Translation",
"author": "Myle Ott, Michael Auli, David Grangier, Marc'Aurelio Ranzato",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2292"
},
{
"id": "site_b34d572e04",
"title": "Analyzing the Robustness of Nearest Neighbors to Adversarial Examples",
"author": "Yizhen Wang, Somesh Jha, Kamalika Chaudhuri",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2076"
},
{
"id": "site_f3b566d09b",
"title": "Anonymous Walk Embeddings",
"author": "Sergey Ivanov, Evgeny Burnaev",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1875"
},
{
"id": "site_b3cad2efdb",
"title": "Approximate Leave-One-Out for Fast Parameter Tuning in High Dimensions",
"author": "Shuaiwen Wang, Wenda Zhou, Haihao Lu, Arian Maleki, Vahab Mirrokni",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2473"
},
{
"id": "site_4193c630e2",
"title": "Approximate message passing for amplitude based optimization",
"author": "Junjie Ma, Ji Xu, Arian Maleki",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2297"
},
{
"id": "site_266bfb3c34",
"title": "Approximation Algorithms for Cascading Prediction Models",
"author": "Matthew Streeter",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2035"
},
{
"id": "site_5a1a875e0b",
"title": "Approximation Guarantees for Adaptive Sampling",
"author": "Eric Balkanski, Yaron Singer",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1882"
},
{
"id": "site_68b2eace3c",
"title": "Asynchronous Byzantine Machine Learning (the case of SGD)",
"author": "Georgios Damaskinos, El Mahdi El Mhamdi, Rachid Guerraoui, Rhicheek Patra, Mahsa Taziki",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1963"
},
{
"id": "site_ce19a49ea5",
"title": "Asynchronous Decentralized Parallel Stochastic Gradient Descent",
"author": "Xiangru Lian, Wei Zhang, Ce Zhang, Ji Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2423"
},
{
"id": "site_3279afb1eb",
"title": "Asynchronous Stochastic Quasi-Newton MCMC for Non-Convex Optimization",
"author": "Umut Simsekli, Cagatay Yildiz, Thanh Huy Nguyen, Ali Taylan Cemgil, Ga\u00ebl RICHARD",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1877"
},
{
"id": "site_5e428b2b26",
"title": "Attention-based Deep Multiple Instance Learning",
"author": "Maximilian Ilse, Jakub Tomczak, Max Welling",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2029"
},
{
"id": "site_5e1818f879",
"title": "Augment and Reduce: Stochastic Inference for Large Categorical Distributions",
"author": "Francisco Ruiz, Michalis Titsias, Adji Bousso Dieng, David Blei",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1936"
},
{
"id": "site_0c764028ae",
"title": "Augmented CycleGAN: Learning Many-to-Many Mappings from Unpaired Data",
"author": "Amjad Almahairi, Sai Rajeswar, Alessandro Sordoni, Philip Bachman, Aaron Courville",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2408"
},
{
"id": "site_34d3522077",
"title": "AutoPrognosis: Automated Clinical Prognostic Modeling via Bayesian Optimization with Structured Kernel Learning",
"author": "Ahmed M. Alaa, Mihaela van der Schaar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2050"
},
{
"id": "site_aed39b4592",
"title": "Automatic Goal Generation for Reinforcement Learning Agents",
"author": "Carlos Florensa, David Held, Xinyang Geng, Pieter Abbeel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2287"
},
{
"id": "site_4925056311",
"title": "Autoregressive Convolutional Neural Networks for Asynchronous Time Series",
"author": "Mikolaj Binkowski, Gautier Marti, Philippe Donnat",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2310"
},
{
"id": "site_c03949354a",
"title": "Autoregressive Quantile Networks for Generative Modeling",
"author": "Georg Ostrovski, Will Dabney, Remi Munos",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2416"
},
{
"id": "site_a6074ed55c",
"title": "BOCK : Bayesian Optimization with Cylindrical Kernels",
"author": "ChangYong Oh, Efstratios Gavves, Max Welling",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2230"
},
{
"id": "site_cb1b9dc077",
"title": "BOHB: Robust and Efficient Hyperparameter Optimization at Scale",
"author": "Stefan Falkner, Aaron Klein, Frank Hutter",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2387"
},
{
"id": "site_46c35a894e",
"title": "Bandits with Delayed, Aggregated Anonymous Feedback",
"author": "Ciara Pike-Burke, Shipra Agrawal, Csaba Szepesvari, Steffen Gr\u00fcnew\u00e4lder",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2212"
},
{
"id": "site_9306ea75dd",
"title": "Batch Bayesian Optimization via Multi-objective Acquisition Ensemble for Automated Analog Circuit Design",
"author": "Wenlong Lyu, Fan Yang, Changhao Yan, Dian Zhou, Xuan Zeng",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1919"
},
{
"id": "site_de142218d4",
"title": "Bayesian Coreset Construction via Greedy Iterative Geodesic Ascent",
"author": "Trevor Campbell, Tamara Broderick",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1950"
},
{
"id": "site_1d090be322",
"title": "Bayesian Model Selection for Change Point Detection and Clustering",
"author": "othmane mazhar, Cristian R. Rojas, Inst. of Technology Carlo Fischione, Mohammad Reza Hesamzadeh",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2308"
},
{
"id": "site_0cdf74da27",
"title": "Bayesian Optimization of Combinatorial Structures",
"author": "Ricardo Baptista, Matthias Poloczek",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2444"
},
{
"id": "site_bc79ebcdad",
"title": "Bayesian Quadrature for Multiple Related Integrals",
"author": "Xiaoyue Xi, Francois-Xavier Briol, Mark Girolami",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1890"
},
{
"id": "site_6b15275739",
"title": "Bayesian Uncertainty Estimation for Batch Normalized Deep Networks",
"author": "Mattias Teye, Hossein Azizpour, Kevin Smith",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2039"
},
{
"id": "site_ae3118a983",
"title": "Been There, Done That: Meta-Learning with Episodic Recall",
"author": "Samuel Ritter, Jane Wang, Zeb Kurth-Nelson, Siddhant Jayakumar, Charles Blundell, Razvan Pascanu, Matthew Botvinick",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2252"
},
{
"id": "site_72d919d038",
"title": "Best Arm Identification in Linear Bandits with Linear Dimension Dependency",
"author": "Chao Tao, Sa\u00fal A. Blanco, Yuan Zhou",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1983"
},
{
"id": "site_44c1ea2a27",
"title": "Beyond 1/2-Approximation for Submodular Maximization on Massive Data Streams",
"author": "Ashkan Norouzi-Fard, Jakub Tarnawski, Slobodan Mitrovic, Amir Zandieh, Aidasadat Mousavifar, Ola Svensson",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2040"
},
{
"id": "site_73e8e178d3",
"title": "Beyond Finite Layer Neural Networks: Bridging Deep Architectures and Numerical Differential Equations",
"author": "Yiping Lu, Aoxiao Zhong, Quanzheng Li, Bin Dong",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1935"
},
{
"id": "site_ef11f0ddf4",
"title": "Beyond the One-Step Greedy Approach in Reinforcement Learning",
"author": "Yonathan Efroni, Gal Dalal, Bruno Scherrer, Shie Mannor",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2126"
},
{
"id": "site_2abe2368ac",
"title": "Bilevel Programming for Hyperparameter Optimization and Meta-Learning",
"author": "Luca Franceschi, Paolo Frasconi, Saverio Salzo, Riccardo Grazzi, Massimiliano Pontil",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2248"
},
{
"id": "site_4ac4115b83",
"title": "Binary Classification with Karmic, Threshold-Quasi-Concave Metrics",
"author": "Bowei Yan, Sanmi Koyejo, Kai Zhong, Pradeep Ravikumar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2232"
},
{
"id": "site_8a4187ef7a",
"title": "Binary Partitions with Approximate Minimum Impurity",
"author": "Eduardo Laber, Marco Molinaro, Felipe de A. Mello Pereira",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1929"
},
{
"id": "site_69b608fe01",
"title": "Black Box FDR",
"author": "Wesley Tansey, Yixin Wang, David Blei, Raul Rabadan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1954"
},
{
"id": "site_584718007f",
"title": "Black-Box Variational Inference for Stochastic Differential Equations",
"author": "Tom Ryder, Andrew Golightly, Stephen McGough, Dennis Prangle",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2034"
},
{
"id": "site_c267c2de9f",
"title": "Black-box Adversarial Attacks with Limited Queries and Information",
"author": "Andrew Ilyas, Logan Engstrom, Anish Athalye, Jessy Lin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2426"
},
{
"id": "site_a207a2e8e0",
"title": "Blind Justice: Fairness with Encrypted Sensitive Attributes",
"author": "Niki Kilbertus, Adria Gascon, Matt Kusner, Michael Veale, Krishna Gummadi, Adrian Weller",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1906"
},
{
"id": "site_86b374b113",
"title": "Born Again Neural Networks",
"author": "Tommaso Furlanello, Zachary Lipton, Michael Tschannen, Laurent Itti, Anima Anandkumar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2404"
},
{
"id": "site_251927b95c",
"title": "Bounding and Counting Linear Regions of Deep Neural Networks",
"author": "Thiago Serra, Christian Tjandraatmadja, Srikumar Ramalingam",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2449"
},
{
"id": "site_1c5645fd53",
"title": "Bounds on the Approximation Power of Feedforward Neural Networks",
"author": "Mohammad Mehrabi, Aslan Tchamkerten, MANSOOR I YOUSEFI",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2210"
},
{
"id": "site_7aa0c17b75",
"title": "Bucket Renormalization for Approximate Inference",
"author": "Sungsoo Ahn, Michael Chertkov, Adrian Weller, Jinwoo Shin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2157"
},
{
"id": "site_b365fd5320",
"title": "Budgeted Experiment Design for Causal Structure Learning",
"author": "AmirEmad Ghassami, Saber Salehkaleybar, Negar Kiyavash, Elias Bareinboim",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2085"
},
{
"id": "site_2eedc90660",
"title": "Byzantine-Robust Distributed Learning: Towards Optimal Statistical Rates",
"author": "Dong Yin, Yudong Chen, Kannan Ramchandran, Peter Bartlett",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2405"
},
{
"id": "site_fa9a7f1184",
"title": "CRAFTML, an Efficient Clustering-based Random Forest for Extreme Multi-label Learning",
"author": "Wissam Siblini, Frank Meyer, Pascale Kuntz",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2216"
},
{
"id": "site_ba413d949b",
"title": "CRVI: Convex Relaxation for Variational Inference",
"author": "Ghazal Fazelnia, John Paisley",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2175"
},
{
"id": "site_71e82e90ae",
"title": "Can Deep Reinforcement Learning Solve Erdos-Selfridge-Spencer Games?",
"author": "Maithra Raghu, Alexander Irpan, Jacob Andreas, Bobby Kleinberg, Quoc Le, Jon Kleinberg",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2221"
},
{
"id": "site_518c3cedd8",
"title": "Candidates vs. Noises Estimation for Large Multi-Class Classification Problem",
"author": "Lei Han, Yiheng Huang, Tong Zhang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2130"
},
{
"id": "site_1c3f684b35",
"title": "Canonical Tensor Decomposition for Knowledge Base Completion",
"author": "Timothee Lacroix, Nicolas Usunier, Guillaume Obozinski",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2246"
},
{
"id": "site_06bf025578",
"title": "Causal Bandits with Propagating Inference",
"author": "Akihiro Yabe, Daisuke Hatano, Hanna Sumita, Shinji Ito, Naonori Kakimura, Takuro Fukunaga, Ken-ichi Kawarabayashi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2074"
},
{
"id": "site_2f2aac3409",
"title": "Celer: a Fast Solver for the Lasso with Dual Extrapolation",
"author": "Mathurin MASSIAS, Joseph Salmon, Alexandre Gramfort",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2132"
},
{
"id": "site_5985bf13a1",
"title": "Characterizing Implicit Bias in Terms of Optimization Geometry",
"author": "Suriya Gunasekar, Jason Lee, Daniel Soudry, Nati Srebro",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2406"
},
{
"id": "site_620be9cd4b",
"title": "Characterizing and Learning Equivalence Classes of Causal DAGs under Interventions",
"author": "Karren Yang, Abigail Katoff, Caroline Uhler",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2097"
},
{
"id": "site_1e8a599111",
"title": "Chi-square Generative Adversarial Network",
"author": "Chenyang Tao, Liqun Chen, Ricardo Henao, Jianfeng Feng, Lawrence Carin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2369"
},
{
"id": "site_fba075e988",
"title": "Classification from Pairwise Similarity and Unlabeled Data",
"author": "Han Bao, Gang Niu, Masashi Sugiyama",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2134"
},
{
"id": "site_f9d5a3ddc0",
"title": "Clipped Action Policy Gradient",
"author": "Yasuhiro Fujita, Shin-ichi Maeda",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2018"
},
{
"id": "site_b7fba9b5da",
"title": "Closed-form Marginal Likelihood in Gamma-Poisson Matrix Factorization",
"author": "Louis Filstroff, Alberto Lumbreras, Cedric Fevotte",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2240"
},
{
"id": "site_c1d54314c6",
"title": "Clustering Semi-Random Mixtures of Gaussians",
"author": "Aravindan Vijayaraghavan, Pranjal Awasthi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2323"
},
{
"id": "site_e0c6693b03",
"title": "CoVeR: Learning Covariate-Specific Vector Representations with Tensor Decompositions",
"author": "Kevin Tian, Teng Zhang, James Zou",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2309"
},
{
"id": "site_c130b6e8a7",
"title": "Coded Sparse Matrix Multiplication",
"author": "Sinong Wang, Jiashang Liu, Ness Shroff",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1924"
},
{
"id": "site_fc51637ef2",
"title": "Communication-Computation Efficient Gradient Coding",
"author": "Min Ye, Emmanuel Abbe",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1994"
},
{
"id": "site_3b51e2570d",
"title": "Comparing Dynamics: Deep Neural Networks versus Glassy Systems",
"author": "Marco Baity-Jesi, Levent Sagun, Mario Geiger, Stefano Spigler, Gerard Arous, Chiara Cammarota, Yann LeCun, Matthieu Wyart, Giulio Biroli",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2190"
},
{
"id": "site_3a068989a6",
"title": "Comparison-Based Random Forests",
"author": "Siavash Haghiri, Damien Garreau, Ulrike von Luxburg",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1979"
},
{
"id": "site_56a49a1009",
"title": "Competitive Caching with Machine Learned Advice",
"author": "Thodoris Lykouris, Sergei Vassilvitskii",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2367"
},
{
"id": "site_09ce6cf5ad",
"title": "Competitive Multi-agent Inverse Reinforcement Learning with Sub-optimal Demonstrations",
"author": "IEMS Xingyu Wang, Diego Klabjan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2082"
},
{
"id": "site_0d8ebfd0aa",
"title": "Compiling Combinatorial Prediction Games",
"author": "Frederic Koriche",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2374"
},
{
"id": "site_a6462bb028",
"title": "Composable Planning with Attributes",
"author": "Amy Zhang, Sainbayar Sukhbaatar, Adam Lerer, Arthur Szlam, Facebook Rob Fergus",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2348"
},
{
"id": "site_4dc4e9836c",
"title": "Composite Functional Gradient Learning of Generative Adversarial Models",
"author": "Rie Johnson, Tong Zhang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2012"
},
{
"id": "site_6ca6ca66a0",
"title": "Composite Marginal Likelihood Methods for Random Utility Models",
"author": "Zhibing Zhao, Lirong Xia",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1997"
},
{
"id": "site_0fdf50b25f",
"title": "Compressing Neural Networks using the Variational Information Bottelneck",
"author": "Bin Dai, Chen Zhu, Baining Guo, David Wipf",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2411"
},
{
"id": "site_c9288e4c44",
"title": "Computational Optimal Transport: Complexity by Accelerated Gradient Descent Is Better Than by Sinkhorn's Algorithm",
"author": "Pavel Dvurechenskii, Alexander Gasnikov, Alexey Kroshnin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2468"
},
{
"id": "site_b0114a581c",
"title": "Conditional Neural Processes",
"author": "Marta Garnelo, Dan Rosenbaum, Chris Maddison, Tiago Ramalho, David Saxton, Murray Shanahan, Yee Teh, Danilo J. Rezende, S. M. Ali Eslami",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2253"
},
{
"id": "site_f7192064ba",
"title": "Conditional Noise-Contrastive Estimation of Unnormalised Models",
"author": "Ciwan Ceylan, Michael Gutmann",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2158"
},
{
"id": "site_ba92eb535a",
"title": "Configurable Markov Decision Processes",
"author": "Alberto Maria Metelli, Mirco Mutti, Marcello Restelli",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2137"
},
{
"id": "site_37944645b8",
"title": "Constant-Time Predictive Distributions for Gaussian Processes",
"author": "Geoff Pleiss, Jacob Gardner, Kilian Weinberger, Andrew Wilson",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2067"
},
{
"id": "site_16bb1949bf",
"title": "Constrained Interacting Submodular Groupings",
"author": "Andrew Cotter, Mahdi Milani Fard, Seungil You, Maya Gupta, Jeff Bilmes",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2129"
},
{
"id": "site_6874169aa4",
"title": "Constraining the Dynamics of Deep Probabilistic Models",
"author": "Marco Lorenzi, Maurizio Filippone",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2209"
},
{
"id": "site_385e606c5f",
"title": "ContextNet: Deep learning for Star Galaxy Classification",
"author": "Noble Kennamer, University of California David Kirkby, Alexander Ihler, University of California Francisco Javier Sanchez-Lopez",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2195"
},
{
"id": "site_f15c4dfe87",
"title": "Contextual Graph Markov Model: A Deep and Generative Approach to Graph Processing",
"author": "Davide Bacciu, Federico Errica, Alessio Micheli",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2084"
},
{
"id": "site_a2467cc01e",
"title": "Continual Reinforcement Learning with Complex Synapses",
"author": "Christos Kaplanis, Murray Shanahan, Claudia Clopath",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2165"
},
{
"id": "site_edb46bbba8",
"title": "Continuous and Discrete-time Accelerated Stochastic Mirror Descent for Strongly Convex Functions",
"author": "Pan Xu, Tianhao Wang, Quanquan Gu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2166"
},
{
"id": "site_f00e031fa6",
"title": "Continuous-Time Flows for Efficient Inference and Density Estimation",
"author": "Changyou Chen, Chunyuan Li, Liquan Chen, Wenlin Wang, Yunchen Pu, Lawrence Carin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2258"
},
{
"id": "site_9bd9b21a8b",
"title": "Convergence guarantees for a class of non-convex and non-smooth optimization problems",
"author": "Koulik Khamaru, Martin Wainwright",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2283"
},
{
"id": "site_9907cb6d68",
"title": "Convergent Tree Backup and Retrace with Function Approximation",
"author": "Ahmed Touati, Pierre-Luc Bacon, Doina Precup, Pascal Vincent",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2470"
},
{
"id": "site_7489372742",
"title": "Convolutional Imputation of Matrix Networks",
"author": "Qingyun Sun, Mengyuan Yan, David Donoho, stephen boyd",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2135"
},
{
"id": "site_4a36a09b3e",
"title": "Coordinated Exploration in Concurrent Reinforcement Learning",
"author": "Maria Dimakopoulou, Benjamin Van Roy",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1943"
},
{
"id": "site_781ff3bde3",
"title": "Covariate Adjusted Precision Matrix Estimation via Nonconvex Optimization",
"author": "Jinghui Chen, Pan Xu, Lingxiao Wang, Jian Ma, Quanquan Gu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2478"
},
{
"id": "site_12cf671d7e",
"title": "Crowdsourcing with Arbitrary Adversaries",
"author": "Matth\u00e4us Kleindessner, Pranjal Awasthi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2054"
},
{
"id": "site_fd5ac9c927",
"title": "Curriculum Learning by Transfer Learning: Theory and Experiments with Deep Networks",
"author": "Daphna Weinshall, Gad A Cohen, Dan Amir",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2021"
},
{
"id": "site_d2651ec0d9",
"title": "Cut-Pursuit Algorithm for Regularizing Nonsmooth Functionals with Graph Total Variation",
"author": "Hugo Raguet, loic landrieu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2392"
},
{
"id": "site_b2a7bd25c8",
"title": "CyCADA: Cycle-Consistent Adversarial Domain Adaptation",
"author": "Judy Hoffman, Eric Tzeng, Taesung Park, Jun-Yan Zhu, Philip Isola, Kate Saenko, Alexei Efros, Trevor Darrell",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2286"
},
{
"id": "site_1842bf47a9",
"title": "DCFNet: Deep Neural Network with Decomposed Convolutional Filters",
"author": "Qiang Qiu, Xiuyuan Cheng, robert Calderbank, Guillermo Sapiro",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2056"
},
{
"id": "site_d39885212a",
"title": "DICOD: Distributed Convolutional Coordinate Descent for Convolutional Sparse Coding",
"author": "Thomas Moreau, Laurent Oudre, Nicolas Vayatis",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1904"
},
{
"id": "site_024d788b9d",
"title": "DRACO: Byzantine-resilient Distributed Training via Redundant Gradients",
"author": "Lingjiao Chen, Hongyi Wang, Zachary Charles, Dimitris Papailiopoulos",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2474"
},
{
"id": "site_a5c26c181d",
"title": "DVAE++: Discrete Variational Autoencoders with Overlapping Transformations",
"author": "Arash Vahdat, William Macready, Zhengbing Bian, Amir Khoshaman, Evgeny Andriyash",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2273"
},
{
"id": "site_a2a42fa09f",
"title": "Data Summarization at Scale: A Two-Stage Submodular Approach",
"author": "Marko Mitrovic, Ehsan Kazemi, Morteza Zadimoghaddam, Amin Karbasi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2144"
},
{
"id": "site_525b11a2bb",
"title": "Data-Dependent Stability of Stochastic Gradient Descent",
"author": "Ilja Kuzborskij, Christoph H. Lampert",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1984"
},
{
"id": "site_e6021ecbbb",
"title": "Decentralized Submodular Maximization: Bridging Discrete and Continuous Settings",
"author": "Aryan Mokhtari, Hamed Hassani, Amin Karbasi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2358"
},
{
"id": "site_f722b269ea",
"title": "Decomposition of Uncertainty in Bayesian Deep Learning for Efficient and Risk-sensitive Learning",
"author": "Stefan Depeweg, Jose Miguel Hernandez-Lobato, Finale Doshi-Velez, Steffen Udluft",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2262"
},
{
"id": "site_521cd3e42e",
"title": "Decoupled Parallel Backpropagation with Convergence Guarantee",
"author": "Zhouyuan Huo, Bin Gu, Qian Yang, Heng Huang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2106"
},
{
"id": "site_7c599903b1",
"title": "Decoupling Gradient-Like Learning Rules from Representations",
"author": "Philip Thomas, Christoph Dann, Emma Brunskill",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2343"
},
{
"id": "site_6a2af20074",
"title": "Deep Asymmetric Multi-task Feature Learning",
"author": "Hae Beom Lee, Eunho Yang, Sung Ju Hwang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1960"
},
{
"id": "site_3d4b22ac6e",
"title": "Deep Bayesian Nonparametric Tracking",
"author": "Aonan Zhang, John Paisley",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2090"
},
{
"id": "site_b77641cac3",
"title": "Deep Density Destructors",
"author": "David Inouye, Pradeep Ravikumar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2437"
},
{
"id": "site_71ee3f5165",
"title": "Deep Linear Networks with Arbitrary Loss: All Local Minima Are Global",
"author": "Thomas Laurent, James von Brecht",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1993"
},
{
"id": "site_537e2419c3",
"title": "Deep Models of Interactions Across Sets",
"author": "Jason Hartford, Devon Graham, Kevin Leyton-Brown, Siamak Ravanbakhsh",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2428"
},
{
"id": "site_1b9ef63441",
"title": "Deep One-Class Classification",
"author": "Lukas Ruff, Nico G\u00f6rnitz, Lucas Deecke, Shoaib Ahmed Siddiqui, Robert Vandermeulen, Alexander Binder, Emmanuel M\u00fcller, Marius Kloft",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2483"
},
{
"id": "site_bc9fe261fc",
"title": "Deep Predictive Coding Network for Object Recognition",
"author": "Haiguang Wen, Kuan Han, Junxing Shi, Yizhen Zhang, Eugenio Culurciello, Zhongming Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2447"
},
{
"id": "site_c065f975cf",
"title": "Deep Reinforcement Learning in Continuous Action Spaces: a Case Study in the Game of Simulated Curling",
"author": "kyowoon Lee, Sol-A Kim, Jaesik Choi, Seong-Whan Lee",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2461"
},
{
"id": "site_e6b997dae2",
"title": "Deep Variational Reinforcement Learning for POMDPs",
"author": "Maximilian Igl, Luisa Zintgraf, Tuan Anh Le, Frank Wood, Shimon Whiteson",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2456"
},
{
"id": "site_8d6e41b2cc",
"title": "Deep k-Means: Re-Training and Parameter Sharing with Harder Cluster Assignments for Compressing Deep Convolutions",
"author": "Junru Wu, Yue Wang, Zhenyu Wu, Zhangyang Wang, Ashok Veeraraghavan, Yingyan Lin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2219"
},
{
"id": "site_909404228b",
"title": "Delayed Impact of Fair Machine Learning",
"author": "Lydia T. Liu, Sarah Dean, Esther Rolf, Max Simchowitz, Moritz Hardt",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2403"
},
{
"id": "site_03f05c3e1f",
"title": "Dependent Relational Gamma Process Models for Longitudinal Networks",
"author": "Sikun Yang, Heinz Koeppl",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1942"
},
{
"id": "site_d79edb7825",
"title": "Design of Experiments for Model Discrimination Hybridising Analytical and Data-Driven Approaches",
"author": "Simon Olofsson, Marc P Deisenroth, Ruth Misener",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2236"
},
{
"id": "site_17009d65b5",
"title": "Detecting and Correcting for Label Shift with Black Box Predictors",
"author": "Zachary Lipton, Yu-Xiang Wang, Alexander Smola",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2117"
},
{
"id": "site_b466969c97",
"title": "Detecting non-causal artifacts in multivariate linear regression models",
"author": "Dominik Janzing, Bernhard Sch\u00f6lkopf",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2007"
},
{
"id": "site_b668124779",
"title": "DiCE: The Infinitely Differentiable Monte Carlo Estimator",
"author": "Jakob Foerster, Gregory Farquhar, Maruan Al-Shedivat, Tim Rockt\u00e4schel, Eric Xing, Shimon Whiteson",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2266"
},
{
"id": "site_19d4caf97e",
"title": "Differentiable Abstract Interpretation for Provably Robust Neural Networks",
"author": "Matthew Mirman, Timon Gehr, Martin Vechev",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2477"
},
{
"id": "site_69ee65e12f",
"title": "Differentiable Compositional Kernel Learning for Gaussian Processes",
"author": "Shengyang Sun, Guodong Zhang, Chaoqi Wang, Wenyuan Zeng, Jiaman Li, Roger Grosse",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2378"
},
{
"id": "site_91501502eb",
"title": "Differentiable Dynamic Programming for Structured Prediction and Attention",
"author": "Arthur Mensch, Mathieu Blondel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2114"
},
{
"id": "site_8d0a957d85",
"title": "Differentiable plasticity: training plastic neural networks with backpropagation",
"author": "Thomas Miconi, Kenneth Stanley, Jeff Clune",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2078"
},
{
"id": "site_c365417a69",
"title": "Differentially Private Database Release via Kernel Mean Embeddings",
"author": "Matej Balog, Ilya Tolstikhin, Bernhard Sch\u00f6lkopf",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1964"
},
{
"id": "site_ce56534114",
"title": "Differentially Private Identity and Equivalence Testing of Discrete Distributions",
"author": "Maryam Aliakbarpour, Ilias Diakonikolas, MIT Ronitt Rubinfeld",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2415"
},
{
"id": "site_5083f809e0",
"title": "Differentially Private Matrix Completion Revisited",
"author": "Prateek Jain, Om Dipakbhai Thakkar, Abhradeep Thakurta",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2400"
},
{
"id": "site_1eb7b5b224",
"title": "Dimensionality-Driven Learning with Noisy Labels",
"author": "Xingjun Ma, Yisen Wang, Michael E. Houle, Shuo Zhou, Sarah Erfani, Shutao Xia, Sudanthi Wijewickrema, James Bailey",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1970"
},
{
"id": "site_de68cf9a35",
"title": "Discovering Interpretable Representations for Both Deep Generative and Discriminative Models",
"author": "Tameem Adel, Zoubin Ghahramani, Adrian Weller",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1908"
},
{
"id": "site_17c34dcf47",
"title": "Discovering and Removing Exogenous State Variables and Rewards for Reinforcement Learning",
"author": "Thomas Dietterich, George Trimponias, Zhitang Chen",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2093"
},
{
"id": "site_ae9729831e",
"title": "Discrete-Continuous Mixtures in Probabilistic Programming: Generalized Semantics and Inference Algorithms",
"author": "Yi Wu, Siddharth Srivastava, Nicholas Hay, Simon Du, Stuart Russell",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2009"
},
{
"id": "site_0e99be3ad1",
"title": "Disentangled Sequential Autoencoder",
"author": "Yingzhen Li, Stephan Mandt",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2147"
},
{
"id": "site_f233199921",
"title": "Disentangling by Factorising",
"author": "Hyunjik Kim, Andriy Mnih",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2146"
},
{
"id": "site_4fbd9a68a7",
"title": "Dissecting Adam: The Sign, Magnitude and Variance of Stochastic Gradients",
"author": "Lukas Balles, Philipp Hennig",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2002"
},
{
"id": "site_f0f66fcbf3",
"title": "Dissipativity Theory for Accelerating Stochastic Variance Reduction: A Unified Analysis of SVRG and Katyusha Using Semidefinite Programs",
"author": "Bin Hu, Stephen Wright, Laurent Lessard",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2471"
},
{
"id": "site_2315b0de75",
"title": "Distilling the Posterior in Bayesian Neural Networks",
"author": "Kuan-Chieh Wang, Paul Vicol, James Lucas, Li Gu, Roger Grosse, Richard Zemel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2362"
},
{
"id": "site_68940023af",
"title": "Distributed Asynchronous Optimization with Unbounded Delays: How Slow Can You Go?",
"author": "Zhengyuan Zhou, Panayotis Mertikopoulos, Nicholas Bambos, Peter Glynn, Yinyu Ye, Li-Jia Li, Li Fei-Fei",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2293"
},
{
"id": "site_d90e3fa860",
"title": "Distributed Clustering via LSH Based Data Partitioning",
"author": "Aditya Bhaskara, Pruthuvi Maheshakya Wijewardena",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2443"
},
{
"id": "site_db5409dba9",
"title": "Distributed Nonparametric Regression under Communication Constraints",
"author": "Yuancheng Zhu, John Lafferty",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2046"
},
{
"id": "site_b0d6c6253b",
"title": "Do Outliers Ruin Collaboration?",
"author": "Mingda Qiao",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1876"
},
{
"id": "site_d8d3971ccb",
"title": "Does Distributionally Robust Supervised Learning Give Robust Classifiers?",
"author": "Weihua Hu, Gang Niu, Issei Sato, Masashi Sugiyama",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2181"
},
{
"id": "site_29ed574e5b",
"title": "Dropout Training, Data-dependent Regularization, and Generalization Bounds",
"author": "Wenlong Mou, Yuchen Zhou, Jun Gao, Liwei Wang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2000"
},
{
"id": "site_7e2c76d271",
"title": "Dynamic Evaluation of Neural Sequence Models",
"author": "Ben Krause, Emmanuel Kahembwe, Iain Murray, Steve Renals",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2197"
},
{
"id": "site_cd6f1aea2e",
"title": "Dynamic Regret of Strongly Adaptive Methods",
"author": "Lijun Zhang, Tianbao Yang, rong jin, Zhi-Hua Zhou",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1989"
},
{
"id": "site_1c981eadcb",
"title": "Dynamical Isometry and a Mean Field Theory of CNNs: How to Train 10,000-Layer Vanilla Convolutional Neural Networks",
"author": "Lechao Xiao, Yasaman Bahri, Jascha Sohl-Dickstein, Samuel Schoenholz, Jeffrey Pennington",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2421"
},
{
"id": "site_eba0d8c27c",
"title": "Dynamical Isometry and a Mean Field Theory of RNNs: Gating Enables Signal Propagation in Recurrent Neural Networks",
"author": "Minmin Chen, Jeffrey Pennington, Samuel Schoenholz",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2464"
},
{
"id": "site_94ee42a02a",
"title": "Efficient Bias-Span-Constrained Exploration-Exploitation in Reinforcement Learning",
"author": "Ronan Fruit, Matteo Pirotta, Alessandro Lazaric, Ronald Ortner",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2036"
},
{
"id": "site_f7d6d93d1f",
"title": "Efficient First-Order Algorithms for Adaptive Signal Denoising",
"author": "Dmitrii Ostrovskii, Zaid Harchaoui",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2359"
},
{
"id": "site_cdb3ebccc4",
"title": "Efficient Gradient-Free Variational Inference using Policy Search",
"author": "Oleg Arenz, Gerhard Neumann, Mingjun Zhong",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2482"
},
{
"id": "site_8a4915dbe1",
"title": "Efficient Model-Based Deep Reinforcement Learning with Variational State Tabulation",
"author": "Dane Corneil, Wulfram Gerstner, Johanni Brea",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2242"
},
{
"id": "site_100784f032",
"title": "Efficient Neural Architecture Search via Parameters Sharing",
"author": "Hieu Pham, Melody Guan, Barret Zoph, Quoc Le, Jeff Dean",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2247"
},
{
"id": "site_c114b3aa1c",
"title": "Efficient Neural Audio Synthesis",
"author": "Nal Kalchbrenner, Erich Elsen, Karen Simonyan, Seb Noury, Norman Casagrande, Edward Lockhart, Florian Stimberg, A\u00e4ron van den Oord, Sander Dieleman, Koray Kavukcuoglu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2333"
},
{
"id": "site_241ee5fb66",
"title": "Efficient and Consistent Adversarial Bipartite Matching",
"author": "Rizal Fathony, Sima Behpour, Xinhua Zhang, Brian Ziebart",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2162"
},
{
"id": "site_d1dbd3f334",
"title": "Efficient end-to-end learning for quantizable representations",
"author": "Yeonwoo Jeong, Hyun Oh Song",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2123"
},
{
"id": "site_ec6ebfa497",
"title": "End-to-End Learning for the Deep Multivariate Probit Model",
"author": "Di Chen, Yexiang Xue, Carla Gomes",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2259"
},
{
"id": "site_503f6032ce",
"title": "End-to-end Active Object Tracking via Reinforcement Learning",
"author": "Wenhan Luo, Peng Sun, Fangwei Zhong, Wei Liu, Tong Zhang, Yizhou Wang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1889"
},
{
"id": "site_c88ed5f0bc",
"title": "Entropy-SGD optimizes the prior of a PAC-Bayes bound: Generalization properties of Entropy-SGD and data-dependent priors",
"author": "Gintare Karolina Dziugaite, Daniel Roy",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2274"
},
{
"id": "site_2f7bf2f8fa",
"title": "Equivalence of Multicategory SVM and Simplex Cone SVM: Fast Computations and Statistical Theory",
"author": "Guillaume Pouliot",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2427"
},
{
"id": "site_a29c60c162",
"title": "Error Compensated Quantized SGD and its Applications to Large-scale Distributed Optimization",
"author": "Jiaxiang Wu, Weidong Huang, Junzhou Huang, Tong Zhang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2148"
},
{
"id": "site_9c63002668",
"title": "Error Estimation for Randomized Least-Squares Algorithms via the Bootstrap",
"author": "Miles Lopes, Shusen Wang, Michael Mahoney",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2345"
},
{
"id": "site_4cbf8cf544",
"title": "Escaping Saddles with Stochastic Gradients",
"author": "Hadi Daneshmand, Jonas Kohler, Aurelien Lucchi, Thomas Hofmann",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2265"
},
{
"id": "site_19503ef34a",
"title": "Essentially No Barriers in Neural Network Energy Landscape",
"author": "Felix Draxler, Kambis Veschgini, Manfred Salmhofer, Fred Hamprecht",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2349"
},
{
"id": "site_b77048a69f",
"title": "Estimation of Markov Chain via Rank-constrained Likelihood",
"author": "XUDONG LI, Mengdi Wang, Anru Zhang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2304"
},
{
"id": "site_0cc7abbf74",
"title": "Explicit Inductive Bias for Transfer Learning with Convolutional Networks",
"author": "Xuhong LI, Yves Grandvalet, Franck Davoine",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2225"
},
{
"id": "site_4bedb27724",
"title": "Exploiting the Potential of Standard Convolutional Autoencoders for Image Restoration by Evolutionary Search",
"author": "Masanori SUGANUMA, Mete Ozay, Takayuki Okatani",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2329"
},
{
"id": "site_2a6f9fb7dc",
"title": "Exploring Hidden Dimensions in Accelerating Convolutional Neural Networks",
"author": "Zhihao Jia, Sina Lin, Charles Qi, Alex Aiken",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1891"
},
{
"id": "site_c3401f6df4",
"title": "Extracting Automata from Recurrent Neural Networks Using Queries and Counterexamples",
"author": "Gail Weiss, Yoav Goldberg, Eran Yahav",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2276"
},
{
"id": "site_0a05fd17d6",
"title": "Extreme Learning to Rank via Low Rank Assumption",
"author": "Minhao Cheng, Ian Davidson, Cho-Jui Hsieh",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2102"
},
{
"id": "site_2238e1d16f",
"title": "Fair and Diverse DPP-Based Data Summarization",
"author": "L. Elisa Celis, Vijay Keswani, Damian Straszak, Amit Jayant Deshpande, Tarun Kathuria, Nisheeth Vishnoi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2176"
},
{
"id": "site_d75c0411ac",
"title": "Fairness Without Demographics in Repeated Loss Minimization",
"author": "Tatsunori Hashimoto, Megha Srivastava, Hongseok Namkoong, Percy Liang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2434"
},
{
"id": "site_2a0497bbbb",
"title": "Fast Approximate Spectral Clustering for Dynamic Networks",
"author": "Lionel Martin, Andreas Loukas, Pierre Vandergheynst",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2028"
},
{
"id": "site_de0aa000bc",
"title": "Fast Bellman Updates for Robust MDPs",
"author": "Chin Pang Ho, Marek Petrik, Wolfram Wiesemann",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2318"
},
{
"id": "site_60eca1fc8b",
"title": "Fast Decoding in Sequence Models Using Discrete Latent Variables",
"author": "Lukasz Kaiser, Samy Bengio, Aurko Roy, Ashish Vaswani, Niki Parmar, Jakob Uszkoreit, Noam Shazeer",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2438"
},
{
"id": "site_1cafb3773e",
"title": "Fast Gradient-Based Methods with Exponential Rate: A Hybrid Control Framework",
"author": "Arman Sharifi Kolarijani, Peyman Mohajerin Esfahani, Tamas Keviczky",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2320"
},
{
"id": "site_49536df048",
"title": "Fast Information-theoretic Bayesian Optimisation",
"author": "Binxin Ru, Michael A Osborne, Mark Mcleod, Diego Granziol",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1973"
},
{
"id": "site_d7e5ab28d5",
"title": "Fast Maximization of Non-Submodular, Monotonic Functions on the Integer Lattice",
"author": "Alan Kuhnle, J. Smith, Victoria Crawford, My T. Thai",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1912"
},
{
"id": "site_ae860c6dd7",
"title": "Fast Parametric Learning with Activation Memorization",
"author": "Jack Rae, Chris Dyer, Peter Dayan, Timothy Lillicrap",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2299"
},
{
"id": "site_c9e229f20d",
"title": "Fast Stochastic AUC Maximization with $O(1/n)$-Convergence Rate",
"author": "Mingrui Liu, Xiaoxuan Zhang, Zaiyi Chen, Xiaoyu Wang, Tianbao Yang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1940"
},
{
"id": "site_1add75a61a",
"title": "Fast Variance Reduction Method with Stochastic Batch Size",
"author": "University of California Xuanqing Liu, Cho-Jui Hsieh",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2295"
},
{
"id": "site_818eab0f56",
"title": "Fast and Sample Efficient Inductive Matrix Completion via Multi-Phase Procrustes Flow",
"author": "Xiao Zhang, Simon Du, Quanquan Gu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1951"
},
{
"id": "site_cfd43c9928",
"title": "Fast and Scalable Bayesian Deep Learning by Weight-Perturbation in Adam",
"author": "Mohammad Emtiyaz Khan, Didrik Nielsen, Voot Tangkaratt, Wu Lin, Yarin Gal, Akash Srivastava",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2261"
},
{
"id": "site_ecc7454715",
"title": "Faster Derivative-Free Stochastic Algorithm for Shared Memory Machines",
"author": "Bin Gu, Zhouyuan Huo, Cheng Deng, Heng Huang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2022"
},
{
"id": "site_19a892a80b",
"title": "Feasible Arm Identification",
"author": "Julian Katz-Samuels, Clay Scott",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2064"
},
{
"id": "site_3bed604758",
"title": "Feedback-Based Tree Search for Reinforcement Learning",
"author": "Daniel Jiang, Emmanuel Ekwedike, Han Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2429"
},
{
"id": "site_e5e9385605",
"title": "Finding Influential Training Samples for Gradient Boosted Decision Trees",
"author": "Boris Sharchilev, Yury Ustinovskiy, Pavel Serdyukov, Maarten de Rijke",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2395"
},
{
"id": "site_40cefea546",
"title": "Firing Bandits: Optimizing Crowdfunding",
"author": "Lalit Jain, Kevin Jamieson",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2462"
},
{
"id": "site_20e3b621eb",
"title": "First Order Generative Adversarial Networks",
"author": "Calvin Seward, Thomas Unterthiner, Urs M Bergmann, Nikolay Jetchev, Sepp Hochreiter",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2073"
},
{
"id": "site_8683c9afb6",
"title": "Fitting New Speakers Based on a Short Untranscribed Sample",
"author": "Eliya Nachmani, Adam Polyak, Yaniv Taigman, Lior Wolf",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2149"
},
{
"id": "site_ba07787119",
"title": "Fixing a Broken ELBO",
"author": "Alexander Alemi, Ben Poole, Ian Fischer, Joshua V Dillon, Rif Saurous, Kevin Murphy",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2442"
},
{
"id": "site_c0f2043758",
"title": "Focused Hierarchical RNNs for Conditional Sequence Processing",
"author": "Rosemary Nan Ke, Konrad Zolna, Alessandro Sordoni, Zhouhan Lin, Adam Trischler, Yoshua Bengio, Joelle Pineau, Laurent Charlin, Christopher Pal",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2312"
},
{
"id": "site_6026b9d24f",
"title": "Fourier Policy Gradients",
"author": "Matthew Fellows, Kamil Ciosek, Shimon Whiteson",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2414"
},
{
"id": "site_d7a2929e36",
"title": "Frank-Wolfe with Subsampling Oracle",
"author": "Thomas Kerdreux, Fabian Pedregosa, Alexandre d'Aspremont",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2057"
},
{
"id": "site_4142f289f9",
"title": "Fully Decentralized Multi-Agent Reinforcement Learning with Networked Agents",
"author": "Kaiqing Zhang, Zhuoran Yang, Han Liu, Tong Zhang, Tamer Basar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2269"
},
{
"id": "site_5e1f2cd541",
"title": "Functional Gradient Boosting based on Residual Network Perception",
"author": "Atsushi Nitanda, Taiji Suzuki",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2184"
},
{
"id": "site_c815b4f2ee",
"title": "GAIN: Missing Data Imputation using Generative Adversarial Nets",
"author": "Jinsung Yoon, James Jordon, Mihaela van der Schaar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2025"
},
{
"id": "site_7f9b6cec96",
"title": "GEP-PG: Decoupling Exploration and Exploitation in Deep Reinforcement Learning Algorithms",
"author": "C\u00e9dric Colas, Olivier Sigaud, Pierre-Yves Oudeyer",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2151"
},
{
"id": "site_02bd91d4a9",
"title": "Gated Path Planning Networks",
"author": "Lisa Lee, Emilio Parisotto, Devendra Singh Chaplot, Eric Xing, Ruslan Salakhutdinov",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2488"
},
{
"id": "site_ddf307ed24",
"title": "Generalization without Systematicity: On the Compositional Skills of Sequence-to-Sequence Recurrent Networks",
"author": "Brenden Lake, Marco Baroni",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1938"
},
{
"id": "site_96933cedd6",
"title": "Generalized Earley Parser: Bridging Symbolic Grammars and Sequence Data for Future Prediction",
"author": "Siyuan Qi, Baoxiong Jia, Song-Chun Zhu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1920"
},
{
"id": "site_44e15bed16",
"title": "Generalized Robust Bayesian Committee Machine for Large-scale Gaussian Process Regression",
"author": "Haitao Liu, Jianfei Cai, Yi Wang, Yew Soon ONG",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1958"
},
{
"id": "site_214b2180b8",
"title": "Generative Temporal Models with Spatial Memory for Partially Observed Environments",
"author": "Marco Fraccaro, Danilo J. Rezende, Yori Zwols, Alexander Pritzel, S. M. Ali Eslami, Fabio Viola",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2128"
},
{
"id": "site_89c4a8e96a",
"title": "Geodesic Convolutional Shape Optimization",
"author": "Pierre Baque, Edoardo Remelli, Francois Fleuret, EPFL Pascal Fua",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1944"
},
{
"id": "site_9fdfb0739d",
"title": "Geometry Score: A Method For Comparing Generative Adversarial Networks",
"author": "Valentin Khrulkov, Ivan Oseledets",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2153"
},
{
"id": "site_c53f73f6bb",
"title": "Global Convergence of Policy Gradient Methods for the Linear Quadratic Regulator",
"author": "Maryam Fazel, Rong Ge, Sham Kakade, Mehran Mesbahi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2091"
},
{
"id": "site_299d346066",
"title": "Goodness-of-fit Testing for Discrete Distributions via Stein Discrepancy",
"author": "Jiasen Yang, Qiang Liu, Vinayak A Rao, Jennifer Neville",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1894"
},
{
"id": "site_ebd1cf36d4",
"title": "GradNorm: Gradient Normalization for Adaptive Loss Balancing in Deep Multitask Networks",
"author": "Zhao Chen, Vijay Badrinarayanan, Chen-Yu Lee, Andrew Rabinovich",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2419"
},
{
"id": "site_7ccf8ba04e",
"title": "Gradient Coding from Cyclic MDS Codes and Expander Graphs",
"author": "Netanel Raviv, Rashish Tandon, Alexandros Dimakis, Itzhak Tamo",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2063"
},
{
"id": "site_646caaff01",
"title": "Gradient Descent Learns One-hidden-layer CNN: Don't be Afraid of Spurious Local Minima",
"author": "Simon Du, Jason Lee, Yuandong Tian, Aarti Singh, Barnab\u00e1s P\u00f3czos",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1922"
},
{
"id": "site_8c7eed460d",
"title": "Gradient Descent for Sparse Rank-One Matrix Completion for Crowd-Sourced Aggregation of Sparsely Interacting Workers",
"author": "Yao Ma, Alex Olshevsky, Csaba Szepesvari, Venkatesh Saligrama",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2196"
},
{
"id": "site_bd58009682",
"title": "Gradient Primal-Dual Algorithm Converges to Second-Order Stationary Solution for Nonconvex Distributed Optimization Over Networks",
"author": "Mingyi Hong, Meisam Razaviyayn, Jason Lee",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2156"
},
{
"id": "site_e0d0c94ef2",
"title": "Gradient descent with identity initialization efficiently learns positive definite linear transformations by deep residual networks",
"author": "Peter Bartlett, Dave Helmbold, Phil Long",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1980"
},
{
"id": "site_3995f3a5f7",
"title": "Gradient-Based Meta-Learning with Learned Layerwise Metric and Subspace",
"author": "Yoonho Lee, Seungjin Choi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2202"
},
{
"id": "site_adbb8c6a69",
"title": "Gradually Updated Neural Networks for Large-Scale Image Recognition",
"author": "Siyuan Qiao, Zhishuai Zhang, Wei Shen, Bo Wang, Alan Yuille",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1905"
},
{
"id": "site_93364ca4a0",
"title": "Graph Networks as Learnable Physics Engines for Inference and Control",
"author": "Alvaro Sanchez-Gonzalez, Nicolas Heess, Jost Springenberg, Josh Merel, Martin Riedmiller, Raia Hadsell, Peter Battaglia",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2220"
},
{
"id": "site_6d767f1dda",
"title": "GraphRNN: Generating Realistic Graphs with Deep Auto-regressive Models",
"author": "Jiaxuan You, Rex (Zhitao) Ying, Xiang Ren, Will Hamilton, Jure Leskovec",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2373"
},
{
"id": "site_394264f343",
"title": "Graphical Nonconvex Optimization via an Adaptive Convex Relaxation",
"author": "Qiang Sun, Kean Ming Tan, Han Liu, Tong Zhang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1955"
},
{
"id": "site_77cf2fbac1",
"title": "Greed is Still Good: Maximizing Monotone Submodular+Supermodular (BP) Functions",
"author": "Wenruo Bai, Jeff Bilmes",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2350"
},
{
"id": "site_f07d01ad8e",
"title": "Hierarchical Clustering with Structural Constraints",
"author": "Evangelos Chatziafratis, Rad Niazadeh, Moses Charikar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2058"
},
{
"id": "site_6241a4f129",
"title": "Hierarchical Deep Generative Models for Multi-Rate Multivariate Time Series",
"author": "Zhengping Che, Sanjay Purushotham, Max Guangyu Li, Bo Jiang, Yan Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2108"
},
{
"id": "site_b50663f7fa",
"title": "Hierarchical Imitation and Reinforcement Learning",
"author": "Hoang Le, Nan Jiang, Alekh Agarwal, Miroslav Dudik, Yisong Yue, Hal Daum\u00e9 III",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2290"
},
{
"id": "site_69d3485e76",
"title": "Hierarchical Long-term Video Prediction without Supervision",
"author": "Nevan Wichers, Ruben Villegas, Dumitru Erhan, Honglak Lee",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2381"
},
{
"id": "site_01427f3900",
"title": "Hierarchical Multi-Label Classification Networks",
"author": "Jonatas Wehrmann, Ricardo Cerri, Rodrigo Barros",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2306"
},
{
"id": "site_c23c2abd7a",
"title": "Hierarchical Text Generation and Planning for Strategic Dialogue",
"author": "Denis Yarats, Mike Lewis",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2257"
},
{
"id": "site_a77e511214",
"title": "High Performance Zero-Memory Overhead Direct Convolutions",
"author": "Jiyuan Zhang, Franz Franchetti, Tze Meng Low",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2341"
},
{
"id": "site_9713d8de4f",
"title": "High-Quality Prediction Intervals for Deep Learning: A Distribution-Free, Ensembled Approach",
"author": "Tim Pearce, Alexandra Brintrup, Mohamed Zaki, Andy Neely",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2188"
},
{
"id": "site_3b7cabcad8",
"title": "Hyperbolic Entailment Cones for Learning Hierarchical Embeddings",
"author": "Octavian-Eugen Ganea, Gary Becigneul, Thomas Hofmann",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2487"
},
{
"id": "site_143d0ba9fc",
"title": "IMPALA: Scalable Distributed Deep-RL with Importance Weighted Actor-Learner Architectures",
"author": "Lasse Espeholt, Hubert Soyer, Remi Munos, Karen Simonyan, Vlad Mnih, Tom Ward, Yotam Doron, Vlad Firoiu, Tim Harley, Iain Dunning, Shane Legg, Koray Kavukcuoglu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2174"
},
{
"id": "site_6c6bf4f1e8",
"title": "INSPECTRE: Privately Estimating the Unseen",
"author": "Jayadev Acharya, Gautam Kamath, Ziteng Sun, Huanyu Zhang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1872"
},
{
"id": "site_44a0e2c562",
"title": "Image Transformer",
"author": "Niki Parmar, Ashish Vaswani, Jakob Uszkoreit, Lukasz Kaiser, Noam Shazeer, Alexander Ku, Dustin Tran",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2430"
},
{
"id": "site_544de7a9cc",
"title": "Implicit Quantile Networks for Distributional Reinforcement Learning",
"author": "Will Dabney, Georg Ostrovski, David Silver, Remi Munos",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2450"
},
{
"id": "site_490a37a7a6",
"title": "Implicit Regularization in Nonconvex Statistical Estimation: Gradient Descent Converges Linearly for Phase Retrieval and Matrix Completion",
"author": "Cong Ma, Kaizheng Wang, Yuejie Chi, Yuxin Chen",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1893"
},
{
"id": "site_6e4b02b037",
"title": "Importance Weighted Transfer of Samples in Reinforcement Learning",
"author": "Andrea Tirinzoni, Andrea Sessa, Matteo Pirotta, Marcello Restelli",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2008"
},
{
"id": "site_a8e9e81db1",
"title": "Improved Regret Bounds for Thompson Sampling in Linear Quadratic Control Problems",
"author": "Marc Abeille, Alessandro Lazaric",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2353"
},
{
"id": "site_4ca6ff7276",
"title": "Improved Training of Generative Adversarial Networks Using Representative Features",
"author": "Duhyeon Bang, Hyunjung Shim",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1888"
},
{
"id": "site_2656fbbf11",
"title": "Improved large-scale graph learning through ridge spectral sparsification",
"author": "Daniele Calandriello, Alessandro Lazaric, Ioannis Koutis, Michal Valko",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2371"
},
{
"id": "site_d4137cda3a",
"title": "Improved nearest neighbor search using auxiliary information and priority functions",
"author": "Omid Keivani, Kaushik Sinha",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2041"
},
{
"id": "site_95cc2140a3",
"title": "Improving Optimization in Models With Continuous Symmetry Breaking",
"author": "Robert Bamler, Stephan Mandt",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2360"
},
{
"id": "site_381a1d3775",
"title": "Improving Regression Performance with Distributional Losses",
"author": "Ehsan Imani, Martha White",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2092"
},
{
"id": "site_9570935135",
"title": "Improving Sign Random Projections With Additional Information",
"author": "Keegan Kang, Wei Pin Wong",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1896"
},
{
"id": "site_59d7fc6728",
"title": "Improving the Gaussian Mechanism for Differential Privacy: Analytical Calibration and Optimal Denoising",
"author": "Borja de Balle Pigem, Yu-Xiang Wang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2245"
},
{
"id": "site_6ceb4ab7ff",
"title": "Improving the Privacy and Accuracy of ADMM-Based Distributed Algorithms",
"author": "Xueru Zhang, Mohammad Mahdi Khalili, Mingyan Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2075"
},
{
"id": "site_9306f97d63",
"title": "Inductive Two-Layer Modeling with Parametric Bregman Transfer",
"author": "Vignesh Ganapathiraman, Zhan Shi, Xinhua Zhang, Yaoliang Yu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2104"
},
{
"id": "site_58828cfa13",
"title": "Inference Suboptimality in Variational Autoencoders",
"author": "Chris Cremer, Xuechen Li, David Duvenaud",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2425"
},
{
"id": "site_6ac229f784",
"title": "Information Theoretic Guarantees for Empirical Risk Minimization with Applications to Model Selection and Large-Scale Optimization",
"author": "Ibrahim Alabdulmohsin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1914"
},
{
"id": "site_72871eb1bb",
"title": "Inter and Intra Topic Structure Learning with Word Embeddings",
"author": "He Zhao, Lan Du, Wray Buntine, Mingyuan Zhou",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2183"
},
{
"id": "site_16489d11c3",
"title": "Interpretability Beyond Feature Attribution: Quantitative Testing with Concept Activation Vectors (TCAV)",
"author": "Been Kim, Martin Wattenberg, Justin Gilmer, Carrie Cai, James Wexler, Fernanda Vi\u00e9gas, Rory sayres",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2089"
},
{
"id": "site_7eaba31e73",
"title": "Invariance of Weight Distributions in Rectified MLPs",
"author": "Susumu Tsuchida, Fred Roosta, Marcus Gallagher",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1925"
},
{
"id": "site_43b3e5993a",
"title": "Investigating Human Priors for Playing Video Games",
"author": "Rachit Dubey, Pulkit Agrawal, Deepak Pathak, Tom Griffiths, Alexei Efros",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2133"
},
{
"id": "site_34e067dfe6",
"title": "Is Generator Conditioning Causally Related to GAN Performance?",
"author": "Augustus Odena, Jacob Buckman, Catherine Olsson, Tom B Brown, Christopher Olah, Colin Raffel, Ian Goodfellow",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2439"
},
{
"id": "site_181d9b0a32",
"title": "Iterative Amortized Inference",
"author": "Joe Marino, Yisong Yue, Stephan Mandt",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2110"
},
{
"id": "site_244a16822f",
"title": "JointGAN: Multi-Domain Joint Distribution Learning with Generative Adversarial Nets",
"author": "Yunchen Pu, Shuyang Dai, Zhe Gan, Weiyao Wang, Guoyin Wang, Yizhe Zhang, Ricardo Henao, Lawrence Carin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2161"
},
{
"id": "site_f3485e5976",
"title": "Junction Tree Variational Autoencoder for Molecular Graph Generation",
"author": "Wengong Jin, Regina Barzilay, Tommi Jaakkola",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1903"
},
{
"id": "site_6b31445870",
"title": "K-Beam Minimax: Efficient Optimization for Deep Adversarial Learning",
"author": "Jihun Hamm, Yung-Kyun Noh",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1962"
},
{
"id": "site_ecf2cff055",
"title": "K-means clustering using random matrix sparsification",
"author": "Kaushik Sinha",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2072"
},
{
"id": "site_2ca5f470d1",
"title": "Katyusha X: Simple Momentum Method for Stochastic Sum-of-Nonconvex Optimization",
"author": "Zeyuan Allen-Zhu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2017"
},
{
"id": "site_9c28956afd",
"title": "Kernel Recursive ABC: Point Estimation with Intractable Likelihood",
"author": "Takafumi Kajihara, Motonobu Kanagawa, Keisuke Yamazaki, Kenji Fukumizu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2239"
},
{
"id": "site_d7b469dbaa",
"title": "Kernelized Synaptic Weight Matrices",
"author": "Lorenz M\u00fcller, Julien Martel, Giacomo Indiveri",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2141"
},
{
"id": "site_376c9fe5e3",
"title": "Knowledge Transfer with Jacobian Matching",
"author": "Suraj Srinivas, Francois Fleuret",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2171"
},
{
"id": "site_6477787d51",
"title": "Kronecker Recurrent Units",
"author": "Cijo Jose, Mouhamadou Moustapha Cisse, Francois Fleuret",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2150"
},
{
"id": "site_6944a55e67",
"title": "LaVAN: Localized and Visible Adversarial Noise",
"author": "Danny Karmon, Daniel Zoran, Yoav Goldberg",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2154"
},
{
"id": "site_b407409058",
"title": "Large-Scale Cox Process Inference using Variational Fourier Features",
"author": "ST John, James Hensman",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1982"
},
{
"id": "site_cedd97a473",
"title": "Large-Scale Sparse Inverse Covariance Estimation via Thresholding and Max-Det Matrix Completion",
"author": "Richard Zhang, Salar Fattahi, Somayeh Sojoudi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2189"
},
{
"id": "site_8a508ad465",
"title": "Latent Space Policies for Hierarchical Reinforcement Learning",
"author": "Tuomas Haarnoja, Kristian Hartikainen, Pieter Abbeel, Sergey Levine",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2334"
},
{
"id": "site_7edb6178d5",
"title": "LeapsAndBounds: A Method for Approximately Optimal Algorithm Configuration",
"author": "Gell\u00e9rt Weisz, Andr\u00e1s Gy\u00f6rgy, Csaba Szepesvari",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2263"
},
{
"id": "site_103b714755",
"title": "Learn from Your Neighbor: Learning Multi-modal Mappings from Sparse Annotations",
"author": "Ashwin Kalyan, Stefan Lee, Anitha Kannan, Dhruv Batra",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2325"
},
{
"id": "site_7b0c2ef2e9",
"title": "Learning Adversarially Fair and Transferable Representations",
"author": "David Madras, Elliot Creager, Toniann Pitassi, Richard Zemel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2393"
},
{
"id": "site_fa5fb11596",
"title": "Learning Binary Latent Variable Models: A Tensor Eigenpair Approach",
"author": "Ariel Jaffe, Roi Weiss, Boaz Nadler, Shai Carmi, Yuval Kluger",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2053"
},
{
"id": "site_961d4c0ba7",
"title": "Learning Compact Neural Networks with Regularization",
"author": "Samet Oymak",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1933"
},
{
"id": "site_bd5a14bab9",
"title": "Learning Continuous Hierarchies in the Lorentz Model of Hyperbolic Geometry",
"author": "Maximilian Nickel, Douwe Kiela",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2370"
},
{
"id": "site_4df861066e",
"title": "Learning Deep ResNet Blocks Sequentially using Boosting Theory",
"author": "Furong Huang, Jordan Ash, John Langford, Robert Schapire",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2107"
},
{
"id": "site_6310a7cf1d",
"title": "Learning Diffusion using Hyperparameters",
"author": "Dimitrios Kalimeris, Yaron Singer, Karthik Subbian, Udi Weinsberg",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1880"
},
{
"id": "site_17ba7babb7",
"title": "Learning Dynamics of Linear Denoising Autoencoders",
"author": "Arnu Pretorius, Steve Kroon, Herman Kamper",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2013"
},
{
"id": "site_2116e475bf",
"title": "Learning Hidden Markov Models from Pairwise Co-occurrences with Application to Topic Modeling",
"author": "Kejun Huang, Xiao Fu, Nicholas Sidiropoulos",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2231"
},
{
"id": "site_57a9415d5f",
"title": "Learning Implicit Generative Models with the Method of Learned Moments",
"author": "Suman Ravuri, Shakir Mohamed, Mihaela Rosca, Oriol Vinyals",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2251"
},
{
"id": "site_2e7402b7cf",
"title": "Learning Independent Causal Mechanisms",
"author": "Giambattista Parascandolo, Niki Kilbertus, Mateo Rojas-Carulla, Bernhard Sch\u00f6lkopf",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2049"
},
{
"id": "site_dd1764811e",
"title": "Learning K-way D-dimensional Discrete Codes for Compact Embedding Representations",
"author": "Ting Chen, Martin Min, Yizhou Sun",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2284"
},
{
"id": "site_480e9c85c1",
"title": "Learning Localized Spatio-Temporal Models From Streaming Data",
"author": "Muhammad Osama, Dave Zachariah, Thomas Sch\u00f6n",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2015"
},
{
"id": "site_8f27291f9f",
"title": "Learning Longer-term Dependencies in RNNs with Auxiliary Losses",
"author": "Trieu H Trinh, Andrew Dai, Thang Luong, Quoc Le",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2127"
},
{
"id": "site_7334d490b9",
"title": "Learning Low-Dimensional Temporal Representations",
"author": "Bing Su, Ying Wu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1910"
},
{
"id": "site_93d68c0bbb",
"title": "Learning Maximum-A-Posteriori Perturbation Models for Structured Prediction in Polynomial Time",
"author": "Asish Ghoshal, Jean Honorio",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2436"
},
{
"id": "site_971d825650",
"title": "Learning Memory Access Patterns",
"author": "Milad Hashemi, Kevin Swersky, Jamie Smith, Grant Ayers, Heiner Litz, Jichuan Chang, Christos Kozyrakis, Parthasarathy Ranganathan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2243"
},
{
"id": "site_296ae287ac",
"title": "Learning One Convolutional Layer with Overlapping Patches",
"author": "Surbhi Goel, Adam Klivans, Raghu Meka",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1985"
},
{
"id": "site_0b79d67e67",
"title": "Learning Policy Representations in Multiagent Systems",
"author": "Aditya Grover, Maruan Al-Shedivat, Jayesh K. Gupta, Yura Burda, Harrison Edwards",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2435"
},
{
"id": "site_05d8d798af",
"title": "Learning Registered Point Processes from Idiosyncratic Observations",
"author": "Hongteng Xu, Lawrence Carin, Hongyuan Zha",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2045"
},
{
"id": "site_14d560d6ec",
"title": "Learning Representations and Generative Models for 3D Point Clouds",
"author": "Panagiotis Achlioptas, Olga Diamanti, Ioannis Mitliagkas, Leonidas Guibas",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1917"
},
{
"id": "site_1c60a914a7",
"title": "Learning Semantic Representations for Unsupervised Domain Adaptation",
"author": "Shaoan Xie, Zibin Zheng, Liang Chen, Chuan Chen",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1961"
},
{
"id": "site_7428dfcca2",
"title": "Learning Steady-States of Iterative Algorithms over Graphs",
"author": "Hanjun Dai, Zornitsa Kozareva, Bo Dai, Alex Smola, Le Song",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2424"
},
{
"id": "site_4037514ef0",
"title": "Learning a Mixture of Two Multinomial Logits",
"author": "Flavio Chierichetti, Ravi Kumar, Andrew Tomkins",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2238"
},
{
"id": "site_12fe7eb3a5",
"title": "Learning and Memorization",
"author": "Sat Chatterjee",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2080"
},
{
"id": "site_062b5f20c1",
"title": "Learning by Playing - Solving Sparse Reward Tasks from Scratch",
"author": "Martin Riedmiller, Roland Hafner, Thomas Lampe, Michael Neunert, Jonas Degrave, Tom Van de Wiele, Vlad Mnih, Nicolas Heess, Jost Springenberg",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2179"
},
{
"id": "site_0e96d84e59",
"title": "Learning equations for extrapolation and control",
"author": "Subham S Sahoo, Christoph H. Lampert, Georg Martius",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2364"
},
{
"id": "site_e0eb9e166b",
"title": "Learning in Integer Latent Variable Models with Nested Automatic Differentiation",
"author": "Daniel Sheldon, Kevin Winner, Debora Sujono",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2357"
},
{
"id": "site_a7d12881d9",
"title": "Learning in Reproducing Kernel Kre\u0131\u0306n Spaces",
"author": "Dino Oglic, Thomas Gaertner",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2200"
},
{
"id": "site_796c94d0f8",
"title": "Learning long term dependencies via Fourier recurrent units",
"author": "Jiong Zhang, Yibo Lin, Zhao Song, Inderjit Dhillon",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2006"
},
{
"id": "site_8a1cb7316a",
"title": "Learning the Reward Function for a Misspecified Model",
"author": "Erik Talvitie",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1913"
},
{
"id": "site_65a745cf21",
"title": "Learning to Act in Decentralized Partially Observable MDPs",
"author": "Jilles Dibangoye, Olivier Buffet",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2278"
},
{
"id": "site_d21a7c535b",
"title": "Learning to Branch",
"author": "Nina Balcan, Travis Dick, Tuomas Sandholm, Ellen Vitercik",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2244"
},
{
"id": "site_2c7bd54e9b",
"title": "Learning to Coordinate with Coordination Graphs in Repeated Single-Stage Multi-Agent Decision Problems",
"author": "Eugenio Bargiacchi, Timothy Verstraeten, Diederik Roijers, Ann Now\u00e9, Hado van Hasselt",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2177"
},
{
"id": "site_713eb37c70",
"title": "Learning to Explain: An Information-Theoretic Perspective on Model Interpretation",
"author": "Jianbo Chen, Le Song, Martin Wainwright, Michael Jordan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1957"
},
{
"id": "site_1d5bc39c3c",
"title": "Learning to Explore via Meta-Policy Gradient",
"author": "Tianbing Xu, Qiang Liu, Liang Zhao, Jian Peng",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1939"
},
{
"id": "site_945bb194a2",
"title": "Learning to Optimize Combinatorial Functions",
"author": "Nir Rosenfeld, Eric Balkanski, Amir Globerson, Yaron Singer",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1881"
},
{
"id": "site_9adaf556e9",
"title": "Learning to Reweight Examples for Robust Deep Learning",
"author": "Mengye Ren, Wenyuan Zeng, Bin Yang, Raquel Urtasun",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1991"
},
{
"id": "site_7e37325d41",
"title": "Learning to Speed Up Structured Output Prediction",
"author": "Xingyuan Pan, Vivek Srikumar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2489"
},
{
"id": "site_7459672677",
"title": "Learning to search with MCTSnets",
"author": "Arthur Guez, Theophane Weber, Ioannis Antonoglou, Karen Simonyan, Oriol Vinyals, Daan Wierstra, Remi Munos, David Silver",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2233"
},
{
"id": "site_66d3ff01a3",
"title": "Learning unknown ODE models with Gaussian processes",
"author": "Markus Heinonen, Cagatay Yildiz, Henrik Mannerstr\u00f6m, Jukka Intosalmi, Harri L\u00e4hdesm\u00e4ki",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2277"
},
{
"id": "site_c420432e02",
"title": "Learning with Abandonment",
"author": "Sven Schmit, Ramesh Johari",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1965"
},
{
"id": "site_b10da4a855",
"title": "Least-Squares Temporal Difference Learning for the Linear Quadratic Regulator",
"author": "Stephen Tu, Benjamin Recht",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2004"
},
{
"id": "site_870bf954bc",
"title": "Let\u2019s be Honest: An Optimal No-Regret Framework for Zero-Sum Games",
"author": "Ehsan Asadi Kangarshahi, Ya-Ping Hsieh, Mehmet Fatih Sahin, Volkan Cevher",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1975"
},
{
"id": "site_44fadaa42b",
"title": "Level-Set Methods for Finite-Sum Constrained Convex Optimization",
"author": "Qihang Lin, Runchao Ma, Tianbao Yang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2122"
},
{
"id": "site_a56050070e",
"title": "Leveraging Well-Conditioned Bases: Streaming and Distributed Summaries in Minkowski $p$-Norms",
"author": "Charlie Dickens, Graham Cormode, David Woodruff",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2163"
},
{
"id": "site_96c1cb9897",
"title": "Lightweight Stochastic Optimization for Minimizing Finite Sums with Infinite Data",
"author": "Shuai Zheng, James Kwok",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2215"
},
{
"id": "site_868ef1babc",
"title": "Limits of Estimating Heterogeneous Treatment Effects: Guidelines for Practical Algorithm Design",
"author": "Ahmed M. Alaa, Mihaela van der Schaar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2226"
},
{
"id": "site_7ef34158d4",
"title": "Linear Spectral Estimators and an Application to Phase Retrieval",
"author": "Ramina Ghods, Andrew Lan, Tom Goldstein, Christoph Studer",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2280"
},
{
"id": "site_b18d4357ed",
"title": "Lipschitz Continuity in Model-based Reinforcement Learning",
"author": "Kavosh Asadi, Dipendra Misra, Michael L. Littman",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2467"
},
{
"id": "site_5e70556b88",
"title": "Local Convergence Properties of SAGA/Prox-SVRG and Acceleration",
"author": "Clarice Poon, Jingwei Liang, Carola-Bibiane Sch\u00f6nlieb",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1974"
},
{
"id": "site_11f2e192e6",
"title": "Local Density Estimation in High Dimensions",
"author": "Xian Wu, Moses Charikar, Vishnu Natchu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2460"
},
{
"id": "site_0dc9a4101f",
"title": "Local Private Hypothesis Testing: Chi-Square Tests",
"author": "Marco Gaboardi, Ryan Rogers",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2346"
},
{
"id": "site_21ed84b1ac",
"title": "Locally Private Hypothesis Testing",
"author": "Or Sheffet",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2071"
},
{
"id": "site_6faaaaebac",
"title": "Loss Decomposition for Fast Learning in Large Output Spaces",
"author": "En-Hsu Yen, Satyen Kale, Felix Xinnan Yu, Daniel Holtmann-Rice, Sanjiv Kumar, Pradeep Ravikumar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2391"
},
{
"id": "site_dd725c81dc",
"title": "Low-Rank Riemannian Optimization on Positive Semidefinite Stochastic Matrices with Applications to Graph Clustering",
"author": "Ahmed Douik, Babak Hassibi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2061"
},
{
"id": "site_5aba188aa2",
"title": "Lyapunov Functions for First-Order Methods: Tight Automated Convergence Guarantees",
"author": "Adrien Taylor, Bryan Van Scoy, Laurent Lessard",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2168"
},
{
"id": "site_902c90bdb5",
"title": "MAGAN: Aligning Biological Manifolds",
"author": "Matt Amodio, Smita Krishnaswamy",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2455"
},
{
"id": "site_95cc60fdf1",
"title": "MSplit LBI: Realizing Feature Selection and Dense Estimation Simultaneously in Few-shot and Zero-shot Learning",
"author": "Bo Zhao, Xinwei Sun, Yanwei Fu, Yuan Yao, Yizhou Wang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1897"
},
{
"id": "site_62317e6045",
"title": "Machine Theory of Mind",
"author": "Neil Rabinowitz, Frank Perbet, Francis Song, Chiyuan Zhang, S. M. Ali Eslami, Matthew Botvinick",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2159"
},
{
"id": "site_d93b889c74",
"title": "Make the Minority Great Again: First-Order Regret Bound for Contextual Bandits",
"author": "Zeyuan Allen-Zhu, Sebastien Bubeck, Yuanzhi Li",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2111"
},
{
"id": "site_db2bb99f1d",
"title": "Markov Modulated Gaussian Cox Processes for Semi-Stationary Intensity Modeling of Events Data",
"author": "Minyoung Kim",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2047"
},
{
"id": "site_ad4d6dbe54",
"title": "Massively Parallel Algorithms and Hardness for Single-Linkage Clustering under $\\ell_p$ Distances",
"author": "Grigory Yaroslavtsev, Adithya Vadapalli",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2366"
},
{
"id": "site_7dfe995d96",
"title": "Matrix Norms in Data Streams: Faster, Multi-Pass and Row-Order",
"author": "Vladimir Braverman, Stephen Chestnut, Robert Krauthgamer, Yi Li, David Woodruff, Lin Yang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2069"
},
{
"id": "site_6cfa5c2909",
"title": "Max-Mahalanobis Linear Discriminant Analysis Networks",
"author": "Tianyu Pang, Chao Du, Jun Zhu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2079"
},
{
"id": "site_e1fe9c7793",
"title": "Mean Field Multi-Agent Reinforcement Learning",
"author": "Yaodong Yang, Rui Luo, Minne Li, Ming Zhou, Weinan Zhang, Jun Wang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2458"
},
{
"id": "site_2b92fda19c",
"title": "Measuring abstract reasoning in neural networks",
"author": "Adam Santoro, Feilx Hill, David GT Barrett, Ari S Morcos, Timothy Lillicrap",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2194"
},
{
"id": "site_4ca46c9b0e",
"title": "MentorNet: Learning Data-Driven Curriculum for Very Deep Neural Networks on Corrupted Labels",
"author": "Lu Jiang, Zhengyuan Zhou, Thomas Leung, Li-Jia Li, Li Fei-Fei",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1952"
},
{
"id": "site_9a47443c93",
"title": "Message Passing Stein Variational Gradient Descent",
"author": "Jingwei Zhuo, Chang Liu, Jiaxin Shi, Jun Zhu, Ning Chen, Bo Zhang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1915"
},
{
"id": "site_4ba2c107aa",
"title": "Meta-Learning by Adjusting Priors Based on Extended PAC-Bayes Theory",
"author": "Ron Amit, Ron Meir",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1976"
},
{
"id": "site_f39191b5c1",
"title": "Minibatch Gibbs Sampling on Large Graphical Models",
"author": "Christopher De Sa, Vincent Chen, Wong",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2383"
},
{
"id": "site_dc9777ffff",
"title": "Minimal I-MAP MCMC for Scalable Structure Discovery in Causal DAG Models",
"author": "Raj Agrawal, Caroline Uhler, Tamara Broderick",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2472"
},
{
"id": "site_9e51b9665d",
"title": "Minimax Concave Penalized Multi-Armed Bandit Model with High-Dimensional Covariates",
"author": "xue wang, Mingcheng Wei, Tao Yao",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2469"
},
{
"id": "site_ff626fba5d",
"title": "Mitigating Bias in Adaptive Data Gathering via Differential Privacy",
"author": "Seth Neel, Aaron Roth",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2339"
},
{
"id": "site_91be02ee6c",
"title": "Mix & Match - Agent Curricula for Reinforcement Learning",
"author": "Wojciech Czarnecki, Siddhant Jayakumar, Max Jaderberg, Leonard Hasenclever, Yee Teh, Nicolas Heess, Simon Osindero, Razvan Pascanu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2187"
},
{
"id": "site_d4bd41c38c",
"title": "Mixed batches and symmetric discriminators for GAN training",
"author": "Thomas LUCAS, Corentin Tallec, Yann Ollivier, Jakob Verbeek",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2234"
},
{
"id": "site_8f7d29ac96",
"title": "Model-Level Dual Learning",
"author": "Yingce Xia, Xu Tan, Fei Tian, Tao Qin, Nenghai Yu, Tie-Yan Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2172"
},
{
"id": "site_aed33d3429",
"title": "Modeling Others using Oneself in Multi-Agent Reinforcement Learning",
"author": "Roberta Raileanu, Emily Denton, Arthur Szlam, Facebook Rob Fergus",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2319"
},
{
"id": "site_47a8393211",
"title": "Modeling Sparse Deviations for Compressed Sensing using Generative Models",
"author": "Manik Dhar, Aditya Grover, Stefano Ermon",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2331"
},
{
"id": "site_65b4727803",
"title": "More Robust Doubly Robust Off-policy Evaluation",
"author": "Mehrdad Farajtabar, Yinlam Chow, Mohammad Ghavamzadeh",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2068"
},
{
"id": "site_d7c1a25a9e",
"title": "Multi-Fidelity Black-Box Optimization with Hierarchical Partitions",
"author": "Rajat Sen, kirthevasan kandasamy, Sanjay Shakkottai",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2264"
},
{
"id": "site_269daef985",
"title": "Multicalibration: Calibration for the (Computationally-Identifiable) Masses",
"author": "Ursula Hebert-Johnson, Michael Kim, Omer Reingold, Guy Rothblum",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2448"
},
{
"id": "site_f67552cce6",
"title": "Mutual Information Neural Estimation",
"author": "Mohamed Belghazi, Aristide Baratin, Sai Rajeswar, Sherjil Ozair, Yoshua Bengio, R Devon Hjelm, Aaron Courville",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2440"
},
{
"id": "site_de30bc07d4",
"title": "Near Optimal Frequent Directions for Sketching Dense and Sparse Matrices",
"author": "Zengfeng Huang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2125"
},
{
"id": "site_94a48da897",
"title": "Nearly Optimal Robust Subspace Tracking",
"author": "Praneeth Narayanamurthy, Namrata Vaswani",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2285"
},
{
"id": "site_3ce4962d1f",
"title": "NetGAN: Generating Graphs via Random Walks",
"author": "Aleksandar Bojchevski, Oleksandr Shchur, Daniel Z\u00fcgner, Stephan G\u00fcnnemann",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2193"
},
{
"id": "site_559e5163b8",
"title": "Network Global Testing by Counting Graphlets",
"author": "Jiashun Jin, Zheng Ke, Shengming Luo",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2338"
},
{
"id": "site_6e32ace01b",
"title": "Neural Autoregressive Flows",
"author": "Chin-Wei Huang, David Krueger, Alexandre Lacoste, Aaron Courville",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2394"
},
{
"id": "site_4e32395848",
"title": "Neural Dynamic Programming for Musical Self Similarity",
"author": "Christian Walder, Dongwoo Kim",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2100"
},
{
"id": "site_f303adbbd1",
"title": "Neural Inverse Rendering for General Reflectance Photometric Stereo",
"author": "Tatsunori Taniai, Takanori Maehara",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1901"
},
{
"id": "site_10e320e066",
"title": "Neural Networks Should Be Wide Enough to Learn Disconnected Decision Regions",
"author": "Quynh Nguyen, Mahesh Mukkamala, Matthias Hein",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2272"
},
{
"id": "site_ceb25113b9",
"title": "Neural Program Synthesis from Diverse Demonstration Videos",
"author": "Shao-Hua Sun, Hyeonwoo Noh, Sriram Somasundaram, Joseph Lim",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1909"
},
{
"id": "site_c26857d8c5",
"title": "Neural Relational Inference for Interacting Systems",
"author": "Thomas Kipf, Ethan Fetaya, Kuan-Chieh Wang, Max Welling, Richard Zemel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2083"
},
{
"id": "site_45546f22ce",
"title": "Noise2Noise: Learning Image Restoration without Clean Data",
"author": "Jaakko Lehtinen, Jacob Munkberg, Jon Hasselgren, Samuli Laine, Tero Karras, Miika Aittala, Timo Aila",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2014"
},
{
"id": "site_2ed578616a",
"title": "Noisin: Unbiased Regularization for Recurrent Neural Networks",
"author": "Adji Bousso Dieng, Rajesh Ranganath, Jaan Altosaar, David Blei",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2407"
},
{
"id": "site_31f852a335",
"title": "Noisy Natural Gradient as Variational Inference",
"author": "Guodong Zhang, Shengyang Sun, David Duvenaud, Roger Grosse",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2250"
},
{
"id": "site_f0d2037d1f",
"title": "Non-convex Conditional Gradient Sliding",
"author": "chao qu, Yan Li, Huan Xu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1947"
},
{
"id": "site_a08c9724dc",
"title": "Non-linear motor control by local learning in spiking neural networks",
"author": "Aditya Gilra, Wulfram Gerstner",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2311"
},
{
"id": "site_e37cbb1763",
"title": "Nonconvex Optimization for Regression with Fairness Constraints",
"author": "Junpei Komiyama, Akiko Takeda, Junya Honda, Hajime Shimao",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2037"
},
{
"id": "site_1a182f2661",
"title": "Nonoverlap-Promoting Variable Selection",
"author": "Pengtao Xie, Hongbao Zhang, Yichen Zhu, Eric Xing",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1886"
},
{
"id": "site_ba628c786e",
"title": "Nonparametric Regression with Comparisons: Escaping the Curse of Dimensionality with Ordinal Information",
"author": "Yichong Xu, Hariank Muthakana, Sivaraman Balakrishnan, Aarti Singh, Artur Dubrawski",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2095"
},
{
"id": "site_d72eaa1840",
"title": "Nonparametric variable importance using an augmented neural network with multi-task learning",
"author": "Jean Feng, Brian Williamson, Noah Simon, Marco Carone",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2042"
},
{
"id": "site_5d63983d85",
"title": "Not All Samples Are Created Equal: Deep Learning with Importance Sampling",
"author": "Angelos Katharopoulos, Francois Fleuret",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2178"
},
{
"id": "site_a49e657d8b",
"title": "Not to Cry Wolf: Distantly Supervised Multitask Learning in Critical Care",
"author": "Patrick Schwab, Emanuela Keller, Carl Muroi, David J. Mack, Christian Str\u00e4ssle, Walter Karlen",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2119"
},
{
"id": "site_ce7c0633dd",
"title": "Obfuscated Gradients Give a False Sense of Security: Circumventing Defenses to Adversarial Examples",
"author": "Anish Athalye, Nicholas Carlini, David Wagner",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2217"
},
{
"id": "site_91dcc96a3b",
"title": "On Acceleration with Noise-Corrupted Gradients",
"author": "Michael Cohen, Jelena Diakonikolas, Orecchia Lorenzo",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2173"
},
{
"id": "site_56f8561a71",
"title": "On Learning Sparsely Used Dictionaries from Incomplete Samples",
"author": "Thanh Nguyen, Akshay Soni, Chinmay Hegde",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2099"
},
{
"id": "site_20deaf236e",
"title": "On Matching Pursuit and Coordinate Descent",
"author": "Francesco Locatello, Anant Raj, Sai Praneeth Reddy Karimireddy, Gunnar Ratsch, Bernhard Sch\u00f6lkopf, Sebastian Stich, Martin Jaggi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2228"
},
{
"id": "site_d288da4a14",
"title": "On Nesting Monte Carlo Estimators",
"author": "Tom Rainforth, Rob Cornish, Hongseok Yang, andrew warrington, Frank Wood",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1874"
},
{
"id": "site_b6772b19b3",
"title": "On the Generalization of Equivariance and Convolution in Neural Networks to the Action of Compact Groups",
"author": "Risi Kondor, Shubhendu Trivedi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2476"
},
{
"id": "site_68b1c75184",
"title": "On the Implicit Bias of Dropout",
"author": "Poorya Mianjy, Raman Arora, Rene Vidal",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2354"
},
{
"id": "site_7b724db0b4",
"title": "On the Limitations of First-Order Approximation in GAN Dynamics",
"author": "Jerry Li, Aleksander Madry, John Peebles, Ludwig Schmidt",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2342"
},
{
"id": "site_27ea42276e",
"title": "On the Optimization of Deep Networks: Implicit Acceleration by Overparameterization",
"author": "Sanjeev Arora, Nadav Cohen, Elad Hazan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2422"
},
{
"id": "site_8ad1c78e6e",
"title": "On the Power of Over-parametrization in Neural Networks with Quadratic Activation",
"author": "Simon Du, Jason Lee",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1923"
},
{
"id": "site_4abe8743af",
"title": "On the Relationship between Data Efficiency and Error for Uncertainty Sampling",
"author": "Stephen Mussmann, Percy Liang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2390"
},
{
"id": "site_fbf6756547",
"title": "On the Spectrum of Random Features Maps of High Dimensional Data",
"author": "Zhenyu Liao, Romain Couillet",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1898"
},
{
"id": "site_90d61fe250",
"title": "On the Theory of Variance Reduction for Stochastic Gradient Monte Carlo",
"author": "Niladri Chatterji, Nicolas Flammarion, Yian Ma, Peter Bartlett, Michael Jordan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2094"
},
{
"id": "site_6bc28e4295",
"title": "One-Shot Segmentation in Clutter",
"author": "Claudio Michaelis, Matthias Bethge, Alexander Ecker",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2303"
},
{
"id": "site_75a066ed5e",
"title": "Online Convolutional Sparse Coding with Sample-Dependent Dictionary",
"author": "Yaqing WANG, Quanming Yao, James Kwok, Lionel NI",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2192"
},
{
"id": "site_d2ea9b5602",
"title": "Online Learning with Abstention",
"author": "Corinna Cortes, Giulia DeSalvo, Claudio Gentile, Mehryar Mohri, Scott Yang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2113"
},
{
"id": "site_72ff11552c",
"title": "Online Linear Quadratic Control",
"author": "Alon Cohen, Avinatan Hasidim, Tomer Koren, Nevena Lazic, Yishay Mansour, Kunal Talwar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2142"
},
{
"id": "site_ae4f94b7f3",
"title": "Open Category Detection with PAC Guarantees",
"author": "Si Liu, Risheek Garrepalli, Thomas Dietterich, Alan Fern, Dan Hendrycks",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2115"
},
{
"id": "site_0ec10a4323",
"title": "Optimal Distributed Learning with Multi-pass Stochastic Gradient Methods",
"author": "Junhong Lin, Volkan Cevher",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2484"
},
{
"id": "site_e2e11bc290",
"title": "Optimal Rates of Sketched-regularized Algorithms for Least-Squares Regression over Hilbert Spaces",
"author": "Junhong Lin, Volkan Cevher",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2379"
},
{
"id": "site_5e73f8f49c",
"title": "Optimal Tuning for Divide-and-conquer Kernel Ridge Regression with Massive Data",
"author": "Ganggang Xu, Zuofeng Shang, Guang Cheng",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2205"
},
{
"id": "site_d75fdfc9c9",
"title": "Optimization Landscape and Expressivity of Deep CNNs",
"author": "Quynh Nguyen, Matthias Hein",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2011"
},
{
"id": "site_3c57b938bf",
"title": "Optimization, fast and slow: optimally switching between local and Bayesian optimization",
"author": "Mark McLeod, Stephen Roberts, Michael A Osborne",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2224"
},
{
"id": "site_eac2e0fa1a",
"title": "Optimizing the Latent Space of Generative Networks",
"author": "Piotr Bojanowski, Armand Joulin, David Lopez-Paz, Arthur Szlam",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2235"
},
{
"id": "site_324863bdc5",
"title": "Orthogonal Machine Learning: Power and Limitations",
"author": "Ilias Zadik, Lester Mackey, Vasilis Syrgkanis",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2409"
},
{
"id": "site_5cbccf8a29",
"title": "Orthogonal Recurrent Neural Networks with Scaled Cayley Transform",
"author": "Kyle Helfrich, Devin Willmott, Qiang Ye",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2397"
},
{
"id": "site_717e089be4",
"title": "Orthogonality-Promoting Distance Metric Learning: Convex Relaxation and Theoretical Analysis",
"author": "Pengtao Xie, Wei Wu, Yichen Zhu, Eric Xing",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1884"
},
{
"id": "site_18ac5f07cc",
"title": "Out-of-sample extension of graph adjacency spectral embedding",
"author": "Keith Levin, Fred Roosta, Michael Mahoney, Carey Priebe",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1937"
},
{
"id": "site_e04539f8a9",
"title": "Overcoming Catastrophic Forgetting with Hard Attention to the Task",
"author": "Joan Serr\u00e0, Didac Suris, Marius Miron, Alexandros Karatzoglou",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2155"
},
{
"id": "site_19c05a383e",
"title": "PDE-Net: Learning PDEs from Data",
"author": "Zichao Long, Yiping Lu, Xianzhong Ma, Bin Dong",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1934"
},
{
"id": "site_03e0110d65",
"title": "PIPPS: Flexible Model-Based Policy Search Robust to the Curse of Chaos",
"author": "Paavo Parmas, Carl E Rasmussen, Jan Peters, Kenji Doya",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1978"
},
{
"id": "site_bfb5e10b1c",
"title": "Parallel Bayesian Network Structure Learning",
"author": "Tian Gao, Dennis Wei",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1918"
},
{
"id": "site_9b7bbbf1f2",
"title": "Parallel WaveNet: Fast High-Fidelity Speech Synthesis",
"author": "A\u00e4ron van den Oord, Yazhe Li, Igor Babuschkin, Karen Simonyan, Oriol Vinyals, Koray Kavukcuoglu, George van den Driessche, Edward Lockhart, Luis C Cobo, Florian Stimberg, Norman Casagrande, Dominik Grewe, Seb Noury, Sander Dieleman, Erich Elsen, Nal Kalchbrenner, Heiga Zen, Alex Graves, Helen King, Tom Walters, Dan Belov, Demis Hassabis",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2198"
},
{
"id": "site_0114b60eea",
"title": "Parallel and Streaming Algorithms for K-Core Decomposition",
"author": "Hossein Esfandiari, Silvio Lattanzi, Vahab Mirrokni",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2186"
},
{
"id": "site_09bd146cd6",
"title": "Parameterized Algorithms for the Matrix Completion Problem",
"author": "Robert Ganian, DePaul Iyad Kanj, Sebastian Ordyniak, Stefan Szeider",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2254"
},
{
"id": "site_b47d50aba1",
"title": "Partial Optimality and Fast Lower Bounds for Weighted Correlation Clustering",
"author": "Jan-Hendrik Lange, Andreas Karrenbauer, Bjoern Andres",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2206"
},
{
"id": "site_bcf24a872f",
"title": "Path Consistency Learning in Tsallis Entropy Regularized MDPs",
"author": "Yinlam Chow, Ofir Nachum, Mohammad Ghavamzadeh",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2344"
},
{
"id": "site_2d528d62cd",
"title": "Path-Level Network Transformation for Efficient Architecture Search",
"author": "Han Cai, Jiacheng Yang, Weinan Zhang, Song Han, Yong Yu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2208"
},
{
"id": "site_607ae9fde3",
"title": "Pathwise Derivatives Beyond the Reparameterization Trick",
"author": "Martin Jankowiak, Fritz Obermeyer",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2213"
},
{
"id": "site_d5ee34dffd",
"title": "PixelSNAIL: An Improved Autoregressive Generative Model",
"author": "Xi Chen, Nikhil Mishra, Mostafa Rohaninejad, Pieter Abbeel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2296"
},
{
"id": "site_a81d7a3273",
"title": "Policy Optimization as Wasserstein Gradient Flows",
"author": "RUIYI (ROY) ZHANG, Changyou Chen, Chunyuan Li, Lawrence Carin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2121"
},
{
"id": "site_3f7e1fd971",
"title": "Policy Optimization with Demonstrations",
"author": "Bingyi Kang, Zequn Jie, Jiashi Feng",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1956"
},
{
"id": "site_92b2c88032",
"title": "Policy and Value Transfer in Lifelong Reinforcement Learning",
"author": "David Abel, Yuu Jinnai, Sophie Guo, George Konidaris, Michael L. Littman",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2271"
},
{
"id": "site_148913783f",
"title": "Practical Contextual Bandits with Regression Oracles",
"author": "Dylan Foster, Alekh Agarwal, Miroslav Dudik, Haipeng Luo, Robert Schapire",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2475"
},
{
"id": "site_221bf13fa2",
"title": "PredRNN++: Towards A Resolution of the Deep-in-Time Dilemma in Spatiotemporal Predictive Learning",
"author": "Yunbo Wang, Zhifeng Gao, Mingsheng Long, Jianmin Wang, Philip Yu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1967"
},
{
"id": "site_1e4c271370",
"title": "Predict and Constrain: Modeling Cardinality in Deep Structured Prediction",
"author": "Nataly Brukhim, Amir Globerson",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2368"
},
{
"id": "site_1ef25f767d",
"title": "Prediction Rule Reshaping",
"author": "Matt Bonakdarpour, Sabyasachi Chatterjee, Rina Barber, John Lafferty",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2222"
},
{
"id": "site_6ab4ddd371",
"title": "Preventing Fairness Gerrymandering: Auditing and Learning for Subgroup Fairness",
"author": "Michael Kearns, Seth Neel, Aaron Roth, Steven Wu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2241"
},
{
"id": "site_3c0eb39067",
"title": "Probabilistic Boolean Tensor Decomposition",
"author": "Tammo Rukat, Christopher Holmes, Christopher Yau",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1988"
},
{
"id": "site_350de19621",
"title": "Probabilistic Recurrent State-Space Models",
"author": "Andreas Doerr, Christian Daniel, Martin Schiegg, Duy Nguyen-Tuong, Stefan Schaal, Marc Toussaint, Sebastian Trimpe",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2070"
},
{
"id": "site_5e0f38ee4e",
"title": "Probably Approximately Metric-Fair Learning",
"author": "Gal Yona, Guy Rothblum",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2365"
},
{
"id": "site_7a01d71c78",
"title": "Problem Dependent Reinforcement Learning Bounds Which Can Identify Bandit Structure in MDPs",
"author": "Andrea Zanette, Emma Brunskill",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2433"
},
{
"id": "site_48769d0c67",
"title": "Programmatically Interpretable Reinforcement Learning",
"author": "Abhinav Verma, Vijayaraghavan Murali, Rishabh Singh, Pushmeet Kohli, Swarat Chaudhuri",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2203"
},
{
"id": "site_b9cdeb3db0",
"title": "Progress & Compress: A scalable framework for continual learning",
"author": "Jonathan Schwarz, Wojciech Czarnecki, Jelena Luketina, Agnieszka Grabska-Barwinska, Yee Teh, Razvan Pascanu, Raia Hadsell",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2131"
},
{
"id": "site_b8652fc286",
"title": "Projection-Free Online Optimization with Stochastic Gradient: From Convexity to Submodularity",
"author": "Lin Chen, Christopher Harshaw, Hamed Hassani, Amin Karbasi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2385"
},
{
"id": "site_ef1847d039",
"title": "Proportional Allocation: Simple, Distributed, and Diverse Matching with High Entropy",
"author": "Shipra Agarwal, Morteza Zadimoghaddam, Vahab Mirrokni",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2388"
},
{
"id": "site_680a7fdae2",
"title": "Provable Defenses against Adversarial Examples via the Convex Outer Adversarial Polytope",
"author": "Eric Wong, Zico Kolter",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2136"
},
{
"id": "site_5cd0ce81b1",
"title": "Provable Variable Selection for Streaming Features",
"author": "Jing Wang, Jie Shen, Ping Li",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2352"
},
{
"id": "site_cac9e3cbc2",
"title": "Pseudo-task Augmentation: From Deep Multitask Learning to Intratask Sharing\u2014and Back",
"author": "Elliot Meyerson, Risto Miikkulainen",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2256"
},
{
"id": "site_95b8aa7a78",
"title": "QMIX: Monotonic Value Function Factorisation for Deep Multi-Agent Reinforcement Learning",
"author": "Tabish Rashid, Mikayel Samvelyan, Christian Schroeder, Gregory Farquhar, Jakob Foerster, Shimon Whiteson",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2389"
},
{
"id": "site_570f6393de",
"title": "QuantTree: Histograms for Change Detection in Multivariate Data Streams",
"author": "Giacomo Boracchi, Diego Carrera, Cristiano Cervellera, Danilo Macci\u00f2",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2268"
},
{
"id": "site_e7f339d761",
"title": "Quasi-Monte Carlo Variational Inference",
"author": "Alexander Buchholz, Florian Wenzel, Stephan Mandt",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2288"
},
{
"id": "site_0ef24a3fef",
"title": "Quickshift++: Provably Good Initializations for Sample-Based Mean Shift",
"author": "Heinrich Jiang, Jennifer Jang, Samory Kpotufe",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1949"
},
{
"id": "site_15c85a4ec6",
"title": "RLlib: Abstractions for Distributed Reinforcement Learning",
"author": "Eric Liang, Richard Liaw, Robert Nishihara, Philipp Moritz, Roy Fox, Ken Goldberg, Joseph E Gonzalez, Michael Jordan, Ion Stoica",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2116"
},
{
"id": "site_37b3e3dafa",
"title": "Racing Thompson: an Efficient Algorithm for Thompson Sampling with Non-conjugate Priors",
"author": "Yichi Zhou, Jun Zhu, Jingwei Zhuo",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2160"
},
{
"id": "site_4762a51410",
"title": "RadialGAN: Leveraging multiple datasets to improve target-specific predictive models using Generative Adversarial Networks",
"author": "Jinsung Yoon, James Jordon, Mihaela van der Schaar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2027"
},
{
"id": "site_fa27cc85b0",
"title": "Randomized Block Cubic Newton Method",
"author": "Nikita Doikov, Peter Richtarik",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2322"
},
{
"id": "site_b690ac16d8",
"title": "Ranking Distributions based on Noisy Sorting",
"author": "Adil El Mesaoudi-Paul, Eyke H\u00fcllermeier, Robert Busa-Fekete",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2051"
},
{
"id": "site_440714dd18",
"title": "Rapid Adaptation with Conditionally Shifted Neurons",
"author": "Tsendsuren Munkhdalai, Xingdi Yuan, Soroush Mehri, Adam Trischler",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1966"
},
{
"id": "site_c797886f54",
"title": "Rates of Convergence of Spectral Methods for Graphon Estimation",
"author": "Jiaming Xu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2335"
},
{
"id": "site_c27baba9aa",
"title": "Rectify Heterogeneous Models with Semantic Mapping",
"author": "Han-Jia Ye, De-Chuan Zhan, Yuan Jiang, Zhi-Hua Zhou",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1971"
},
{
"id": "site_573fb83532",
"title": "Recurrent Predictive State Policy Networks",
"author": "Ahmed Hefny, Zita Marinho, Wen Sun, Siddhartha Srinivasa, Geoff Gordon",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2062"
},
{
"id": "site_e0334c1e4c",
"title": "Regret Minimization for Partially Observable Deep Reinforcement Learning",
"author": "Peter Jin, EECS Kurt Keutzer, Sergey Levine",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2300"
},
{
"id": "site_550e338c3a",
"title": "Reinforcement Learning with Function-Valued Action Spaces for Partial Differential Equation Control",
"author": "Yangchen Pan, Amir-massoud Farahmand, Martha White, Saleh Nabi, Piyush Grover, Daniel Nikovski",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2182"
},
{
"id": "site_82d9ec7752",
"title": "Reinforcing Adversarial Robustness using Model Confidence Induced by Adversarial Training",
"author": "Xi Wu, Wooyeong Jang, Jiefeng Chen, Lingjiao Chen, Somesh Jha",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2298"
},
{
"id": "site_e5026571ec",
"title": "Representation Learning on Graphs with Jumping Knowledge Networks",
"author": "Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken-ichi Kawarabayashi, Stefanie Jegelka",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2453"
},
{
"id": "site_2ff220322b",
"title": "Representation Tradeoffs for Hyperbolic Embeddings",
"author": "Frederic Sala, Christopher De Sa, Albert Gu, Christopher Re",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2289"
},
{
"id": "site_b990910bb8",
"title": "Residual Unfairness in Fair Machine Learning from Prejudiced Data",
"author": "Nathan Kallus, Angela Zhou",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2314"
},
{
"id": "site_e9698c9712",
"title": "Revealing Common Statistical Behaviors in Heterogeneous Populations",
"author": "Andrey Zhitnikov, Rotem Mulayoff, Tomer Michaeli",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2019"
},
{
"id": "site_b35ddaef39",
"title": "Reviving and Improving Recurrent Back-Propagation",
"author": "Renjie Liao, Yuwen Xiong, Ethan Fetaya, Lisa Zhang, KiJung Yoon, Zachary S Pitkow, Raquel Urtasun, Richard Zemel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1998"
},
{
"id": "site_1930de6718",
"title": "Riemannian Stochastic Recursive Gradient Algorithm with Retraction and Vector Transport and Its Convergence Analysis",
"author": "Hiroyuki Kasai, Hiroyuki Sato, Bamdev Mishra",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2109"
},
{
"id": "site_3854d4b5b2",
"title": "Robust and Scalable Models of Microbiome Dynamics",
"author": "Travis Gibson, Georg Gerber",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2382"
},
{
"id": "site_5130e9ee43",
"title": "SADAGRAD: Strongly Adaptive Stochastic Gradient Methods",
"author": "Zaiyi Chen, Yi Xu, Enhong Chen, Tianbao Yang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2010"
},
{
"id": "site_2389e07a61",
"title": "SAFFRON: an Adaptive Algorithm for Online Control of the False Discovery Rate",
"author": "Aaditya Ramdas, Tijana Zrnic, Martin Wainwright, Michael Jordan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2207"
},
{
"id": "site_b179d1a748",
"title": "SBEED: Convergent Reinforcement Learning with Nonlinear Function Approximation",
"author": "Bo Dai, Albert Shaw, Lihong Li, Lin Xiao, Niao He, Zhen Liu, Jianshu Chen, Le Song",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2441"
},
{
"id": "site_cc3f69fc13",
"title": "SGD and Hogwild! Convergence Without the Bounded Gradients Assumption",
"author": "Lam Nguyen, PHUONG_HA NGUYEN, Marten van Dijk, Peter Richtarik, Katya Scheinberg, Martin Takac",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2313"
},
{
"id": "site_6eb76c7dd6",
"title": "SMAC: Simultaneous Mapping and Clustering Using Spectral Decompositions",
"author": "chandrajit bajaj, Tingran Gao, Zihang He, Qixing Huang, Zhenxiao Liang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1899"
},
{
"id": "site_b65ec51747",
"title": "SQL-Rank: A Listwise Approach to Collaborative Ranking",
"author": "LIWEI WU, Cho-Jui Hsieh, University of California James Sharpnack",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2098"
},
{
"id": "site_fef71ac129",
"title": "Safe Element Screening for Submodular Function Minimization",
"author": "Weizhong Zhang, Bin Hong, Lin Ma, Wei Liu, Tong Zhang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1883"
},
{
"id": "site_bfe3bf5cc6",
"title": "Scalable Bilinear Pi Learning Using State and Action Features",
"author": "Yichen Chen, Lihong Li, Mengdi Wang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2330"
},
{
"id": "site_a0d0a4661f",
"title": "Scalable Deletion-Robust Submodular Maximization: Data Summarization with Privacy and Fairness Constraints",
"author": "Ehsan Kazemi, Morteza Zadimoghaddam, Amin Karbasi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1927"
},
{
"id": "site_64df7dab82",
"title": "Scalable Gaussian Processes with Grid-Structured Eigenfunctions (GP-GRIEF)",
"author": "Trefor Evans, Prasanth B Nair",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2139"
},
{
"id": "site_1ef54a0d86",
"title": "Scalable approximate Bayesian inference for particle tracking data",
"author": "Ruoxi Sun, Department of Statistics Liam Paninski",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2375"
},
{
"id": "site_552f807b73",
"title": "Selecting Representative Examples for Program Synthesis",
"author": "Yewen Pu, Zachery Miranda, Armando Solar-Lezama, Leslie Kaelbling",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2384"
},
{
"id": "site_64211e2e08",
"title": "Self-Bounded Prediction Suffix Tree via Approximate String Matching",
"author": "Dongwoo Kim, Christian Walder",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2112"
},
{
"id": "site_a2d8806067",
"title": "Self-Consistent Trajectory Autoencoder: Hierarchical Reinforcement Learning with Trajectory Embeddings",
"author": "John Co-Reyes, Yu Xuan Liu, Abhishek Gupta, Benjamin Eysenbach, Pieter Abbeel, Sergey Levine",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2337"
},
{
"id": "site_35923d1296",
"title": "Self-Imitation Learning",
"author": "Junhyuk Oh, Yijie Guo, Satinder Singh, Honglak Lee",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2101"
},
{
"id": "site_7d8c13bdc1",
"title": "Semi-Amortized Variational Autoencoders",
"author": "Yoon Kim, Sam Wiseman, Andrew Miller, David Sontag, Alexander Rush",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1981"
},
{
"id": "site_013a8e1286",
"title": "Semi-Implicit Variational Inference",
"author": "Mingzhang Yin, Mingyuan Zhou",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2124"
},
{
"id": "site_46e17a396b",
"title": "Semi-Supervised Learning on Data Streams via Temporal Label Propagation",
"author": "Tal Wagner, Sudipto Guha, Shiva Kasiviswanathan, Nina Mishra",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1879"
},
{
"id": "site_a970655bfe",
"title": "Semi-Supervised Learning via Compact Latent Space Clustering",
"author": "Konstantinos Kamnitsas, Daniel C. Castro, Loic Le Folgoc, Ian Walker, Ryutaro Tanno, Daniel Rueckert, Ben Glocker, Antonio Criminisi, Aditya Nori",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2417"
},
{
"id": "site_95f3640b72",
"title": "Semiparametric Contextual Bandits",
"author": "Akshay Krishnamurthy, Steven Wu, Vasilis Syrgkanis",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2270"
},
{
"id": "site_064abf05b0",
"title": "Shampoo: Preconditioned Stochastic Tensor Optimization",
"author": "Vineet Gupta, Tomer Koren, Yoram Singer",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2380"
},
{
"id": "site_37de429a2a",
"title": "Signal and Noise Statistics Oblivious Orthogonal Matching Pursuit",
"author": "Sreejith Kallummil, Sheetal Kalyani",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2315"
},
{
"id": "site_f8e4dc05bf",
"title": "Smoothed Action Value Functions for Learning Gaussian Policies",
"author": "Ofir Nachum, Mohammad Norouzi, George Tucker, Dale Schuurmans",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2086"
},
{
"id": "site_b44b04bb5e",
"title": "Soft Actor-Critic: Off-Policy Maximum Entropy Deep Reinforcement Learning with a Stochastic Actor",
"author": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, Sergey Levine",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1986"
},
{
"id": "site_8d3a115336",
"title": "Solving Partial Assignment Problems using Random Clique Complexes",
"author": "Charu Sharma, Deepak Nathani, Manu Kaul",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2170"
},
{
"id": "site_9bd52a7c72",
"title": "Sound Abstraction and Decomposition of Probabilistic Programs",
"author": "Steven Holtzen, Guy Van den Broeck, Todd Millstein",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2418"
},
{
"id": "site_2d97ca72b4",
"title": "SparseMAP: Differentiable Sparse Structured Inference",
"author": "Vlad Niculae, Andre Filipe Torres Martins, Mathieu Blondel, Claire Cardie",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2043"
},
{
"id": "site_1d4118db86",
"title": "Spatio-temporal Bayesian On-line Changepoint Detection with Model Selection",
"author": "Jeremias Knoblauch, Theodoros Damoulas",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1887"
},
{
"id": "site_40b0bd3b00",
"title": "Spectrally Approximating Large Graphs with Smaller Graphs",
"author": "Andreas Loukas, Pierre Vandergheynst",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1948"
},
{
"id": "site_aba587e71e",
"title": "Spline Filters For End-to-End Deep Learning",
"author": "Randall Balestriero, Romain Cosentino, Herve Glotin, Richard Baraniuk",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2291"
},
{
"id": "site_595ef3ad5f",
"title": "Spotlight: Optimizing Device Placement for Training Deep Neural Networks",
"author": "Yuanxiang Gao, Li Chen, Baochun Li",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2032"
},
{
"id": "site_7e77f707b1",
"title": "Spurious Local Minima are Common in Two-Layer ReLU Neural Networks",
"author": "Itay Safran, Ohad Shamir",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2033"
},
{
"id": "site_394b1a0694",
"title": "Stability and Generalization of Learning Algorithms that Converge to Global Optima",
"author": "Zachary Charles, Dimitris Papailiopoulos",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2024"
},
{
"id": "site_fb8e95bb24",
"title": "Stabilizing Gradients for Deep Neural Networks via Efficient SVD Parameterization",
"author": "Jiong Zhang, Qi Lei, Inderjit Dhillon",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2038"
},
{
"id": "site_f705436047",
"title": "Stagewise Safe Bayesian Optimization with Gaussian Processes",
"author": "Yanan Sui, Vincent Zhuang, Joel Burdick, Yisong Yue",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2466"
},
{
"id": "site_5a21846f5c",
"title": "State Abstractions for Lifelong Reinforcement Learning",
"author": "David Abel, Dilip S. Arumugam, Lucas Lehnert, Michael L. Littman",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2087"
},
{
"id": "site_d023a3274d",
"title": "State Space Gaussian Processes with Non-Gaussian Likelihood",
"author": "Hannes Nickisch, Arno Solin, Alexander Grigorevskiy",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2065"
},
{
"id": "site_4ebcfcd3ea",
"title": "Stein Points",
"author": "Wilson Ye Chen, Lester Mackey, Jackson Gorham, Francois-Xavier Briol, Chris J Oates",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2275"
},
{
"id": "site_aa4cd22439",
"title": "Stein Variational Gradient Descent Without Gradient",
"author": "Jun Han, Qiang Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2105"
},
{
"id": "site_1f13ab5bc8",
"title": "Stein Variational Message Passing for Continuous Graphical Models",
"author": "Dilin Wang, Zhe Zeng, Qiang Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2214"
},
{
"id": "site_a9e4107c97",
"title": "Stochastic PCA with $\\ell_2$ and $\\ell_1$ Regularization",
"author": "Poorya Mianjy, Raman Arora",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2479"
},
{
"id": "site_c4fdfd5416",
"title": "Stochastic Proximal Algorithms for AUC Maximization",
"author": "Michael Natole Jr, Yiming Ying, Siwei Lyu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1921"
},
{
"id": "site_3879cf4cea",
"title": "Stochastic Training of Graph Convolutional Networks with Variance Reduction",
"author": "Jianfei Chen, Jun Zhu, Le Song",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2169"
},
{
"id": "site_014891c26a",
"title": "Stochastic Variance-Reduced Cubic Regularized Newton Method",
"author": "Dongruo Zhou, Pan Xu, Quanquan Gu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2223"
},
{
"id": "site_5a213f7eaf",
"title": "Stochastic Variance-Reduced Hamilton Monte Carlo Methods",
"author": "Difan Zou, Pan Xu, Quanquan Gu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2347"
},
{
"id": "site_f143696e0a",
"title": "Stochastic Variance-Reduced Policy Gradient",
"author": "Matteo Papini, Damiano Binaghi, Giuseppe Canonaco, Matteo Pirotta, Marcello Restelli",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2066"
},
{
"id": "site_01b64fe9f5",
"title": "Stochastic Video Generation with a Learned Prior",
"author": "Emily Denton, Rob Fergus",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2191"
},
{
"id": "site_8a45fa90e3",
"title": "Stochastic Wasserstein Barycenters",
"author": "Sebastian Claici, Edward Chien, Justin Solomon",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2316"
},
{
"id": "site_390ef17a89",
"title": "StrassenNets: Deep Learning with a Multiplication Budget",
"author": "Michael Tschannen, Aran Khanna, Animashree Anandkumar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2167"
},
{
"id": "site_97856c1433",
"title": "Streaming Principal Component Analysis in Noisy Setting",
"author": "Teodor Vanislavov Marinov, Poorya Mianjy, Raman Arora",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2459"
},
{
"id": "site_bce860d4d0",
"title": "Stronger Generalization Bounds for Deep Nets via a Compression Approach",
"author": "Sanjeev Arora, Rong Ge, Behnam Neyshabur, Yi Zhang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2412"
},
{
"id": "site_38992801ca",
"title": "Structured Control Nets for Deep Reinforcement Learning",
"author": "Mario Srouji, Jian Zhang, Ruslan Salakhutdinov",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2282"
},
{
"id": "site_4bd7adc4a4",
"title": "Structured Evolution with Compact Architectures for Scalable Policy Optimization",
"author": "Krzysztof Choromanski, Mark Rowland, Vikas Sindhwani, Richard E Turner, Adrian Weller",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1907"
},
{
"id": "site_99edb595f2",
"title": "Structured Output Learning with Abstention: Application to Accurate Opinion Prediction",
"author": "Alexandre Garcia, Telecom-ParisTech Chlo\u00e9 Clavel, Slim Essid, Florence d'Alche-Buc",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2199"
},
{
"id": "site_c0cf647a0f",
"title": "Structured Variational Learning of Bayesian Neural Networks with Horseshoe Priors",
"author": "Soumya Ghosh, Jiayu Yao, Finale Doshi-Velez",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2321"
},
{
"id": "site_dea785f574",
"title": "Structured Variationally Auto-encoded Optimization",
"author": "Xiaoyu Lu, Javier Gonz\u00e1lez, Zhenwen Dai, Neil Lawrence",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2328"
},
{
"id": "site_eec174750b",
"title": "Style Tokens: Unsupervised Style Modeling, Control and Transfer in End-to-End Speech Synthesis",
"author": "Yuxuan Wang, Daisy Stanton, Yu Zhang, RJ-Skerry Ryan, Eric Battenberg, Joel Shor, Ying Xiao, Ye Jia, Fei Ren, Rif Saurous",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2317"
},
{
"id": "site_6158fc8deb",
"title": "Submodular Hypergraphs: p-Laplacians, Cheeger Inequalities and Spectral Clustering",
"author": "Pan Li, Olgica Milenkovic",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2044"
},
{
"id": "site_6d5b2e7d80",
"title": "Subspace Embedding and Linear Regression with Orlicz Norm",
"author": "Alexandr Andoni, Chengyu Lin, Ying Sheng, Peilin Zhong, Ruiqi Zhong",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2451"
},
{
"id": "site_98e5eb644d",
"title": "Synthesizing Programs for Images using Reinforced Adversarial Learning",
"author": "Iaroslav Ganin, Tejas Kulkarni, Igor Babuschkin, S. M. Ali Eslami, Oriol Vinyals",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1972"
},
{
"id": "site_1da096d6f7",
"title": "Synthesizing Robust Adversarial Examples",
"author": "Anish Athalye, Logan Engstrom, Andrew Ilyas, Kevin Kwok",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2307"
},
{
"id": "site_bbec36178d",
"title": "TACO: Learning Task Decomposition via Temporal Alignment for Control",
"author": "Kyriacos Shiarlis, Markus Wulfmeier, Sasha Salter, Shimon Whiteson, Ingmar Posner",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2465"
},
{
"id": "site_506f3e95e2",
"title": "TAPAS: Tricks to Accelerate (encrypted) Prediction As a Service",
"author": "Amartya Sanyal, Matt Kusner, Adria Gascon, Varun Kanade",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2140"
},
{
"id": "site_909de85354",
"title": "Tempered Adversarial Networks",
"author": "Mehdi S. M. Sajjadi, Giambattista Parascandolo, Arash Mehrjou, Bernhard Sch\u00f6lkopf",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1870"
},
{
"id": "site_280cc64df9",
"title": "Temporal Poisson Square Root Graphical Models",
"author": "Sinong Geng, Zhaobin Kuang, Peggy Peissig, University of Wisconsin David Page",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2301"
},
{
"id": "site_e5b05320f3",
"title": "Testing Sparsity over Known and Unknown Bases",
"author": "Siddharth Barman, Arnab Bhattacharyya, Suprovat Ghoshal",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2164"
},
{
"id": "site_029894e01b",
"title": "The Dynamics of Learning: A Random Matrix Approach",
"author": "Zhenyu Liao, Romain Couillet",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2023"
},
{
"id": "site_46f3a2a569",
"title": "The Edge Density Barrier: Computational-Statistical Tradeoffs in Combinatorial Inference",
"author": "Hao Lu, Yuan Cao, Junwei Lu, Han Liu, Zhaoran Wang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2088"
},
{
"id": "site_57c9f5589d",
"title": "The Generalization Error of Dictionary Learning with Moreau Envelopes",
"author": "ALEXANDROS GEORGOGIANNIS",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1931"
},
{
"id": "site_5130e609b3",
"title": "The Hidden Vulnerability of Distributed Learning in Byzantium",
"author": "El Mahdi El Mhamdi, Rachid Guerraoui, S\u00e9bastien Rouault",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2351"
},
{
"id": "site_42710d4d31",
"title": "The Hierarchical Adaptive Forgetting Variational Filter",
"author": "Vincent Moens",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2185"
},
{
"id": "site_93428109cf",
"title": "The Limits of Maxing, Ranking, and Preference Learning",
"author": "Moein Falahatgar, Ayush Jain, Alon Orlitsky, Venkatadheeraj Pichapati, Vaishakh Ravindrakumar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2103"
},
{
"id": "site_814bc73dc6",
"title": "The Mechanics of n-Player Differentiable Games",
"author": "David Balduzzi, Sebastien Racaniere, James Martens, Jakob Foerster, Karl Tuyls, Thore Graepel",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2030"
},
{
"id": "site_c8fc36b0be",
"title": "The Mirage of Action-Dependent Baselines in Reinforcement Learning",
"author": "George Tucker, Surya Bhupatiraju, Shixiang Gu, Richard E Turner, Zoubin Ghahramani, Sergey Levine",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2355"
},
{
"id": "site_e5c176a679",
"title": "The Multilinear Structure of ReLU Networks",
"author": "Thomas Laurent, James von Brecht",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2005"
},
{
"id": "site_9447c96784",
"title": "The Power of Interpolation: Understanding the Effectiveness of SGD in Modern Over-parametrized Learning",
"author": "Siyuan Ma, Raef Bassily, Mikhail Belkin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1968"
},
{
"id": "site_4e2f18fd40",
"title": "The Uncertainty Bellman Equation and Exploration",
"author": "Brendan O'Donoghue, Ian Osband, Remi Munos, Vlad Mnih",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1959"
},
{
"id": "site_46be3de75f",
"title": "The Weighted Kendall and High-order Kernels for Permutations",
"author": "Yunlong Jiao, Jean-Philippe Vert",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2305"
},
{
"id": "site_728d5fa954",
"title": "The Well-Tempered Lasso",
"author": "Yuanzhi Li, Yoram Singer",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2401"
},
{
"id": "site_fc76d4ada0",
"title": "Theoretical Analysis of Image-to-Image Translation with Adversarial Learning",
"author": "Xudong Pan, Mi Zhang, Daizong Ding",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1892"
},
{
"id": "site_fdf462aac8",
"title": "Theoretical Analysis of Sparse Subspace Clustering with Missing Entries",
"author": "Manolis Tsakiris, Rene Vidal",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1928"
},
{
"id": "site_11408f8762",
"title": "Thompson Sampling for Combinatorial Semi-Bandits",
"author": "Siwei Wang, Wei Chen",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2120"
},
{
"id": "site_d6fab0056e",
"title": "Tight Regret Bounds for Bayesian Optimization in One Dimension",
"author": "Jonathan Scarlett",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1945"
},
{
"id": "site_fa789c91b3",
"title": "Tighter Variational Bounds are Not Necessarily Better",
"author": "Tom Rainforth, Adam Kosiorek, Tuan Anh Le, Chris Maddison, Maximilian Igl, Frank Wood, Yee-Whye Teh",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2399"
},
{
"id": "site_5011087888",
"title": "Time Limits in Reinforcement Learning",
"author": "Fabio Pardo, Arash Tavakoli, Vitaly Levdik, Petar Kormushev",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2463"
},
{
"id": "site_fa127346d5",
"title": "To Understand Deep Learning We Need to Understand Kernel Learning",
"author": "Mikhail Belkin, Siyuan Ma, Soumik Mandal",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2026"
},
{
"id": "site_84c3f82b72",
"title": "Topological mixture estimation",
"author": "Steve Huntsman",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1873"
},
{
"id": "site_b5b11018cd",
"title": "Towards Binary-Valued Gates for Robust LSTM Training",
"author": "Zhuohan Li, Di He, Fei Tian, Wei Chen, Tao Qin, Liwei Wang, Tie-Yan Liu",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1916"
},
{
"id": "site_c135aeda08",
"title": "Towards Black-box Iterative Machine Teaching",
"author": "Weiyang Liu, Bo Dai, Xingguo Li, Zhen Liu, James Rehg, Le Song",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2398"
},
{
"id": "site_958fb1a641",
"title": "Towards End-to-End Prosody Transfer for Expressive Speech Synthesis with Tacotron",
"author": "RJ Skerry-Ryan, Eric Battenberg, Ying Xiao, Yuxuan Wang, Daisy Stanton, Joel Shor, Ron Weiss, Robert Clark, Rif Saurous",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2281"
},
{
"id": "site_47d1c4e9c0",
"title": "Towards Fast Computation of Certified Robustness for ReLU Networks",
"author": "Tsui-Wei Weng, Huan Zhang, Hongge Chen, Zhao Song, Cho-Jui Hsieh, Luca Daniel, Duane Boning, Inderjit Dhillon",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2052"
},
{
"id": "site_82297a9484",
"title": "Towards More Efficient Stochastic Decentralized Learning: Faster Convergence and Sparse Communication",
"author": "Zebang Shen, Aryan Mokhtari, Tengfei Zhou, Peilin Zhao, Hui Qian",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2229"
},
{
"id": "site_e0ed49a273",
"title": "Trainable Calibration Measures for Neural Networks from Kernel Mean Embeddings",
"author": "Aviral Kumar, Sunita Sarawagi, Ujjwal Jain",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2326"
},
{
"id": "site_0732b7f875",
"title": "Training Neural Machines with Trace-Based Supervision",
"author": "Matthew Mirman, Dimitar Dimitrov, Pavle Djordjevic, Timon Gehr, Martin Vechev",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2452"
},
{
"id": "site_8de7d5350f",
"title": "Transfer Learning via Learning to Transfer",
"author": "Ying WEI, Yu Zhang, Junzhou Huang, Qiang Yang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2145"
},
{
"id": "site_efe4b4c47d",
"title": "Transfer in Deep Reinforcement Learning Using Successor Features and Generalised Policy Improvement",
"author": "Andre Barreto, Diana Borsa, John Quan, Tom Schaul, David Silver, Matteo Hessel, Daniel J. Mankowitz, Augustin Zidek, Remi Munos",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2081"
},
{
"id": "site_4ba096d291",
"title": "Transformation Autoregressive Networks",
"author": "Junier Oliva, Kumar Avinava Dubey, Manzil Zaheer, Barnab\u00e1s P\u00f3czos, Ruslan Salakhutdinov, Eric Xing, Jeff Schneider",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2324"
},
{
"id": "site_63867bb9be",
"title": "Tree Edit Distance Learning via Adaptive Symbol Embeddings",
"author": "Benjamin Paa\u00dfen, Claudio Gallicchio, Alessio Micheli, CITEC Barbara Hammer",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2180"
},
{
"id": "site_cbcc8defdd",
"title": "Tropical Geometry of Deep Neural Networks",
"author": "Liwen Zhang, Gregory Naisat, Lek-Heng Lim",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2048"
},
{
"id": "site_ab2dce5c02",
"title": "Ultra Large-Scale Feature Selection using Count-Sketches",
"author": "Amirali Aghazadeh, Ryan Spring, Daniel LeJeune, Gautam Dasarathy, Anshumali Shrivastava, Richard Baraniuk",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2249"
},
{
"id": "site_cc0cd23de0",
"title": "Unbiased Objective Estimation in Predictive Optimization",
"author": "Shinji Ito, Akihiro Yabe, Ryohei Fujimaki",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2001"
},
{
"id": "site_98e5a5e863",
"title": "Understanding Generalization and Optimization Performance of Deep CNNs",
"author": "Pan Zhou, Jiashi Feng",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1932"
},
{
"id": "site_3ce53ca30d",
"title": "Understanding and Simplifying One-Shot Architecture Search",
"author": "Gabriel Bender, Pieter-Jan Kindermans, Barret Zoph, Vijay Vasudevan, Quoc Le",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2077"
},
{
"id": "site_62886b5954",
"title": "Understanding the Loss Surface of Neural Networks for Binary Classification",
"author": "SHIYU LIANG, Ruoyu Sun, Yixuan Li, R Srikant",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2237"
},
{
"id": "site_8dc11ddacf",
"title": "Universal Planning Networks: Learning Generalizable Representations for Visuomotor Control",
"author": "Aravind Srinivas, Allan Jabri, Pieter Abbeel, Sergey Levine, Chelsea Finn",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2340"
},
{
"id": "site_9447497c32",
"title": "Using Inherent Structures to design Lean 2-layer RBMs",
"author": "Abhishek Bansal, Abhinav Anand, Chiranjib Bhattacharyya",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2376"
},
{
"id": "site_8fab2d548e",
"title": "Using Reward Machines for High-Level Task Specification and Decomposition in Reinforcement Learning",
"author": "Rodrigo A Toro Icarte, Toryn Q Klassen, Richard Valenzano, Sheila McIlraith",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2454"
},
{
"id": "site_bc42eb8052",
"title": "Variable Selection via Penalized Neural Network: a Drop-Out-One Loss Approach",
"author": "Mao Ye, Yan Sun",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1995"
},
{
"id": "site_047342cb54",
"title": "Variance Regularized Counterfactual Risk Minimization via Variational Divergence Minimization",
"author": "Hang Wu, May Wang",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2204"
},
{
"id": "site_5ca4789ee7",
"title": "Variational Bayesian dropout: pitfalls and fixes",
"author": "Jiri Hron, Alexander Matthews, Zoubin Ghahramani",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2336"
},
{
"id": "site_9f335ef386",
"title": "Variational Inference and Model Selection with Generalized Evidence Bounds",
"author": "Liqun Chen, Chenyang Tao, RUIYI (ROY) ZHANG, Ricardo Henao, Lawrence Carin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2377"
},
{
"id": "site_e9509781a6",
"title": "Variational Network Inference: Strong and Stable with Concrete Support",
"author": "Amir Dezfouli, Edwin Bonilla, Richard Nock",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1878"
},
{
"id": "site_092d698b62",
"title": "Video Prediction with Appearance and Motion Conditions",
"author": "Yunseok Jang, Gunhee Kim, Yale Song",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1926"
},
{
"id": "site_a2aeef42d0",
"title": "Visualizing and Understanding Atari Agents",
"author": "Samuel Greydanus, Anurag Koul, Jonathan Dodge, Alan Fern",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1987"
},
{
"id": "site_4bcdaede35",
"title": "WHInter: A Working set algorithm for High-dimensional sparse second order Interaction models",
"author": "Marine LE MORVAN, Jean-Philippe Vert",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2255"
},
{
"id": "site_1e54d4fd62",
"title": "WSNet: Compact and Efficient Networks Through Weight Sampling",
"author": "Xiaojie Jin, Yingzhen Yang, Ning Xu, Jianchao Yang, Nebojsa Jojic, Jiashi Feng, Shuicheng Yan",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2402"
},
{
"id": "site_afe47a8a56",
"title": "Weakly Consistent Optimal Pricing Algorithms in Repeated Posted-Price Auctions with Strategic Buyer",
"author": "Alexey Drutsa",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1911"
},
{
"id": "site_97912a5c55",
"title": "Weakly Submodular Maximization Beyond Cardinality Constraints: Does Randomization Help Greedy?",
"author": "Lin Chen, Moran Feldman, Amin Karbasi",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2031"
},
{
"id": "site_cbc1069084",
"title": "Weightless: Lossy weight encoding for deep neural network compression",
"author": "Brandon Reagen, Udit Gupta, Bob Adolf, Michael Mitzenmacher, Alexander Rush, Gu-Yeon Wei, David Brooks",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2218"
},
{
"id": "site_22cf81dd2d",
"title": "Which Training Methods for GANs do actually Converge?",
"author": "Lars Mescheder, Andreas Geiger, Sebastian Nowozin",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/1900"
},
{
"id": "site_5b5788664b",
"title": "Yes, but Did It Work?: Evaluating Variational Inference",
"author": "Yuling Yao, Aki Vehtari, Daniel Simpson, Andrew Gelman",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2055"
},
{
"id": "site_551999532f",
"title": "oi-VAE: Output Interpretable VAEs for Nonlinear Group Factor Analysis",
"author": "Samuel Ainsworth, Nicholas J Foti, Adrian KC Lee, Emily Fox",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2410"
},
{
"id": "site_36ba0a7109",
"title": "prDeep: Robust Phase Retrieval with a Flexible Deep Network",
"author": "Christopher Metzler, Phillip Schniter, Ashok Veeraraghavan, Richard Baraniuk",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2480"
},
{
"id": "site_72396d0b01",
"title": "signSGD: Compressed Optimisation for Non-Convex Problems",
"author": "Jeremy Bernstein, Yu-Xiang Wang, Kamyar Azizzadenesheli, Anima Anandkumar",
"status": "Oral",
"track": "main",
"site": "https://icml.cc/virtual/2018/poster/2356"
}
] |