Spaces:
Runtime error
Runtime error
File size: 84,456 Bytes
b1aad3c |
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 |
{
"MDC": [
"metering data collector",
"mobile data challenge",
"multiple description coding"
],
"SVM": [
"support vector machine",
"state vector machine"
],
"MER": [
"maximum entropy regularizer",
"music emotion research",
"music emotion recognition"
],
"SVC": [
"support vector classifier",
"scalable video coding"
],
"CNN": [
"convolutional neural network",
"condensed nearest neighbor",
"complicated neural networks",
"citation nearest neighbour"
],
"FEC": [
"forward error correction",
"federal election candidate"
],
"FSM": [
"finite state machine",
"fast sweeping method"
],
"LDA": [
"latent dirichlet allocation",
"linear discriminant analysis"
],
"FR": [
"frame recall",
"faster r - cnn",
"fooling rate"
],
"TF": [
"term frequency",
"trend filtering",
"tensor factorization",
"transcription factor"
],
"SS": [
"speech synthesis",
"single stage",
"stochastic search",
"social status",
"spectrum sensing",
"severe sepsis",
"scheduled sampling",
"secondary structure",
"simple sum"
],
"GPS": [
"global positioning system",
"general pattern search",
"generalized propensity score"
],
"PCA": [
"principal component analysis",
"posterior cortical atrophy"
],
"MSE": [
"mean squared error",
"model selection eqn",
"minimum square error"
],
"ILP": [
"inductive logic programming",
"integer linear programming"
],
"MTI": [
"mixture time invariant",
"medical text indexer"
],
"SNN": [
"siamese neural network",
"spiking neural networks"
],
"SOP": [
"sentence order prediction",
"secrecy outage probability"
],
"SVD": [
"singular value decomposition",
"singing voice detection"
],
"CD": [
"cosine distance",
"contrastive divergence",
"consecutive disks",
"critical difference",
"chamfer distance",
"contact distance",
"cover difference",
"chemical diagram",
"crohn 's disease"
],
"OCR": [
"optical character recognition",
"one - to - one character replacements"
],
"MRC": [
"machine reading comprehension",
"maximal ratio combining",
"magnetic resonance coupling"
],
"SAP": [
"stable abstraction principle",
"simple amplitude presitortion"
],
"DPP": [
"determinantal point process",
"disjoint paths problem"
],
"QRF": [
"quantile random forest",
"quantile regression forest"
],
"GCM": [
"google cloud messaging",
"generalized cell - to - cell mapping",
"general circulation model",
"galois / counter mode",
"global circulation model"
],
"PPP": [
"poisson point process",
"palm point process"
],
"FCN": [
"fully convolutional neural network",
"fully connected network"
],
"RNN": [
"recurrent neural network",
"random neural networks",
"recursive neural network",
"reverse nearest neighbour"
],
"ML": [
"machine learning",
"maximum likelihood",
"model logic",
"malware landscape",
"mortar luminance"
],
"BC": [
"bandwidth constraint",
"betweenness centrality",
"between class",
"broadcast channel",
"blockchain"
],
"BN": [
"bayesian network",
"batch normalization"
],
"TC": [
"telephone conversations",
"town crier",
"tumor core",
"time - continuous",
"target country",
"total cover",
"traffic class",
"total correlation"
],
"TS": [
"tree structures",
"terminal stance",
"temperature scaling",
"temperature - based sampling",
"tabu search",
"thompson sampling",
"time series",
"time switching",
"target syntactic",
"text summarization",
"triadic simmelian",
"tessellation shader"
],
"HPC": [
"high performance computing",
"hardware performance counters"
],
"OSS": [
"orthogonal spectrum sharing",
"open source software"
],
"MAD": [
"median absolute difference",
"median absolute deviations",
"map attention decision"
],
"POS": [
"partial optimal slacking",
"part of speech"
],
"SSD": [
"solid state disk",
"single shot detection"
],
"FA": [
"feature alignment",
"fractional anisotropy",
"feedback alignment",
"failure analysis",
"firefly algorithm",
"false alarm",
"fault attack"
],
"GPA": [
"gaussian process adaptation",
"generalized procrustes analysis",
"graph partition algorithm"
],
"APS": [
"adaptive patch selection",
"adaptive patch search",
"american physical society",
"augmented path schema"
],
"FEM": [
"finite element method",
"finite element methodgm97"
],
"CT": [
"computed tomography",
"constraint theory",
"contributor trust",
"conditional training",
"crowd trust",
"confidential transactions",
"coordinated turn",
"class table"
],
"CAD": [
"coronary artery disease",
"computer aided design",
"computer aided diagnosis"
],
"IR": [
"imbalance ratio",
"individual rationality",
"information retrieval",
"interference range",
"immediate regret",
"influence rank",
"influence ratio",
"integrates results",
"incremental relaying",
"image resolution",
"inactive region"
],
"SMT": [
"satisfiability modulo theory",
"statistical machine translation",
"semantic mask transfer"
],
"ER": [
"entity relationship",
"error rate",
"erdos - renyi",
"experience replay",
"estrogen receptor",
"entity recognition",
"encoder rnn"
],
"JCR": [
"journal citation report",
"jointly convex representation"
],
"STBM": [
"stochastic topic block model",
"stochastic tensor block model"
],
"EC": [
"evolutionary computation",
"equivalence class",
"eigenvector centrality",
"effective concentration",
"empty categories",
"emergent configuration"
],
"UE": [
"user equilibrium",
"unreal engine",
"user equipment"
],
"ODE": [
"o - d demand estimation",
"ordinary differential equation"
],
"VI": [
"vector initialization",
"variable importance",
"variational inference",
"variational information",
"vegetation indices"
],
"RI": [
"random indexing",
"rand index"
],
"DM": [
"distribution matching",
"discovery of models",
"dialog management",
"directional modulation",
"data management"
],
"ASE": [
"amplified spontaneous emission",
"average scale error"
],
"AIR": [
"achievable information rates",
"application instance role"
],
"TL": [
"tracking logic",
"transfer learning"
],
"RTS": [
"request to send",
"real time strategy"
],
"MAC": [
"medium access control",
"multiple access channels",
"mandatory access control",
"message authentication code",
"metropolitan airports commission",
"multiply accumulate",
"multiple access control"
],
"DCF": [
"distributed coordination function",
"discriminative correlation filter"
],
"GK": [
"graphlet kernel",
"greedy knapsack"
],
"DCNN": [
"deep convolutional neural network",
"dynamic convolutional neural network"
],
"PSD": [
"power spectral density",
"phase shift difference"
],
"CA": [
"corresponding arcs",
"current account",
"contention adaptions",
"combinatorial auction",
"cumulative activation",
"cellular automata",
"coordinate ascent",
"classification accuracy",
"context adaptation",
"cardiac amyloidosis",
"contextual attention",
"conversational analysis",
"certificate authority",
"community animator",
"conditioning augmentation",
"character - level accuracy",
"coded aperture"
],
"ICP": [
"iterative closest point",
"inductive conformal prediction",
"iterative cache placement"
],
"MAE": [
"mean absolute error",
"maximum absolute error",
"mean average error"
],
"RL": [
"reinforcement learning",
"representation learning",
"robot learning",
"relative location",
"restrained lloyd",
"resource limitations",
"robust locomotion"
],
"CRF": [
"conditional random field",
"constant rate factor",
"correlation robust function"
],
"NP": [
"noun phrase",
"non - emptiness problem",
"neural pooling",
"no peepholes",
"natural problem",
"new persian",
"neural processes"
],
"DSL": [
"domain - specific language",
"distributed spectrum ledger"
],
"CV": [
"cross validation",
"constant velocity",
"computer vision",
"crowd votes"
],
"OT": [
"oblivious transfer",
"optimal transport",
"orthogonal training",
"optimality theory"
],
"MPC": [
"multi - party computation",
"model predictive control",
"massively parallel computation"
],
"AC": [
"audio commons",
"attack criteria",
"auto - correlation",
"actor - critic",
"atrous convolution",
"access category",
"autonomic computing",
"activation clustering",
"admission control",
"alternating current",
"access categories",
"avoid congestion"
],
"AA": [
"astronomy and astrophysics",
"authorship attribution",
"affine arithmetic",
"adamic adar"
],
"TI": [
"temporal interactions",
"threshold initialization",
"tone injection",
"temporal information"
],
"CIA": [
"confidentiality , integrity , and availability",
"central intelligence agency"
],
"PR": [
"preimage resistant",
"preference ratio",
"patient record",
"pilot reuse",
"precision - recall",
"perfect reconstruction",
"passage retrieval",
"pagerank",
"perfectly reconstructible"
],
"CR": [
"collision resistant",
"cognitive radio",
"communication region",
"containment relations",
"collective rationality",
"coreference resolution",
"code rate",
"carriage returns",
"contention resolution"
],
"IF": [
"interference factor",
"instantaneous frequency",
"intermediate frequency",
"isolation forest"
],
"SPA": [
"simple power analysis",
"saturation peak analysis",
"spatial preferential attachment"
],
"SM": [
"scalar multiplication",
"spatial modulation",
"scattering modulation",
"streaming multiprocessors",
"synthesis module",
"stream multiprocessor",
"speaker model",
"supplementary material",
"spectral matching",
"social media",
"single service manager",
"service manager",
"shared memory",
"state machine",
"system model"
],
"PM": [
"point multiplication",
"polarization - multiplexed",
"probabilistic model",
"physical machines",
"prediction model"
],
"RPC": [
"randomized projective coordinate",
"remote procedure calls"
],
"FPM": [
"fixed point multiplication",
"face prediction model"
],
"MPI": [
"message passing interface",
"multiple parallel instances"
],
"GA": [
"global arrays",
"genetic algorithm",
"graduated assignment"
],
"LSU": [
"louisiana state university",
"load - store unit"
],
"PSC": [
"pittsburgh supercomputing center",
"partial set cover",
"paper sentence classification"
],
"MT": [
"machine translation",
"merkle tree"
],
"CS": [
"computer systems",
"computer science",
"clonal selection",
"connection size",
"computational science",
"centralized solution",
"compressive sensing",
"core semantics",
"coordinated scheduling",
"charging station",
"constraint solver",
"conventional sparsity",
"compressed sensing",
"critical section",
"common subset",
"content store",
"case - sensitive",
"consensus score",
"code - switching",
"cluster - specific"
],
"LOS": [
"length of stay",
"line of sight"
],
"RF": [
"random forest",
"radio frequency",
"regression function",
"regression forest",
"register file"
],
"HS": [
"hourly - similarity",
"horn and schunck",
"hierarchical softmax"
],
"VSM": [
"vector space model",
"vacationing server model"
],
"CC": [
"charging current",
"corpus callosum",
"collision cone",
"cross - correlation",
"creative commons",
"central cloud",
"classifier chain",
"closeness centrality",
"constant charging",
"cover complexity",
"connected caveman",
"constant current",
"collaboration coefficient",
"covert channels",
"correlation constraints",
"core connected"
],
"DBN": [
"deep belief network",
"dynamic bayesian network",
"directed belief net"
],
"DR": [
"dimension reduction",
"demand response",
"diagnosis record",
"detecting repetitions",
"dispersion reduction",
"digit reversal",
"differential rectifier",
"dimensionality reduction",
"document retrieval",
"decoder rnn"
],
"EM": [
"expectation maximization",
"exact match",
"electron microscopy"
],
"FS": [
"feature selection",
"frame semantic",
"fraudulent services",
"fully sampled",
"fragment shader"
],
"MA": [
"moving average",
"multiple assignment",
"merlin - arthur",
"mobile agent"
],
"PSO": [
"particle swarm optimization",
"power system operations"
],
"ABC": [
"artificial bee colony",
"absorbing boundary condition"
],
"MP": [
"message passing",
"matching pursuit",
"most popular",
"max pooling",
"mean precision",
"mask pyramid"
],
"BM": [
"bare metal",
"black males"
],
"VM": [
"virtual machine",
"visual module",
"von mises"
],
"BEA": [
"building educational applications",
"bond energy algorithm"
],
"MMD": [
"maximum mean discrepancy",
"minimizes marginal distribution"
],
"FC": [
"fully connected",
"fusion center",
"fixed confidence",
"filter controls",
"frame content",
"fashion compatibility",
"fiscal code"
],
"FP": [
"function processor",
"false positive",
"frequency partitioning",
"floating point",
"failure prediction",
"fixed point"
],
"SDR": [
"software defined radio",
"semidefine relaxation",
"structured domain randomization"
],
"BO": [
"backoff",
"bayesian optimisation"
],
"EL": [
"euler - lagrange",
"entity linking",
"edge length",
"episode length",
"external links"
],
"LSB": [
"least squares boosting",
"least significant bit"
],
"FIM": [
"fisher information matrix",
"fragment identifier messaging",
"fast iterative method"
],
"DF": [
"direction facilities",
"dominating frequencies"
],
"ACL": [
"agent communication language",
"access control list"
],
"ARC": [
"australian research council",
"adaptive - robust control"
],
"SAR": [
"synthetic aperture radar",
"socially assistive robots",
"search and rescue",
"sensing application recently"
],
"OSI": [
"open systems interconnection",
"open source initiative"
],
"RLC": [
"random linear coding",
"radio link control"
],
"RS": [
"running sum",
"residual splash",
"rate - selective",
"relay station",
"random search",
"remote sensing",
"recommender systems",
"rate splitting",
"randomly sampled",
"random split",
"rate saturation",
"real satellite"
],
"NN": [
"neural network",
"nearest neighbor"
],
"NB": [
"negative binomial",
"naive bayes",
"new brunswick"
],
"HOS": [
"higher - order spectra",
"higher order statistics"
],
"SA": [
"structural accuracy",
"single architecture",
"stacked autoencoders",
"simulated annealing",
"signal analysis",
"sensitivity analysis",
"strongly adaptive",
"sensing antennas",
"significance and accuracy",
"satisfies aass",
"situational awareness",
"subspace alignment",
"steepest ascent",
"scores anatomical",
"string analysis"
],
"EI": [
"expected improvement",
"epidemic intelligence",
"event interaction"
],
"MCC": [
"matthews correlation coefficient",
"minimum coefficient correlation",
"mobile cloud computing",
"mesoscale cellular convection",
"maximal connected component"
],
"ROC": [
"receiver operating characteristic",
"restricted orthogonal constants"
],
"NBC": [
"naive bayes classifier",
"non - parametric bayesian classification"
],
"SK": [
"string kernel",
"septic shock"
],
"MTL": [
"medial temporal lobe",
"multi - task learning"
],
"IL": [
"imitation learning",
"intermediate level"
],
"DMP": [
"dynamic movement primitives",
"digital motion processor"
],
"GCP": [
"graph compression problem",
"grid connection point"
],
"IP": [
"intellectual property",
"internet protocol",
"inductive programming",
"inverse proportion",
"intercept probability",
"image preprocessing",
"integer programming"
],
"TLS": [
"transport layer security",
"terrestrial laser scanning"
],
"PAD": [
"probe attempt detector",
"presentation attack detection"
],
"ASM": [
"active shape model",
"alphabet set multiplier"
],
"DMD": [
"dynamic mirror descent",
"digital micro - mirror device",
"deficient mapping dissolution"
],
"EMA": [
"exponential moving average",
"ecological momentary assessment"
],
"MAPE": [
"mean absolute percentage error",
"mean average percent error"
],
"MAP": [
"maximum a posteriori",
"mean average precision"
],
"DN": [
"distinguished name",
"destination node"
],
"PCC": [
"pre - activation convolutional cell(the",
"pearson correlation coefficient"
],
"AL": [
"adversarial loss",
"active learning"
],
"US": [
"ultrasound",
"united states",
"uncertainty sampling"
],
"MR": [
"magnetic resonance",
"minimum read",
"majority rule",
"model risk",
"middle resolution",
"mean recall",
"machine reading",
"meaning representation",
"morphological richness",
"mixed reality"
],
"HR": [
"high - resolution",
"heart rate"
],
"IS": [
"inception score",
"importance sampling",
"information systems"
],
"LDP": [
"large deviation principle",
"low degeneracy partition",
"local differential privacy"
],
"ACE": [
"average causal effect",
"advanced combined encoder",
"average coverage error"
],
"OPS": [
"orthogonal pilot sequences",
"one posterior sample"
],
"MDS": [
"maximum distance separable",
"minimum dominating set",
"multi - dimensional scaling"
],
"IPS": [
"intrusion prevention system",
"inverse propensity scaling",
"interactive proof systems"
],
"BMS": [
"building management system",
"battery management system"
],
"PP": [
"prepositional phrase",
"point process",
"pairwise product",
"pairwise perturbation",
"privacy preferences",
"present and predominant"
],
"PF": [
"particle filter",
"pareto - fair",
"propagation fusion",
"power flow",
"poloidal field"
],
"NF": [
"naive fusion",
"noise figure",
"new foundations"
],
"TAM": [
"technology acceptance model",
"transparent attention model"
],
"DFT": [
"density functional theory",
"discrete fourier transformation",
"disk failure tolerant",
"design - for - test"
],
"CKD": [
"conditional kernel density",
"child key derivation",
"chronic kidney disease"
],
"AR": [
"auto - regression",
"average recall",
"anaphora resolution",
"augmented reality",
"accumulated reward"
],
"CSPs": [
"cloud service providers",
"constraint satisfaction problems"
],
"CAP": [
"consistency availability partition",
"cumulative accuracy profit",
"carrier - less amplitude and phase"
],
"DSM": [
"data store module",
"data stream manager",
"demand side management",
"distributional semantic model",
"digital surface model"
],
"CAS": [
"content addressed storage",
"computer algebra systems",
"consensus attention sum"
],
"PD": [
"progressive disease",
"prisoner 's dilemma",
"pu - primary destination",
"positive definite",
"parkinson 's disease",
"pixel discussion"
],
"PPMI": [
"parkinson 's progression markers initiative",
"positive pointwise mutual information"
],
"EHRs": [
"electronic health records",
"energy harvesting receivers"
],
"LCP": [
"linear complementarity problem",
"locally compact polish",
"longest common prefix",
"linearly compressed page"
],
"SD": [
"strong dominance",
"secure digital",
"standard deviation",
"strategic dependency",
"soft decision",
"symbolic differentiation",
"sphere decoding",
"selection diversity",
"stochastically dominate",
"structural diagram"
],
"GVF": [
"generalized value function",
"gradient vector flow"
],
"ASA": [
"adaptive segmentation algorithm",
"accessible surface area"
],
"GMM": [
"gaussian mixture model",
"group marching method"
],
"MD": [
"molecular dynamics",
"morphological disambiguation",
"mixed decoding",
"model distillation",
"memoryless deterministic",
"mean diffusivity",
"massa de dados",
"multiple description",
"missed detection"
],
"LP": [
"linear programming",
"label powerset",
"label propagation"
],
"CPM": [
"critical path method",
"competition performance metric",
"completely positive maps",
"clique percolation method",
"continuous profile model",
"cost per mille"
],
"HD": [
"hausdorff distance",
"high definition",
"hard decision",
"harmonic distortion",
"huntington 's disease"
],
"LD": [
"levenshtein distance",
"line difference",
"loads data",
"large deviation",
"link density"
],
"ST": [
"stomach",
"split - turnip",
"sleep telemetry",
"semantic tagging",
"single trails",
"smart thermostat",
"steiner tree"
],
"RK": [
"right kidney",
"root key"
],
"RDM": [
"russian dolls model",
"representational dissimilarity matrix"
],
"NEB": [
"nudged elastic band",
"next event backtracking"
],
"CF": [
"collaborative filtering",
"crest factor",
"code - mixed factor",
"complexity factor",
"correlation filter"
],
"CTR": [
"click through rates",
"collaborative topic regression",
"character transfer rate"
],
"MF": [
"matrix factorization",
"model fair",
"membership function",
"model - free"
],
"ET": [
"energy transmitters",
"evidence theory",
"enhancing tumor",
"elastic transformations",
"emission tomography"
],
"ANN": [
"approximate nearest neighbor",
"artificial neural network"
],
"AI": [
"artificial intelligence",
"article influence"
],
"DPI": [
"deep packet inspection",
"data processing inequality"
],
"LR": [
"logistic regression",
"learning rate",
"linear regression",
"low resolution",
"lp relaxation",
"low rank"
],
"TPR": [
"true positive rate",
"tensor product representation"
],
"RR": [
"round robin",
"recurrent refinement",
"relevance rate",
"relative ranking",
"reverse reachable"
],
"LM": [
"language model",
"logarithmically scaled magnitude",
"lagrange multiplier method",
"levenberg macquardt"
],
"OS": [
"overlap success",
"output stride",
"orientation score",
"operating system"
],
"SRC": [
"sdn ran controller",
"spearsman 's rank correlation",
"sparse representation classification"
],
"LTE": [
"long term evolution",
"language transmission engine"
],
"HN": [
"heterogeneous network",
"hierarchical network"
],
"PI": [
"prediction intervals",
"provider independent",
"power iteration",
"purchase intention"
],
"PNN": [
"probabilistic neural network",
"product - based neural network",
"progressive neural networks"
],
"RDF": [
"resource description framework",
"rate distortion function",
"random decision forests"
],
"GDP": [
"gross domestic product",
"generalized differential privacy",
"good distribution practice"
],
"SO": [
"smart object",
"stack overflow",
"surrogate outcomes"
],
"SMP": [
"security management provider",
"symmetric multi processor",
"stable marriage problem"
],
"DC": [
"distributed control",
"dublin core",
"direct current",
"dual connectivity",
"disorder constraints",
"disconnected components",
"direct click",
"descriptive complexity",
"data consistency",
"datacenter",
"dice coefficient",
"deep convolutional",
"deficit counter",
"dynamic cluster"
],
"ADP": [
"approximate dynamic programming",
"absolute derivative privacy"
],
"ES": [
"energy storage",
"end systolic",
"evolutionary strategies",
"encrypted sharing",
"event synchronization",
"enterprise storage",
"entropy search",
"elevation angle spread",
"exhaustive search",
"external search",
"embedding weight sharing"
],
"TR": [
"temporal resolution",
"tone reservation"
],
"AOD": [
"average outage duration",
"angle opening distance"
],
"AM": [
"arithmetic mean",
"activation maximization",
"alternating minimization"
],
"QP": [
"quadratic programming",
"quantum pareto",
"quantisation parameter"
],
"TCP": [
"test case prioritization",
"top concept 's popularity",
"transductive conformal prediction",
"transmission control protocol"
],
"SDD": [
"stanford drone dataset",
"standard desktop display"
],
"VAT": [
"virtual adversarial training",
"visceral adipose tissue"
],
"GP": [
"gaussian process",
"geometric programming"
],
"SAD": [
"spectral angle distance",
"speech activity detection"
],
"OI": [
"original images",
"operational intensity"
],
"SR": [
"stacked refinement",
"secrecy rate",
"segment representation",
"spatial resolution",
"success rate",
"super resolution",
"speech recognition",
"small resolution",
"strategic rationale",
"systematic review"
],
"SSA": [
"space situational awareness",
"static single assignment"
],
"SPL": [
"sound pressure level",
"shortest path length",
"standard plane location"
],
"TP": [
"true positives",
"temporal pooler"
],
"FN": [
"false negatives",
"focusing network"
],
"TN": [
"true negative",
"total noise"
],
"AP": [
"average precision",
"access point",
"asymptotic preserving",
"associated press",
"acute pancreatitis",
"access part",
"affinity propagation"
],
"DE": [
"dimension estimation",
"differential evolution",
"dataexplorer",
"deterministic equivalent",
"data efficiency"
],
"PAM": [
"partitioning around medoid",
"passive acoustic monitoring",
"pulse amplitude modulation"
],
"MGM": [
"markov geographic model",
"manifold geometry matching"
],
"ASR": [
"automatic speech recognition",
"average sum rate"
],
"DL": [
"description length",
"deep learning",
"dice loss",
"description logics",
"downlink",
"distributed ledger",
"depth loss",
"dogleg"
],
"CFG": [
"context free grammar",
"control flow graph"
],
"CP": [
"constraint programming",
"cyclic prefic",
"clustered placement",
"central processor",
"canonical polyadic",
"completely positive",
"constraint problem",
"control program",
"candecomp / parafac",
"conformal prediction",
"core periphery"
],
"LS": [
"local search",
"least squares",
"logarithmically spaced",
"linear systemswe",
"location service"
],
"DP": [
"dynamic programming",
"distance precision",
"declustered placement",
"dirichlet process",
"drift - plus penalty",
"dropped pronoun",
"direct proportion",
"differential privacy",
"disjunctive programming",
"dronemap planner"
],
"CLP": [
"convergence layer protocol",
"coin - or linear program solver"
],
"SAC": [
"special airworthiness certificate",
"soft actor critic"
],
"HAP": [
"high altitude platform",
"hybrid access point"
],
"MSC": [
"multi - layer same - resolution compressed",
"mobile switching center"
],
"CRM": [
"channel reliability measurement",
"counterfactual risk minimization"
],
"LDOF": [
"large displacement optical flow",
"local distance - based outlier factor"
],
"BA": [
"black and anandan",
"binary agreement",
"barabasi albert",
"bundle adjustment",
"balanced accuracy",
"bee algorithm"
],
"MS": [
"modelling simulation",
"multiple sclerosis",
"mean shift",
"missed speech",
"main - sequence",
"mid stance",
"mobile station",
"medical sentiment"
],
"SDP": [
"shortest dependency path",
"semi - definite programming",
"stable dependencies principle"
],
"LMF": [
"low - rank multimodal fusion",
"lower membership function"
],
"GAP": [
"global average pooling",
"generative adversarial perturbations",
"generalized assignment problem",
"global average precision"
],
"BPM": [
"beat per minute",
"business process modelling"
],
"BD": [
"bias disparities",
"bjontegaard delta",
"block diagonalization",
"benders decomposition"
],
"QA": [
"question answering",
"quantum annealing"
],
"CCC": [
"concordance correlation coefficient",
"congruence coefficient correlation"
],
"RC": [
"rich club",
"radon consistency",
"reading comprehension",
"relation classification",
"remote control",
"resource control",
"recurrent convolution",
"radio control",
"rate constrained",
"red clump",
"reservoir computing"
],
"CI": [
"current iteration",
"confidence intervals",
"constructive interference",
"class imbalance",
"conditional independence",
"current instruction",
"cochlear implant",
"continuous integration",
"computational intelligence"
],
"SOA": [
"stimulus onset asynchrony",
"service oriented architecture"
],
"MAT": [
"medication assisted treatment",
"motionless analysis of traffic",
"multi - fingered adaptive tactile grasping"
],
"MSD": [
"million song dataset",
"modified list sphere decoding",
"most significant digit"
],
"GBM": [
"geometric brownian motion",
"gradient boosting machine"
],
"AS": [
"autonomous system",
"angular spread",
"adaptive softmax",
"ancillary service",
"azimuth angle spread",
"attention sum",
"antenna spacing"
],
"TD": [
"total difficulty",
"time - discrete",
"technical debt",
"temporal difference",
"temporal dimension",
"training data",
"target dependent",
"top - down",
"time - domain"
],
"CPI": [
"consumer price index",
"conditional predictive impact"
],
"RN": [
"relational neighbors",
"radical nephrectomy",
"relay nodes",
"random noise",
"radial normalization"
],
"SN": [
"secondary node",
"source node",
"spectral normalization"
],
"RV": [
"random vaccination",
"right ventricle",
"random voting",
"random variable",
"resilience vector",
"range view"
],
"AV": [
"acquaintance vaccination",
"antivirus",
"autonomous vehicle"
],
"ACR": [
"air change rates",
"absolute category rating"
],
"CN": [
"common neighbours",
"clustered networks",
"core network",
"cognitively normal",
"common noun"
],
"CFA": [
"color filter arrays",
"constriction factor approach",
"counterfactual future advantage"
],
"DAS": [
"data availability statement",
"disclosure avoidance system"
],
"HF": [
"hybrid fusion",
"high frequency"
],
"MC": [
"mean - centering",
"myocardium",
"monte carlo",
"multi connectivity",
"marginal contribution",
"markov chain",
"mutual cover",
"matrix converter"
],
"ATE": [
"absolute trajectory error",
"average translation error"
],
"RPE": [
"relative pose error",
"retinal pigment epithelium"
],
"CMS": [
"codeword mixture sampling",
"counting monadic second"
],
"DVS": [
"dynamic vision sensor",
"dynamic voltage scaling"
],
"ED": [
"economic dispatch",
"emergency department",
"embedded deformation",
"euclidean distance",
"energy detection"
],
"APP": [
"australian privacy principles",
"a posteriori probability"
],
"CM": [
"canalizing map",
"centroid methods",
"confusion matrix",
"continental margin",
"corporate messaging",
"choir mix",
"coded modulation"
],
"SC": [
"sleep cassette",
"sum capacity",
"steering control",
"smallest class",
"successive cancellation",
"score contextualisation",
"self cover",
"subset compared",
"spectral clustering",
"smart contract",
"self consistency",
"selection combining",
"sum capacities",
"symmetry condition",
"single connectivity",
"special case",
"spatial crowdsourcing",
"strongly connected"
],
"SW": [
"similarity weight",
"sliding window",
"small - world"
],
"RCNN": [
"recurrent convolutional neural network",
"region based convolutional neural network"
],
"ESE": [
"entity set expansion",
"extract similar entities"
],
"GEM": [
"gradient episodic memory",
"grid entropy measurement"
],
"OLS": [
"orthogonal least square",
"ordinary least square"
],
"OSA": [
"opportunistic spectrum access",
"obstructive sleep apnoea"
],
"SF": [
"satisfaction function",
"sequential fixing",
"scale free",
"structure fusion",
"small faces",
"separable footprints",
"state - feedback"
],
"CH": [
"cluster head",
"constraint handling"
],
"BP": [
"belief propagation",
"bin packing",
"basis pursuit",
"backprop",
"back propagation",
"backdoor poisoning",
"bundle protocol",
"best performing"
],
"LC": [
"latent class",
"local conditioning",
"line card",
"least confidence",
"largest class",
"land cover",
"latent clustering",
"lyrics comprehension"
],
"FTE": [
"foveal tilt effects",
"full time employment"
],
"HT": [
"hough transform",
"hoeffding tree"
],
"SER": [
"symbol error rate",
"speaker error rate",
"speech emotion recognition"
],
"BS": [
"base station",
"beam search",
"brier score",
"batch size",
"standard beam search",
"bayesian sets",
"bidirectional similarity"
],
"BT": [
"best target",
"back translation",
"bernoulli trial"
],
"RB": [
"random beamforming",
"resource blocks",
"rank - based",
"reduced basis",
"rosi braidotti"
],
"UD": [
"universal dependencies",
"unified distillation"
],
"GN": [
"gaussian noise",
"grid name",
"gauss - newton"
],
"GCNN": [
"graph convolutional neural network",
"geodesic convolution neural network"
],
"GCN": [
"generalised convolutional neural network",
"graph convolution networks",
"global convolution networks"
],
"HAN": [
"hierarchical attention network",
"heterogeneous attributed network"
],
"HMP": [
"hierarchical matching pursuit",
"hypermutations with mutation potential"
],
"BPE": [
"byte pair encoding",
"backward partial execution"
],
"ASD": [
"autism spectrum disorders",
"average surface distance"
],
"SWD": [
"sliced wasserstein distance",
"semantic web deployment"
],
"BAM": [
"behance artistic media",
"best alignment metric",
"bandwidth allocation model"
],
"SSR": [
"spatial skeleton realignment",
"sparse signal recovery",
"spectral super - resolution"
],
"EB": [
"energy buffer",
"energy beam"
],
"SI": [
"satellite imagery",
"semantic inpainting"
],
"AN": [
"artificial noise",
"attention network"
],
"ESC": [
"environment sound classification",
"ergodic sum capacity"
],
"TSP": [
"traveling salesman problem",
"triad significance profile"
],
"LPP": [
"locality preserving projections",
"load planning problem"
],
"ITS": [
"intelligent transportation system",
"interrupted time series",
"intelligent tutoring systems"
],
"CST": [
"corticospinal tract",
"china standard time"
],
"CMI": [
"conditional mutual information",
"code - mixed index"
],
"SCA": [
"successive convex approximation",
"scatter component analysis",
"smart cut algorithm"
],
"ISP": [
"internet service providers",
"image signal processor"
],
"BNC": [
"british national corpus",
"brown news corpus"
],
"MACS": [
"mean average conceptual similarity",
"minimum average conceptual similarity"
],
"ADA": [
"american diabetes association 's",
"adaptive data augmentation"
],
"DS": [
"delay spread",
"direct sharing",
"data structure",
"data sharing",
"differentiated softmax",
"dempster - shafer",
"detection scores"
],
"MSA": [
"modern standard arabic",
"multilevel splitting algorithm",
"multiple sequence alignment"
],
"DES": [
"dual energy subtraction",
"defence equipment support"
],
"SFC": [
"superposition of functional contours",
"service function chaining"
],
"PLP": [
"perceptual linear prediction",
"poisson line process"
],
"FPR": [
"false positive rate",
"fuzzy preference relation"
],
"BDT": [
"boosted decision trees",
"bi - directional domain translation"
],
"PAP": [
"process arrival pattern",
"policy administration point"
],
"RM": [
"roofline model",
"robot middleware",
"representation mixing",
"resource management"
],
"EAD": [
"encoded archival description",
"exponential absolute distance"
],
"DCP": [
"deep context prediction",
"darwin correspondence project"
],
"VO": [
"velocity obstacle",
"visual odometry"
],
"ECC": [
"error correcting code",
"elliptic curve cryptography"
],
"ASN": [
"autonomous system number",
"average sample number"
],
"LSA": [
"latent semantic analysis",
"licensed shared access"
],
"SMC": [
"sequential monte carlo",
"sliding mode control",
"statistical model checking",
"secure multiparty computation"
],
"EO": [
"eyes open",
"earth observation"
],
"EDA": [
"evolutionary distribution algorithm",
"exploratory data analysis"
],
"DRL": [
"deep reinforcement learning",
"distributional reinforcement learning"
],
"PG": [
"policy gradient",
"policy generator",
"property graph"
],
"ROM": [
"range of motion",
"reduced - order models"
],
"ICC": [
"intraclass correlation coefficient",
"implicit computational complexity"
],
"MBR": [
"minimum bandwidth regenerating",
"minimum bounding rectangle"
],
"DT": [
"decision tree",
"delivery teams"
],
"RLS": [
"recursive least squares",
"regularized least squares",
"random local search"
],
"SP": [
"strictly piecewise",
"streaming processors",
"set partitioning",
"subspace pursuit",
"stream processor",
"shilling profiles",
"semantic parsing",
"shortest path",
"spatial pooler",
"standards poors",
"sao paulo",
"set point",
"splitting problem"
],
"SL": [
"strictly local",
"separation logic",
"supervised learning"
],
"CLS": [
"constrained least squares",
"complementary learning systems"
],
"ARA": [
"adversarial risk analysis",
"accumulate repeat accumulate"
],
"POI": [
"points of interest",
"projection of interest"
],
"RSS": [
"received signal strength",
"radio signal strength",
"random subcarrier selection"
],
"CSD": [
"constrained spherical deconvolution",
"critical sensor density",
"contextual sentence decomposition"
],
"PN": [
"pixel - wise normalization",
"partial nephrectomy"
],
"PA": [
"provider aggregatable",
"philadelphia",
"physical access",
"peano 's arithmetics",
"parallel attention",
"preferential attachment",
"power allocation",
"presburger arithmetic"
],
"FD": [
"fast dormancy",
"finite differences",
"fractal dimension",
"fully - digital"
],
"IC": [
"initial contact",
"integrated circuit",
"independent cascading"
],
"SPM": [
"statistical parameter mapping",
"saliency prediction model",
"spatial pyramid matching"
],
"EMD": [
"earth mover 's distance",
"excessive mapping dissolution"
],
"CRC": [
"cyclic redundancy check",
"collaborative representation classification"
],
"ADN": [
"artifact disentanglement network",
"activity driven networks"
],
"TU": [
"threshold updation",
"translation unit"
],
"OEC": [
"oxford english corpus",
"online elliptical clustering"
],
"BSM": [
"basic skill module",
"basic safety messages"
],
"BNN": [
"bayesian neural networks",
"binary neural networks"
],
"GVR": [
"gradient variance regularizer",
"global visual representations"
],
"SCCs": [
"strongly connected components",
"static camera clusters"
],
"RT": [
"radiation therapy",
"retweets",
"reparameterization trick",
"response time",
"ruthes",
"random target",
"region template"
],
"RW": [
"reaction wheels",
"random walk",
"rolling window"
],
"LV": [
"left ventricle",
"las vegas",
"large volumetric"
],
"RG": [
"renormalization group",
"riemmanian geometry",
"real graphs",
"reber grammar"
],
"AT": [
"asteroidal triple",
"adversarial training",
"adaptive threshold"
],
"CCR": [
"correct classification ratio",
"cross - document coreference resolution",
"correct correction rate"
],
"GMP": [
"gain minus pain",
"global max pooling"
],
"CBT": [
"children 's book test",
"consensus - before - talk"
],
"DAR": [
"dynamic assignment ratio",
"defence application register"
],
"TSA": [
"temporary scope association",
"taobao search advertising",
"temporal semantic analysis"
],
"MI": [
"myocardial infarction",
"mutual information",
"motor imagery",
"mathematical induction"
],
"PVC": [
"premature ventricular contraction",
"passive voltage contrast"
],
"WT": [
"wavelet transform",
"wild type",
"whole tumor",
"william thackeray"
],
"AAL": [
"automated anatomical labeling",
"ambient assisted living"
],
"DA": [
"denoised auto - encoder",
"data assimilation",
"deterministic annealing",
"domain adaptation",
"data augmentation",
"direct assessment",
"dialogue acts",
"distribution alignment"
],
"MIR": [
"music information retrieval",
"music instrument recognition",
"music information research"
],
"DCT": [
"document creation time",
"download completion time",
"discrete cosine transformation"
],
"PLS": [
"partial least square",
"physical layer security",
"progressive lesion segmentation"
],
"PC": [
"program counter",
"point cloud",
"program committee",
"principal component"
],
"CNS": [
"central nervous system",
"copenhagen networks study"
],
"AD": [
"alzheimer 's disease",
"automatic differentiation",
"audit department",
"anomaly detection",
"auction distribution",
"artificially - degraded",
"axial diffusivity"
],
"PL": [
"path loss",
"polarity loss",
"programming language",
"parallel lexicon",
"photoluminescence"
],
"CMC": [
"cumulative matching characteristic",
"crude monte carlo"
],
"CER": [
"character error rate",
"classification error rate",
"clustering error rate"
],
"FE": [
"fire emblem",
"finite element",
"feature extraction"
],
"NC": [
"network coding",
"normalized correlation",
"north carolina",
"new classes",
"noise clinic",
"network centre",
"next corollary",
"node classification",
"news commentary"
],
"CTC": [
"connectionist temporal classification",
"common test conditions"
],
"ZF": [
"zero forcing",
"zero - filled"
],
"SE": [
"spectral efficiency",
"situation entity",
"smarteda",
"sequential exploring",
"software engineering",
"strong elimination",
"signed error",
"speech enhancement",
"signal enhancement",
"squared exponential",
"selective eraser",
"small enough",
"systems engineering"
],
"DAC": [
"disk array controller",
"distributed admission control"
],
"GRD": [
"group rotate declustering",
"ground range detected"
],
"ALS": [
"aerial laser scanner",
"alternating least squares"
],
"CE": [
"cross entropy",
"contrastive estimation",
"context entities",
"category embeddings",
"context encoder",
"crossing event"
],
"ICA": [
"imperialist competitive algorithm",
"independent component analysis"
],
"WS": [
"weight superiority",
"word shape",
"word sequence",
"write skew"
],
"SCM": [
"semantic correlation maximization",
"spatial compositional model",
"scanning capacitance microscopy"
],
"BF": [
"blind forwarding",
"basic feature",
"bayes factor",
"bilateral filtering",
"black females",
"binary function",
"brute force search",
"bayesian filtering"
],
"PAF": [
"provider - aware forwarding",
"plenacoustic function"
],
"GC": [
"garbage collector",
"graph cuts",
"graph convolution"
],
"SIS": [
"sequential importance sampling",
"social identification system"
],
"VC": [
"voice conversion",
"virtual classifier"
],
"PS": [
"prediction shift",
"parameter server",
"personal storage",
"probabilistic serial",
"power splitting",
"projective simulation",
"processor sharing"
],
"UAS": [
"unlabeled attachment score",
"unmanned aircraft systems"
],
"BI": [
"business intelligence",
"bayesian inference",
"bilinear interpolation"
],
"NE": [
"nash equilibrium",
"named entity",
"nested experiments"
],
"FM": [
"factorization machines",
"formal methods",
"feature matching",
"flash memory",
"forward models",
"fowlkes mallows index",
"feature map",
"f1-measure",
"frequency modulation",
"finite mixture",
"fuzzy measure"
],
"MRE": [
"mean relative error",
"median recovery error"
],
"BDI": [
"belief , desire , intention",
"beck 's depression inventory"
],
"TE": [
"transformation encoder",
"taylor expansion",
"transformation error",
"temporal expressions"
],
"APT": [
"anytime parameter - free thresholding",
"advanced persistent threat"
],
"NR": [
"new radio",
"nuclear receptor"
],
"ART": [
"adaptive radix tree",
"adaptive resonance theory"
],
"GM": [
"genetically modified",
"gradient magnitude",
"graph matching",
"generator matrix"
],
"LB": [
"lower bound",
"lovasz bregman"
],
"IPC": [
"instructions per cycle",
"individual pitch control",
"international patent classification"
],
"LT": [
"lomonosov 's turnip",
"likelihood test",
"linear threshold",
"luby transform",
"label transfer"
],
"DOM": [
"document object model",
"degrees of measurement"
],
"ESR": [
"equivalent series resistances",
"extended support release"
],
"PCM": [
"peak current mode",
"phase change memory",
"permanent customer model"
],
"IB": [
"imaginary batches",
"information bottleneck",
"immersed boundary"
],
"FL": [
"flatten layer",
"federated learning",
"fixated locations"
],
"GD": [
"group delay",
"gradient descent"
],
"BPD": [
"baseband phase difference",
"basis pursuit denoising"
],
"SCP": [
"squared cosine proximity",
"simultaneous closeness - performance"
],
"ECN": [
"explicit congestion notification",
"edge computing node"
],
"GRL": [
"gradient reversal layer",
"goal - oriented requirement language"
],
"GS": [
"gold standard",
"group sweep",
"gauss seidel",
"geometric sequence",
"genetic search",
"google scholar 's"
],
"IM": [
"instant messaging",
"identity mapping",
"intensity modulation",
"influence maps",
"interference margin",
"index modulation"
],
"UI": [
"user interface",
"uniform indicator"
],
"PRR": [
"packet reception rate",
"pre - reduced ring"
],
"DPs": [
"dropped pronouns",
"dependency pairs"
],
"NLM": [
"neural logic machines",
"neural language modelling"
],
"ACC": [
"anomaly correlation coefficient",
"accuracy",
"adaptive cruise control"
],
"CG": [
"conjugate gradient",
"correspondence grouping",
"context - guided attention",
"contour generator",
"context gating",
"chemical graph",
"candidate generation"
],
"DG": [
"distributed generation",
"dynamic graph",
"discontinuous galerkin",
"domain generalization"
],
"SNP": [
"single nucleotide polymorphisms",
"state neighborhood probability"
],
"MDR": [
"multifactor dimensionality reduction",
"message dropping rate"
],
"CL": [
"cumulative link",
"coupling layers",
"curriculum learning",
"continual learning",
"classical logic"
],
"DIC": [
"directed interval class",
"dynamic induction control",
"deviance information criterion"
],
"AEC": [
"accepting end component",
"automatic exposure control"
],
"SGNS": [
"syntactic symmetric pattern",
"skip - gram with negative sampling"
],
"OCC": [
"one class classifier",
"output constrained covariance",
"open circuit condition"
],
"AOT": [
"adaptive on time",
"adaptively optimised threshold"
],
"RA": [
"random access",
"ring allreduce",
"resource allocation",
"random attack",
"remote attestation",
"right atrium"
],
"PMF": [
"probabilistic matrix factorization",
"probability mass function"
],
"DOE": [
"department of energy",
"design of experiment",
"diffractive optical element"
],
"RP": [
"replies",
"reciprocal pagerank",
"reference point",
"random priority",
"replacement paths"
],
"CSP": [
"constraint satisfaction problem",
"content security policy",
"cloud service providers",
"coverage sampling problem",
"common spatial patterns"
],
"PDR": [
"pedestrian dead reckoning",
"packet delivery ratio"
],
"TTI": [
"transmission time interval",
"time transmit interval"
],
"MM": [
"mathematical model",
"maximum mark"
],
"PE": [
"processing element",
"portable executable"
],
"FFT": [
"fast fourier transformation",
"feature finding team"
],
"TDS": [
"taint dependency sequences",
"training data set"
],
"GT": [
"group testing",
"generic tool",
"ground truth",
"graph traversal",
"google translate"
],
"CSS": [
"compressive spectrum sensing",
"chirp spread spectrum",
"cooperative spectrum sensing",
"cascade style sheet"
],
"IV": [
"initialization vector",
"intersection viewer"
],
"OF": [
"optical flow",
"objective function"
],
"VFC": [
"vehicular fog computing",
"vector filed consensus"
],
"TBS": [
"transport block sizes",
"terrestrial base station"
],
"SEP": [
"separator",
"symbol error probability"
],
"BR": [
"boundary refinement",
"binary relevance",
"bug reports",
"belief revision",
"best response",
"bone region"
],
"RWA": [
"random walker algorithm",
"right wing authoritarianism",
"recurrent weighted average"
],
"DCI": [
"downlink control information",
"downlink control indicator"
],
"RE": [
"resource elements",
"relation extraction",
"renewable energy",
"requirements elicitation",
"referring expression"
],
"PDF": [
"probability density function",
"portable document format",
"primary distribution format"
],
"PAT": [
"perform adversarial training",
"process arrival time"
],
"SIC": [
"successive interference cancellation",
"static induction control",
"self interference cancellation"
],
"DFA": [
"direct feedback alignment",
"deterministic finite automaton"
],
"IEC": [
"information embedding cost",
"international electrotechnical commission"
],
"IAN": [
"introspective adversarial network",
"interference as noise"
],
"WN": [
"weak normalization",
"weight normalization"
],
"TTP": [
"trusted third party",
"total transmit power"
],
"SSM": [
"state space model",
"statistical shape modeling"
],
"WSI": [
"whole slide image",
"word sense induction"
],
"CDA": [
"concurrent dialogue acts",
"christen democratisch appel",
"canonical discriminant analysis",
"continuous decomposition analysis"
],
"BL": [
"black level subtraction",
"bayesian learning"
],
"NSS": [
"normalized scan - path saliency",
"non - local self similar"
],
"VSI": [
"virtual switch instances",
"variational system identification",
"voltage source inverter"
],
"RRC": [
"rank residual constraint",
"radio resource control"
],
"ASF": [
"apache software foundation",
"african swine fever"
],
"AKS": [
"almost known sets",
"asimmetric kernel scaling"
],
"ICE": [
"intrinsic control error",
"interactive connectivity establishment"
],
"PDP": [
"partial dependence plots",
"product display page",
"policy decision point"
],
"RD": [
"real data",
"residual denoiser",
"research and development",
"relative difference",
"reciprocal degree"
],
"IT": [
"iris thickness",
"immediate threshold",
"inferior temporal",
"image translation"
],
"CBP": [
"coprime blur pairs",
"compact bilinear pooling"
],
"RFS": [
"random finite set",
"rain fog snow"
],
"IFD": [
"indian face database",
"icelandic frequency dictionary"
],
"CDR": [
"call detail records",
"critical design review",
"clock difference relations"
],
"DBP": [
"discrete base problem",
"determinisable by pruning",
"digital back propagation"
],
"BLE": [
"bluetooth low energy",
"bilingual lexicon extraction"
],
"RTF": [
"region templates framework",
"real time factor"
],
"BSP": [
"binary space partitioning",
"bulk synchronous parallel"
],
"RCA": [
"root certificate authority",
"ripple carry adder",
"root cause analysis",
"reverse classification accuracy"
],
"LBP": [
"local binary pattern",
"loopy belief propagation"
],
"LML": [
"lifelong metric learning",
"log marginal likelihood",
"lifelong machine learning"
],
"ADF": [
"anisotropic diffusion filter",
"automatically defined function"
],
"DML": [
"data modification layer",
"declarative ml language"
],
"BQ": [
"basic question",
"bayesian quadrature"
],
"LA": [
"logical access",
"layout analysis",
"left atrium",
"location area"
],
"NPR": [
"near perfect reconstruction",
"normalized probabilistic rand"
],
"PEP": [
"permission enforcement point",
"policy enforcement point"
],
"PPT": [
"pignistic probability transformation",
"privacy preserving techniques"
],
"DMA": [
"direct memory access",
"dynamic mechanical analysis",
"data market austria"
],
"SDF": [
"side - stream dark field",
"signed distance function",
"signed distance field"
],
"SU": [
"symmetric uncertainty",
"secondary user"
],
"RPG": [
"relevance proximity graph",
"robust principal graph"
],
"PIT": [
"permutation invariant training",
"pending interest table"
],
"CB": [
"code block",
"content - based",
"circular buffered",
"compression benchmark",
"causal box"
],
"DMF": [
"dynamic mode factorization",
"drone - cell management frame"
],
"DBA": [
"dtw barycenter averaging",
"deterministic buchi automaton"
],
"SRL": [
"semantic role labeling",
"state representation learning",
"statistical relational learning"
],
"RQ": [
"research question",
"reformulated queries"
],
"SBM": [
"stochastic block model",
"sequential monte carlo",
"standard bit mutations",
"shape boltzmann machine"
],
"FJ": [
"friendly jamming",
"featherweight java"
],
"SPF": [
"structure propagation fusion",
"shortest path forest"
],
"HM": [
"harmonic mean",
"hybrid model"
],
"LOD": [
"linked open data",
"level of detail"
],
"GTD": [
"grasp type detection",
"grasp type dataset"
],
"TCR": [
"trap control register",
"transductive cascaded regression"
],
"LE": [
"low energy",
"label equivalence"
],
"LCS": [
"longest common subsequence",
"local causal states"
],
"FAST": [
"features from accelerated segment test",
"file and storage technologies"
],
"SSE": [
"streaming simd extensions",
"spherical semantic embedding"
],
"DSR": [
"dynamic sparse reparameterization",
"dynamic source routing"
],
"GPM": [
"graph pattern matching",
"matchinggraph pattern matching"
],
"VR": [
"virtual reality",
"visibility region",
"vigilance reward"
],
"MPA": [
"music performance analysis",
"message passing algorithm"
],
"SAN": [
"semantic alignment network",
"saturation analysis",
"subject alternate name",
"stacked attention network",
"self attention network"
],
"SSI": [
"subspace system identification",
"social system identification",
"software sustainability institute"
],
"TDM": [
"technical debt management",
"temporal difference model",
"time division multiplexing"
],
"NS": [
"network science",
"negative sampling",
"neutron star"
],
"SUs": [
"secondary users",
"spectrum usage"
],
"PBS": [
"primary base station",
"public broadcasting service"
],
"PCL": [
"positive coalgebraic logics",
"point cloud library",
"path consistency learning"
],
"DMN": [
"dynamic memory network",
"default mode network"
],
"SFM": [
"social force model",
"structural factorization machine",
"structure from motion"
],
"GF": [
"guided filtering",
"gabor filter"
],
"CDP": [
"centralized differential privacy",
"classical dynamic programming"
],
"SAM": [
"semi - autonomous machine",
"speaker - addressee model",
"search of associative memory",
"self - assessment manikin"
],
"TM": [
"tone mapping",
"teacher mark",
"turing machine"
],
"DADA": [
"distributed affinity dual approximation",
"dual adversarial domain adaptation"
],
"DEC": [
"deep embedded clustering",
"dense - captioning event"
],
"CNL": [
"controlled natural language",
"certain natural language"
],
"PIN": [
"proposal indexing network",
"phrase indexing network"
],
"USD": [
"unmet system demand",
"unambiguous state discrimination"
],
"HC": [
"healthy control",
"hill - climbing",
"hierarchical classification"
],
"GSP": [
"generalized second price",
"global statistics pooling"
],
"ESS": [
"effective sample size",
"evolutionary stable strategies"
],
"LDS": [
"low density spreading",
"linear dynamical system"
],
"ARD": [
"adversarially robust distillation",
"automatic relevance determination",
"accelerated robust distillation"
],
"NL": [
"network lifetime",
"natural language"
],
"ILS": [
"incomplete lineage sorting",
"iterated local search"
],
"AML": [
"adversarial machine learning",
"actor modeling language"
],
"MN": [
"mobile network",
"master node",
"memory networks",
"mobile node"
],
"SED": [
"soft edit distance",
"sound event detection",
"standard edit distance"
],
"UDP": [
"user datagram protocol",
"universal dependency parse"
],
"SSL": [
"structural sparsity learning",
"scleral spur location",
"semi supervised learning"
],
"SCR": [
"scratch",
"sparse compositional regression",
"skin conductance response"
],
"CKA": [
"concurrent kleene algebra",
"centered kernel alignment"
],
"RDS": [
"relational database service",
"running digital sum"
],
"WF": [
"white females",
"weighted fusion"
],
"TBB": [
"tor browser bundle",
"threading building blocks"
],
"DI": [
"document index",
"dyadic indicator",
"direct inspection",
"dependency injection"
],
"TPD": [
"turbo product decoder",
"total project delay"
],
"NIC": [
"neural image caption",
"network interface card"
],
"DSA": [
"data science and analytics",
"digital signature algorithm"
],
"MRS": [
"magnetic resonance spectroscopy",
"multiset rewriting systems"
],
"CO": [
"context - only attention",
"carbon - oxygen"
],
"NSP": [
"neural sequence prediction",
"next sentence prediction"
],
"FG": [
"favoured granted",
"filter gate"
],
"BSC": [
"binary symmetric channel",
"base station controller"
],
"BSD": [
"blind spot detection",
"berkeley segmentation dataset"
],
"FPS": [
"frame per second",
"false projection selection"
],
"SPS": [
"signal processing systems",
"surcharge pricing scheme",
"signal probability skey"
],
"PPE": [
"per - pixel - error",
"predictive performance equation"
],
"EMS": [
"elevated mean scan statistic",
"event management system",
"elevated mean scan"
],
"FAR": [
"false acceptance rate",
"flow annotation replanning"
],
"CFD": [
"computational fluid dynamics",
"carrier frequency difference"
],
"DSO": [
"direct sparse odometry",
"distribution system operator"
],
"DTP": [
"difference target propagation",
"dynamic trajectory predictor"
],
"GI": [
"gradient initialization",
"graph isomorphism"
],
"SSS": [
"staggered sample selection",
"stochastically stable states"
],
"DST": [
"dialogue state tracker",
"discrete sine transform"
],
"ID": [
"item description",
"information decoding",
"input data",
"interleaved declustering"
],
"FEA": [
"factored evolutionary algorithms",
"finite element analysis"
],
"SB": [
"systems biology",
"symmetry breaking"
],
"SG": [
"skip gram",
"stochastic gradient"
],
"CLT": [
"central limit theorem",
"cognitive load theory"
],
"MET": [
"michigan english test",
"multi - edge type"
],
"GSR": [
"geographic source routing",
"group sparsity residual",
"group sparse representation"
],
"GPR": [
"gaussian process regression",
"gamma passing rate"
],
"STA": [
"static timing analysis",
"super - twisting algorithms"
],
"HMC": [
"hybrid monte carlo",
"hamiltonian monte carlo"
],
"LSM": [
"laplacian - based shape matching",
"lock sweeping method"
],
"IO": [
"inverse optimization",
"iterative optimization",
"interacting object"
],
"LAP": [
"low altitude platform",
"linear assignment problem"
],
"LTP": [
"licklider transmission protocol",
"long term potentiation"
],
"GMS": [
"grid - based motion statistics",
"gaussian material synthesis"
],
"DCM": [
"dynamics canalization map",
"discontinuous conduction mode",
"deep choice model",
"discrete choice models",
"device configuration manager"
],
"MGE": [
"minimum generation error",
"multi - granularity embedding"
],
"MCS": [
"maximal consistent set",
"modulation and coding scheme",
"maximum cardinality search"
],
"OP": [
"orthogonal procrustes",
"old persian",
"outage probability",
"original precision",
"orienteering problem"
],
"CWE": [
"common weakness enumeration",
"character - enhanced word embedding",
"chinese word embeddings"
],
"MSR": [
"minimum storage regenerating",
"mining software repositories"
],
"PT": [
"piecewise -testable",
"physical therapy",
"productive time",
"proof time"
],
"PBRT": [
"physically based renderer",
"physically based ray tracing"
],
"NHS": [
"national health service",
"nurses ' health study"
],
"LSC": [
"leicester scientific corpus",
"long skip connections"
],
"STL": [
"single task learning",
"signal temporal logic",
"standard template library"
],
"SBS": [
"swedish blog sentences",
"small - cell base stations"
],
"PAA": [
"piecewise aggregation approximation",
"principal axis analysis"
],
"CPS": [
"common phone set",
"current population survey"
],
"MVP": [
"mitral valve prolapse",
"million veterans program"
],
"MPB": [
"matrix pair beamformer",
"modified poisson blending"
],
"MIS": [
"multiple importance sampling",
"maximal independent set"
],
"LF": [
"large faces",
"late fusion",
"line feeds"
],
"SOC": [
"security operations center",
"standard occupation classification",
"state of charge"
],
"IVR": [
"interactive voice response",
"immersive virtual reality"
],
"IA": [
"intent analyst",
"interval analysis",
"incremental approximation",
"interference alignment"
],
"IFT": [
"information foraging theory",
"information flow tracking"
],
"ARS": [
"augmented random search",
"addressee and response selection"
],
"SCS": [
"statistical compressed sensing",
"shortest common superstring",
"spoken conversational search",
"sub - carrier spacing"
],
"SQA": [
"semantic question answering",
"spoken question answering"
],
"AWE": [
"averaged word embeddings",
"address windowing extensions"
],
"TAS": [
"transverse abdominal section",
"transmit antenna selection"
],
"IE": [
"information extraction",
"intelligent element",
"integral equation"
],
"CEM": [
"causal effect map",
"circled entropy measurement",
"cross entropy methods"
],
"UM": [
"user model",
"upsampling module"
],
"ILM": [
"internal limiting membrane",
"information lifecycle management"
],
"RGB": [
"red , green , blue",
"red giant branch"
],
"CSG": [
"cumulative spectral gradient",
"cost sharing game"
],
"PPC": [
"peak power contract",
"pay per click"
],
"EMG": [
"eight medical grade",
"electromyograph"
],
"DSP": [
"digital signal processing",
"discrete sequence production"
],
"MVF": [
"maximum voice frequency",
"matching vector families"
],
"FDA": [
"fisher 's discriminant analysis",
"functional data analysis"
],
"TDA": [
"topological data analysis",
"targeted degree - based attack"
],
"ERB": [
"equivalent rectangular bandwidth",
"enhanced residual block"
],
"EHS": [
"enhanced hybrid simultaneous",
"enhanced hybrid swipt protocol"
],
"SIR": [
"sequential importance resampling",
"source to interferences ratio"
],
"EMF": [
"explicit matrix factorization",
"eclipse modeling framework",
"electromagnetic fields"
],
"DLS": [
"derandomized local search",
"depth - limited search"
],
"AIDA": [
"analytic imaging diagnostics arena",
"atomic , independent , declarative , and absolute"
],
"NTM": [
"neural turing machine",
"neural topic model"
],
"DNS": [
"domain name system",
"domain name service"
],
"EF": [
"expedited forwarding",
"ejection fraction",
"error feedback"
],
"MTC": [
"movie triplets corpus",
"machine type communications"
],
"ISM": [
"interactive skill modules",
"industrial , scientific and medical"
],
"PTS": [
"partial transmit sequences",
"public transportation system"
],
"PDT": [
"pulse discrete time",
"poisson delaunay tessellations"
],
"PWM": [
"pulse width modulation",
"partial weighted matching"
],
"GCD": [
"graphlet correlation distance",
"greatest common divisor"
],
"CCG": [
"calling contexts graphs",
"combinatory categorial grammar",
"chromatic correction gratings"
],
"MCP": [
"mean closest points",
"matern cluster process"
],
"OR": [
"optic radiation",
"operations research",
"opportunistic relaying"
],
"DPN": [
"dual path network",
"deep pyramid network"
],
"LTT": [
"lunar transfer trajectory",
"locally threshold testable"
],
"MED": [
"minimal edit distance",
"multimedia event detection"
],
"FER": [
"frame error rate",
"facial expression recognition"
],
"AE": [
"autoencoder",
"associative experiment",
"absolute error",
"answer extraction"
],
"BPP": [
"bits per pixel",
"binomial point process"
],
"APD": [
"average perpendicular distance",
"artifact pyramid decoding"
],
"SEM": [
"scanning electron microscopy",
"squared entropy measurement",
"simple event model"
],
"PTM": [
"point - to - multipoint",
"persistent turing machine"
],
"CWT": [
"continuous wavelet transform",
"complex wavelet transform"
],
"TA": [
"transmission antennas",
"threshold algorithm"
],
"HOG": [
"histogram of gradients",
"histogram of oriented gradient"
],
"NCE": [
"normalized cumulative entropy",
"noise contrastive estimation"
],
"EP": [
"entrance pupil",
"exponent parikh",
"efficient path",
"evolutionary programming",
"europarl"
],
"COP": [
"correlated orienteering problem",
"centralized optimization problem"
],
"QMA": [
"quantitative myotonia assessment",
"quantum merlin arthur"
],
"MRT": [
"minimum risk training",
"maximum ratio transmission"
],
"VCC": [
"vibrational coupled cluster",
"vehicular cloud computing"
],
"RIC": [
"restricted isometry constant",
"risk inflation criterion"
],
"MV": [
"mitral valve",
"memory vector"
],
"OCT": [
"optical coherence tomography",
"odd cycle transversal"
],
"OA": [
"open access",
"ocular artifacts",
"orthogonal array"
],
"TBA": [
"targeted betweenness - based attack",
"tailor based allocation"
],
"IDE": [
"integrated development environment",
"interprocedural distributive environment"
],
"DCH": [
"dynamic competition hypothesis",
"discriminant cross - modal hashing"
],
"GAM": [
"generalized additive models",
"generative adversarial metric"
],
"TVD": [
"total variation diminishing",
"threshold voltage defined"
],
"RUM": [
"random utility modelwe",
"random utility maximization"
],
"TRI": [
"temporal random indexing",
"toyota research institute"
],
"QR": [
"quantile regression",
"quadruple range"
],
"MB": [
"motion blurring",
"model - based",
"maximal biclique"
],
"AFC": [
"atomic function computation",
"automated fare collection(afc",
"automatic fact checking"
],
"PSL": [
"power service layer",
"probabilistic soft logic"
],
"RPL": [
"recurrent power law",
"routing protocol for low - power and lossy networks"
],
"SPAM": [
"subtractive pixel adjacency matrix",
"state preparation and measurement errors"
],
"PSM": [
"patient side manipulator",
"precoding - aided spatial modulation"
],
"NI": [
"new instances",
"neat image",
"national instruments",
"noun incorporation",
"network interface"
],
"OPF": [
"optimal power flow",
"optimal pareto front"
],
"DTN": [
"delay tolerant networks",
"domain transfer network",
"disruption tolerant networking"
],
"PVI": [
"parabolic variational inequality",
"perpendicular vegetation index"
],
"ERR": [
"expected reciprocal rank",
"exact recovery ratio"
],
"HI": [
"hubert 's index",
"histogram intersection"
],
"TCA": [
"temporal concept analysis",
"task component architecture"
],
"NUC": [
"normalized uniformity coefficient",
"next utterance classification"
],
"OCM": [
"oz computation model",
"original component manufacturers"
],
"CCP": [
"cross conformal prediction",
"convex - concave procedure"
],
"JD": [
"joint decoding",
"joint diagonalization"
],
"LDE": [
"local discriminant embedding",
"learnable dictionary encoding"
],
"UC": [
"universal composability",
"unit commitment"
],
"CPD": [
"concave points detection",
"coherent point drift",
"coal mine disaster"
],
"HDT": [
"header dictionary triple",
"header , dictionary , triples"
],
"SSC": [
"shapley share coefficient",
"sparse subspace clustering",
"similarity sensitive coding"
],
"PDM": [
"pulse density modulated",
"probability distribution matrix"
],
"UCM": [
"use case map",
"ultrametric contour map"
],
"ZTD": [
"zenith total delay",
"zenithal tropospheric delays"
],
"FCA": [
"formal concept analysis",
"forward capacity auctions"
],
"BU": [
"bottom - up",
"bandwidth units"
],
"BCL": [
"boolean coalgebraic logics",
"bilateral convolutional layers"
],
"AQG": [
"analyze questions generated",
"automatic question generation"
],
"CSE": [
"cumulative spectrum energy",
"common subexpression elimination"
],
"MRD": [
"mean rank difference",
"maximal ratio diversity"
],
"NEM": [
"net energy metering",
"new economy movement"
],
"CLI": [
"command line interface",
"cuneiform language identification"
],
"MPCA": [
"mobility prediction clustering algorithm",
"multi - linear principal components analysis"
],
"QF": [
"query fusion",
"quality factor",
"quadratic form"
],
"BOA": [
"butterfly optimization algorithm",
"bilevel optimization algorithm"
],
"HP": [
"high prr",
"hawkes processes"
],
"CAA": [
"civil aviation authority",
"clump assignment array"
],
"ACI": [
"adjacent channel interference",
"artificial collective intelligence"
],
"OBS": [
"optical burst - switched",
"optimal brain surgeon"
]
} |