File size: 81,101 Bytes
c330598 | 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 | {
"0-shot": 0,
"0-shot CoT": 1,
"0-shot, CoT": 2,
"1-shot": 3,
"10-shot": 4,
"2-shot": 5,
"2-shot, CoT": 6,
"25-shot": 7,
"2D Human Pose Estimation": 8,
"2D Object Detection": 9,
"2D Pose Estimation": 10,
"2D image classification": 11,
"2R. Avg.": 12,
"3-5-shot": 13,
"3-shot": 14,
"3-shot, CoT": 15,
"3D Face Reconstruction": 16,
"3D Human Pose Estimation": 17,
"3D Instance Segmentation": 18,
"3D Multi-Object Tracking": 19,
"3D Object Captioning": 20,
"3D Object Classification": 21,
"3D Object Detection": 22,
"3D Open-Vocabulary Instance Segmentation": 23,
"3D Point Cloud Classification": 24,
"3D Pose Estimation": 25,
"3D Reconstruction": 26,
"3D Semantic Scene Completion": 27,
"3D Semantic Segmentation": 28,
"3D Shape Reconstruction": 29,
"3D radiology image classification": 30,
"3DSR": 31,
"4-Class: (Benign, Defacement, Phishing, Malware)": 32,
"4-shot": 33,
"4-shot, maj@4": 34,
"4D Panoptic Segmentation": 35,
"5-shot": 36,
"5-shot, CoT": 37,
"6D Pose Estimation": 38,
"7-shot": 39,
"8-shot": 40,
"8-shot, CoT": 41,
"8-shot, maj@8": 42,
"AGIEval": 43,
"AI Text Detection": 44,
"AI-Generated Text Detection": 45,
"AI2 ARC (Challenge)": 46,
"AI2 ARC (Easy)": 47,
"ARC": 48,
"ARC Challenge": 49,
"ARC Prize 2025 (legacy evaluation mapping)": 50,
"ARC-Challenge": 51,
"ARC-Easy": 52,
"ARC_C": 53,
"ARC_E": 54,
"ASR": 55,
"AST (0-shot, English-Korean)": 56,
"Abstract Algebra": 57,
"Abstract reasoning challenge": 58,
"Abstractive Dialogue Summarization": 59,
"Abstractive Question Answering": 60,
"Abstractive Summarization": 61,
"Abstractive Text Summarization": 62,
"Accented Speech Recognition": 63,
"Acoustic Scene Classification": 64,
"Action Detection": 65,
"Action Recognition": 66,
"Action Recognition In Videos": 67,
"Action Segmentation": 68,
"Ad-Hoc Information Retrieval": 69,
"Adversarial NLI": 70,
"Adversarial Robustness": 71,
"Agentic": 72,
"Alignment": 73,
"Alignment Faking Detection": 74,
"All-in-One Image Restoration": 75,
"Amazon Review Classification": 76,
"AmazonCounterfactualClassification": 77,
"AmazonReviewsClassification": 78,
"American Invitational Mathematics Examination": 79,
"Analogy Questions (BATS)": 80,
"Analogy Questions (ConceptNet Analogy)": 81,
"Analogy Questions (Google)": 82,
"Analogy Questions (NELL-ONE Analogy)": 83,
"Analogy Questions (SAT full)": 84,
"Analogy Questions (SAT)": 85,
"Analogy Questions (TREX Analogy)": 86,
"Analogy Questions (U2)": 87,
"Analogy Questions (U4)": 88,
"Animal Pose Estimation": 89,
"Anomaly Detection": 90,
"Arabic AI Text Detection": 91,
"Arabic to English Translation": 92,
"Argument Mining": 93,
"Arithmetic Reasoning": 94,
"ArxivQA": 95,
"Aspect-Based Sentiment Analysis (ABSA)": 96,
"Atari Games": 97,
"Atomic action recognition": 98,
"Attacks on Democratic Basic Order Detection": 99,
"Audio Classification": 100,
"Audio Emotion Classification": 101,
"Audio Emotion Recognition": 102,
"Audio Generation": 103,
"Audio Retrieval": 104,
"Audio Source Separation": 105,
"Audio Super-Resolution": 106,
"Audio Tagging": 107,
"Audio captioning": 108,
"Authorship Verification": 109,
"Auto Debugging": 110,
"Automated Theorem Proving": 111,
"Automatic Phoneme Recognition": 112,
"Automatic Speech Recognition": 113,
"Average": 114,
"BBH": 115,
"BLEU": 116,
"Bandwidth Extension": 117,
"Battery Insertion": 118,
"Beta-secretase Inhibition": 119,
"Bias Detection": 120,
"Biblical Hebrew Vocalization": 121,
"Binary Classification": 122,
"Binary Image Classification": 123,
"Binary OHCA detection (OHCA vs non-OHCA)": 124,
"Binary Propaganda Detection": 125,
"Binary Text Classification (Autoimmune Neurology)": 126,
"Binary text classification": 127,
"Binary: (Legit vs Spam Email)": 128,
"Biomedical Information Retrieval": 129,
"Biomedical QA (Chinese)": 130,
"Biomedical QA (PubMedQA)": 131,
"BitextMining": 132,
"Blind Face Restoration": 133,
"Blind Reconstruction (2-pass)": 134,
"Blood-Brain Barrier": 135,
"BoolQ": 136,
"BoolQ Question Answering": 137,
"Brain Tumor Classification": 138,
"Brain Tumor Detection": 139,
"Breast Cancer Histology Image Classification": 140,
"Breast Tumour Classification": 141,
"Bug-fix Patch Generation": 142,
"Business Intelligence Engine": 143,
"C-Eval (valid)": 144,
"COVID-19 Diagnosis": 145,
"CSQA": 146,
"CV-Bench": 147,
"Call to Action Detection": 148,
"Camera Pose Estimation": 149,
"Camouflaged Object Segmentation": 150,
"Cancer Image Classification": 151,
"Car Damage Detection": 152,
"CartPole-v1": 153,
"Caselaw Retrieval": 154,
"CatalanQA": 155,
"Categorical Classification (CC)": 156,
"Categorical Pair Similarity (CPS)": 157,
"Category Clustering": 158,
"Causal Language Modeling": 159,
"Cell Type Prediction": 160,
"Character Plot Arc Classification": 161,
"Chart Question Answering": 162,
"Chart reasoning": 163,
"Chat": 164,
"Chat & Instruction Following": 165,
"Cheese Texture Classification": 166,
"Chest X-ray report generation": 167,
"Chinese": 168,
"Citation Classification": 169,
"Claim Checkworthiness Detection": 170,
"Clasificación de reseñas (5 clases)": 171,
"Clasificación de texto": 172,
"Class-Specific Performance": 173,
"Classification": 174,
"Classification (ROC AUC)": 175,
"Classification Tasks": 176,
"Classify an image of chart to one of the following types: line, scatter, dot, vertical_bar, or horizontal_bar.": 177,
"Clickbait Detection": 178,
"Climate NLP Tasks (ClimaBench)": 179,
"Climate logical fallacy classification": 180,
"Clinical NER": 181,
"Clinical Note Embeddings": 182,
"Clinical Operations": 183,
"Clinical Support": 184,
"Clinical Text Embeddings": 185,
"Clinical Trial Comprehension": 186,
"Clustering": 187,
"CoQA": 188,
"Code": 189,
"Code Completion": 190,
"Code Documentation Generation": 191,
"Code Generation": 192,
"Code Reranking": 193,
"Code Retrieval": 194,
"Code Search": 195,
"Code generation": 196,
"Code generation and completion": 197,
"Coding": 198,
"Coherence-Momentum": 199,
"Col BERTTriplet": 200,
"Colorectal Gland Segmentation:": 201,
"Common Sense": 202,
"Common Sense Reasoning": 203,
"Commonsense": 204,
"Commonsense Reasoning": 205,
"Commonsense Understanding": 206,
"Commonsense natural language inference": 207,
"Conditional Generation": 208,
"Conditional Image Generation": 209,
"Confidence (Low/Medium/High)": 210,
"Contemporary-lb": 211,
"Contract clause classification": 212,
"Contracts Retrieval": 213,
"Contrastive Learning": 214,
"Conversation Summarization": 215,
"Conversational": 216,
"Conversational Response Retrieval": 217,
"Conversational Web Navigation": 218,
"Conversational and Function Calling": 219,
"Core Reasoning Tasks": 220,
"Coreference Resolution": 221,
"Coreference resolution": 222,
"Cough Classification": 223,
"Crisis Detection": 224,
"Crop Classification": 225,
"Crop Recommendation": 226,
"Cross Encoder Binary Classification": 227,
"Cross Encoder Classification": 228,
"Cross Encoder Correlation": 229,
"Cross Encoder Nano BEIR": 230,
"Cross Encoder Reranking": 231,
"Cross Encoder Softmax Accuracy": 232,
"Cross-Lingual Document Retrieval": 233,
"Cross-Lingual Transfer": 234,
"Cross-Modal Retrieval": 235,
"Cuisine (20 classes)": 236,
"Cultural Vocal Bursts Intensity Prediction": 237,
"Curated Test Samples": 238,
"Curiosity-driven Exploration": 239,
"Custom Information Retrieval": 240,
"Custom Triplet": 241,
"Customer Support Response Generation": 242,
"Cyberbullying Moderation (label + type)": 243,
"Cytotoxicity Prediction from Molecular Structure": 244,
"Cytotoxicity Prediction from Promiscuity": 245,
"DROP": 246,
"Danish EURLEX (Level 2)": 247,
"Data Augmentation": 248,
"Data-to-Text Generation": 249,
"Deblurring": 250,
"DeepFake Detection": 251,
"Deepfake Detection": 252,
"Definition Retrieval": 253,
"Dense Pixel Correspondence Estimation": 254,
"Dependency Parsing": 255,
"Description-guided molecule generation": 256,
"Detection Tasks": 257,
"DevOps Question Answering": 258,
"Device Aware Information Retrieval": 259,
"Dialog Navigation": 260,
"Discourse Parsing": 261,
"Disease Progression Classification (Longitudinal)": 262,
"DocVQA": 263,
"Document Classification": 264,
"Document Intelligence": 265,
"Document Layout Analysis": 266,
"Document Ranking": 267,
"Document Reranking": 268,
"Document Retrieval": 269,
"Document Summarization": 270,
"Document inconsistency detection (NLI-like)": 271,
"Document-Grounded QA": 272,
"Domain Adaptation": 273,
"Domain Generalization": 274,
"Domain Q&A": 275,
"Drilling Engineering AI": 276,
"Drug - Drug Interaction Classification": 277,
"Drug Discovery": 278,
"Drug-ADR Relation Extraction": 279,
"Dynamic Reconstruction": 280,
"ECG Report Generation": 281,
"Eastern Syriac Vocalization": 282,
"Educational Outcome Prediction": 283,
"Efficiency vs Baseline": 284,
"EgoSchema": 285,
"Email Classification": 286,
"Email Summarization": 287,
"Email Ticket Classification": 288,
"Embedding Synthesis over Long Context": 289,
"Emotion Analysis (Regression)": 290,
"Emotion Classification": 291,
"Emotion Classification in Czech": 292,
"Emotion Classification in German": 293,
"Emotion Classification in Hungarian": 294,
"Emotion Classification in Polish": 295,
"Emotion Classification in Slovak": 296,
"Emotion Classifier": 297,
"Emotion Detection": 298,
"Emotion Interpretation": 299,
"Emotion Recognition": 300,
"Emotion-Entailment": 301,
"Emotional Intelligence": 302,
"End-of-Turn Detection": 303,
"Energy Document Classification": 304,
"English": 305,
"English Document Retrieval": 306,
"English to Colloquial Tamil": 307,
"English to Marathi Translation": 308,
"English → Romanian": 309,
"English-Thai Translation Quality Assessment": 310,
"English-Thai Translation Quality Comparison": 311,
"English-Ukrainian Translation": 312,
"Entity Disambiguation": 313,
"Entity Linking": 314,
"Entity Resolution": 315,
"Entrepreneurial Readiness (low/medium/high)": 316,
"Event-based Object Segmentation": 317,
"Expert Routing": 318,
"Explanation Generation": 319,
"Extractive Question Answering": 320,
"Extractive Question-Answering": 321,
"Extractive Text Summarization": 322,
"Extreme Summarization": 323,
"Ezafe Detection": 324,
"F-16 longitudinal alpha tracking": 325,
"FLUE": 326,
"FQuAD": 327,
"Face Anti-Spoofing": 328,
"Face Detection": 329,
"Face Recognition": 330,
"Face Verification": 331,
"Facial Emotion Classification": 332,
"Facial Stress Level Prediction": 333,
"Fact Checking": 334,
"Fact Verification": 335,
"Factual Inconsistency Detection in Chart Captioning": 336,
"Factual accuracy": 337,
"Faithfulness Critic": 338,
"Fake News Detection": 339,
"Fake news classification (binary)": 340,
"Fallacy Detection": 341,
"Fashion Visual Search": 342,
"Feature Extraction": 343,
"Feedback Classification": 344,
"Few-Shot Image Classification": 345,
"Few-Shot Object Detection": 346,
"Few-Shot Semantic Segmentation": 347,
"Few-Shot Text Classification": 348,
"Fewshot Translation": 349,
"Fiction vs Non-Fiction Classification": 350,
"Field Classification": 351,
"Fill Mask": 352,
"Fill mask": 353,
"Fill-Mask": 354,
"Financial Advisory Generation": 355,
"Financial Compliance": 356,
"Financial Sentiment Analysis": 357,
"Financial Transaction Classification": 358,
"Financial Tweet Prediction": 359,
"Fine-Grained Image Classification": 360,
"Formal Logic": 361,
"Full Reconstruction (100%)": 362,
"Function Calling": 363,
"GPU Kernel Generation": 364,
"GSM8K": 365,
"GSM8K-Style Problems": 366,
"GSM8k": 367,
"GSM8k Mathematical Reasoning": 368,
"Gender Classification": 369,
"General": 370,
"General Domains": 371,
"General Knowledge": 372,
"General Multimodal": 373,
"General QA": 374,
"General Reasoning": 375,
"General Writing": 376,
"Generation Tasks": 377,
"Generative 3D Object Classification": 378,
"Generative Visual Question Answering": 379,
"GermanSTSBenchmark": 380,
"Gibberish Detection": 381,
"Global-MMLU-Lite": 382,
"Graded IR": 383,
"Grammar Classification": 384,
"Grammatical Error Correction": 385,
"Graph Classification": 386,
"Graph Property Prediction": 387,
"Graph Regression": 388,
"HLE Math": 389,
"HSwag": 390,
"Hallucination Detection": 391,
"Handwritten Text Recognition": 392,
"Hanoi Tower Puzzle": 393,
"Hanoi Tower Puzzle (Subtask-based)": 394,
"Hate / Not Hate classification": 395,
"Hate Speech Detection": 396,
"Hate Speech Span Detection": 397,
"Hate speech classification": 398,
"Head Pose Recognition (Facing)": 399,
"Head Pose Recognition (Tilt)": 400,
"Head Pose Recognition (Up/Down)": 401,
"Health Coaching": 402,
"Health-Aware Recipe Generation": 403,
"HellaSwag": 404,
"Hellaswag Contextual Completions": 405,
"High School Computer Science": 406,
"High School Mathematics": 407,
"Histopathologic Cancer Detection": 408,
"Historic Text Normalization (type-level)": 409,
"HourVideo": 410,
"Human Instance Segmentation": 411,
"Human vs AI Text Classification": 412,
"Human vs AI Text Detection": 413,
"HumanEval": 414,
"Humor Detection": 415,
"IF": 416,
"IaC Generation": 417,
"Idea Difficulty (Low/Medium/High)": 418,
"Image Captioning": 419,
"Image Classification": 420,
"Image Clustering": 421,
"Image Deblurring": 422,
"Image Dehazing": 423,
"Image Description": 424,
"Image Document Retrieval": 425,
"Image Generation": 426,
"Image Inpainting": 427,
"Image Manipulation Detection": 428,
"Image Manipulation Localization": 429,
"Image Matching": 430,
"Image Matting": 431,
"Image Outpainting": 432,
"Image Reconstruction": 433,
"Image Registration": 434,
"Image Restoration": 435,
"Image Retrieval": 436,
"Image Segmentation": 437,
"Image Super-Resolution": 438,
"Image To Text": 439,
"Image-Classification": 440,
"Image-to-Image Translation": 441,
"Image-to-Text Retrieval": 442,
"ImageClassification": 443,
"Imitation Policy Evaluation": 444,
"In-Context Reinforcement Learning": 445,
"Incremental Learning": 446,
"Indic-NLI": 447,
"Indic-Paraphrase": 448,
"Indic-QA Evaluation": 449,
"Indic-Sentiment Analysis": 450,
"Industrial Quality Control": 451,
"InfoVQA": 452,
"Information Retrieval": 453,
"Instance Segmentation": 454,
"Instruct": 455,
"Instruction Following": 456,
"Instruction following": 457,
"InstructionRetrieval": 458,
"Instrument Recognition": 459,
"Intent Classification": 460,
"Interactive Segmentation": 461,
"Irony Detection": 462,
"JPEG Decompression": 463,
"JPRDY": 464,
"KG-to-Text Generation": 465,
"KLUE-STS": 466,
"KLUE-TC": 467,
"KSM": 468,
"Key Information Extraction": 469,
"Keyphrase Extraction": 470,
"Keyword Extraction": 471,
"Keyword Spotting": 472,
"Knowledge": 473,
"Knowledge & QA": 474,
"Knowledge Benchmarking": 475,
"Knowledge Distillation": 476,
"Knowledge Graphs": 477,
"Ko-StrategyQA": 478,
"KorSTS": 479,
"LABELED_DEPENDENCIES": 480,
"LBHistoricalBitextMining": 481,
"LEMMA": 482,
"LSR": 483,
"Lane Detection": 484,
"Language Identification": 485,
"Language Modeling": 486,
"Language Modelling": 487,
"Language Sentiment Analysis": 488,
"Language Understanding": 489,
"Large Language Model": 490,
"Latent Diffusion Model for 3D": 491,
"Latent Diffusion Model for 3D - Pano": 492,
"Latent Diffusion Model for 3D - Super-Resolution": 493,
"Latent Diffusion Model for 3D-4C": 494,
"Legal Case Analysis": 495,
"Legal Document Retrieval": 496,
"Legal Document Summarization": 497,
"Legal Q&A (PT-PT)": 498,
"Lemmatisation": 499,
"Lexical Relation Classification (BLESS)": 500,
"Lexical Relation Classification (CogALexV)": 501,
"Lexical Relation Classification (EVALution)": 502,
"Lexical Relation Classification (K&H+N)": 503,
"Lexical Relation Classification (ROOT09)": 504,
"Lexical bias detection": 505,
"Linguistic Acceptability": 506,
"Linguistic Accuracy Evaluation": 507,
"Link Prediction": 508,
"Literary Explicitness Classification": 509,
"Logging": 510,
"Logical Reasoning": 511,
"Long Context": 512,
"Long Video Retrieval (Background Removed)": 513,
"Long context": 514,
"Long, Legal Document Summarization": 515,
"Long-Context Hallucination Detection": 516,
"Long-Context Understanding": 517,
"Long-horizon": 518,
"Long-tail Learning": 519,
"LongVideoBench": 520,
"Lung Nodule Detection": 521,
"MATH": 522,
"MBTI Personality Classification": 523,
"MC2, 10-shot": 524,
"MIRACL-Reranking": 525,
"MIRACL-Retrieval": 526,
"MMLU": 527,
"MMLU Knowledge Test": 528,
"MMLU-Pro": 529,
"MMR total": 530,
"MMVP": 531,
"MORPH": 532,
"MTOPDomainClassification": 533,
"MTOPIntentClassification": 534,
"MVBench": 535,
"Machine Translation": 536,
"Machine Translation (sa → en)": 537,
"Machine Translation Evaluation": 538,
"Manipulation Detection": 539,
"Market Direction Prediction": 540,
"Marketing Domain Q&A": 541,
"Masked Language Modeling": 542,
"Masked Language Modelling": 543,
"Masked Prediction (30%)": 544,
"Massive Multitask Language Understanding": 545,
"MassiveIntentClassification": 546,
"MassiveScenarioClassification": 547,
"Math": 548,
"Math Reasoning": 549,
"Math Word Problem Solving": 550,
"Math Word Problems": 551,
"Math word problems": 552,
"Mathematical Problem-Solving": 553,
"Mathematical Reasoning": 554,
"Mathematical Reasoning w/ Tools": 555,
"Mathematical problem solving": 556,
"Mathematical reasoning": 557,
"Mathematics": 558,
"Medical": 559,
"Medical Image Classification": 560,
"Medical Image Segmentation": 561,
"Medical Knowledge": 562,
"Medical Literature Search": 563,
"Medical Question Answering": 564,
"Medical SOAP Note Generation": 565,
"Medical Text Generation": 566,
"Meme Classification": 567,
"Memorization": 568,
"Military Audio Classification": 569,
"Misogyny Detection": 570,
"Misogyny Identification": 571,
"Model Compression": 572,
"Molecular Property Prediction": 573,
"Molecule Captioning": 574,
"Moment Retrieval": 575,
"Monocular Depth Estimation": 576,
"Monolingual Document Retrieval": 577,
"Morphological tagging (first subtoken)": 578,
"Motion Synthesis": 579,
"Multi Class Text Classification": 580,
"Multi Task Dev": 581,
"Multi-Head Text Regression": 582,
"Multi-Label Classification": 583,
"Multi-Label Emotion Classification": 584,
"Multi-Label Image Classification": 585,
"Multi-Label Intent Detection": 586,
"Multi-Label Text Classification": 587,
"Multi-Modal Hate Speech Detection": 588,
"Multi-Object Tracking": 589,
"Multi-Person Pose Estimation": 590,
"Multi-Source Reasoning (MUSR)": 591,
"Multi-class Classification": 592,
"Multi-class Text Classification": 593,
"Multi-label Emotion Classification": 594,
"Multi-label Fine-Grained Emotion Classification": 595,
"Multi-label Text Classification": 596,
"Multi-task language understanding": 597,
"Multi-tissue Nucleus Segmentation": 598,
"Multi-turn conversation": 599,
"Multi-turn conversation quality": 600,
"Multilabel Text Classification": 601,
"MultilabelClassification": 602,
"Multilingual": 603,
"Multilingual Emotion Classification": 604,
"Multilingual Math (MGSM)": 605,
"Multilingual QA": 606,
"Multilingual Retrieval": 607,
"Multilingual VLN": 608,
"Multimodal Code Generation": 609,
"Multimodal Emotion Recognition": 610,
"Multimodal Reasoning": 611,
"Multimodal medical knowledge and reasoning": 612,
"Multiple Choice": 613,
"Multiple Choice Question Answering": 614,
"Multiple Choice Question Generation": 615,
"Multiple Object Tracking": 616,
"Multiple-choice": 617,
"Multi‑Label Music Note Prediction": 618,
"Music Auto-Tagging": 619,
"Music Question Answering": 620,
"Music Source Separation": 621,
"Music Transcription": 622,
"My Binary Classification": 623,
"NER": 624,
"NER (9 tags)": 625,
"NER F1 Score": 626,
"NFCorpus": 627,
"NSFW/explicit content": 628,
"Named Entity Recognition": 629,
"Named Entity Recognition (Invoices)": 630,
"Named Entity Recognition (NER)": 631,
"Nano BEIR": 632,
"Narrative Genre Classification": 633,
"NatQs": 634,
"Natural Language Inference": 635,
"Natural Language Queries": 636,
"Natural Language Understanding": 637,
"Natural Language Visual Grounding": 638,
"Natural Language to Bash Translation": 639,
"Natural Lenguage Inference": 640,
"Natural language inference": 641,
"Negative Binomial GLM Parameter Estimation": 642,
"Nep-gLUE": 643,
"Nepali Speech Recognition": 644,
"Ner": 645,
"Network Pruning": 646,
"Neural Architecture Search": 647,
"News Classification": 648,
"News Summarization": 649,
"Node Classification": 650,
"Non-thinking": 651,
"OBQA": 652,
"OCR": 653,
"OMNI Math": 654,
"Object Categorization": 655,
"Object Counting": 656,
"Object Detection": 657,
"Object Localization": 658,
"Object Navigation": 659,
"Object Rearrangement": 660,
"Object Recognition": 661,
"Object Tracking": 662,
"Object visual presence verification": 663,
"Object-Oriented Navigation": 664,
"Online Beat Tracking": 665,
"Open Information Extraction": 666,
"Open Vocabulary Object Detection": 667,
"Open Vocabulary Panoptic Segmentation": 668,
"Open Vocabulary Semantic Segmentation": 669,
"Open-Domain Question Answering": 670,
"OpenAI Gym": 671,
"OpenAPI code completion": 672,
"OpenBookQA Facts": 673,
"Optical Character Recognition": 674,
"Optical Character Recognition (OCR)": 675,
"Optical Flow Estimation": 676,
"OrangeSum": 677,
"Osteoporosis Risk Prediction": 678,
"Out-of-Distribution Detection": 679,
"PDF-to-JSON Lab Test Data Conversion": 680,
"PII Masking": 681,
"PII Masking and Classification": 682,
"PII Routing": 683,
"PIQA": 684,
"PIQA Problem Solving": 685,
"POS": 686,
"POS Tagging": 687,
"Pair Classification": 688,
"PairClassification": 689,
"Pairwise Preference Ranking": 690,
"Panoptic Segmentation": 691,
"Paraphrase Detection": 692,
"Paraphrase Identification": 693,
"Paraphrase Mining": 694,
"Parking Space Occupancy": 695,
"Part of Speech Tagging": 696,
"Part-aware Panoptic Segmentation": 697,
"Part-of-Speech Tagging": 698,
"Participant Intervention Comparison Outcome Extraction": 699,
"Passage Ranking": 700,
"Passage Reranking": 701,
"Passage Retrieval": 702,
"Path Reconstruction": 703,
"Pedestrian Detection": 704,
"Perception Test": 705,
"Person Identification": 706,
"Person Re-Identification": 707,
"Personalized Image Generation": 708,
"Personalized Segmentation": 709,
"Phoneme Recognition": 710,
"Phrase Grounding": 711,
"PiQA": 712,
"Pick and Place": 713,
"Pitch Angle Tracking Control": 714,
"Planetary Recognition Lattice": 715,
"Plant Disease Classification": 716,
"Poems Annotation Generation": 717,
"Point Cloud Classification": 718,
"Point Cloud Segmentation": 719,
"Point Clouds": 720,
"Popular aggregated benchmark": 721,
"Pose Estimation": 722,
"Potato Late Blight Risk Classification": 723,
"Product Category Classification": 724,
"Professional Law": 725,
"Program synthesis": 726,
"Prompt Engineering": 727,
"Prompt Generation (Dev)": 728,
"Prompt Generation (Test)": 729,
"Prompt Harmfulness Classification": 730,
"Prompt Injection Detection": 731,
"Prompt Safety Classification": 732,
"Prompt injection detection": 733,
"Protein Design": 734,
"Protein Function Prediction": 735,
"Protein Secondary Structure Prediction": 736,
"Protein Structure Prediction": 737,
"Protocol Quality Assessment": 738,
"PubMedQA": 739,
"Py Late Information Retrieval": 740,
"PyTest edge-case unit test generation": 741,
"PyTest unit test generation": 742,
"Python Code Synthesis": 743,
"Python code generation": 744,
"QA": 745,
"QA (Span Extraction)": 746,
"QA (ViquiQuAD)": 747,
"QA (XQuAD)": 748,
"Quantization": 749,
"Question Answering": 750,
"Question Answering Classification": 751,
"Question Duplicate Detection": 752,
"Question Generation": 753,
"Question Pair Duplicate Detection": 754,
"Question-Answering": 755,
"RBC Shape Classification": 756,
"RE": 757,
"ROUGE-1": 758,
"RPG Art Generation": 759,
"RST-Pointer": 760,
"RZTKInformation Retrieval": 761,
"Radiology Document Retrieval": 762,
"Ranking": 763,
"Re-writing": 764,
"Reading Comprehension": 765,
"Reasoning": 766,
"Reasoning Quality Classification": 767,
"Receipt Entity Extraction": 768,
"Recognizing Emotion Cause in Conversations": 769,
"Referring Expression Grounding": 770,
"Referring Expression Segmentation": 771,
"Refusal Detection": 772,
"Region (5 classes)": 773,
"Region of interest detection": 774,
"Regression": 775,
"Regression (RMSE)": 776,
"Regulation Retrieval": 777,
"Regulatory Classification": 778,
"Regulatory Guidance": 779,
"Reinforcement Learning": 780,
"Reinforcement Learning Teaching": 781,
"Relation Classification": 782,
"Relation Extraction": 783,
"Relation Mapping": 784,
"Remote Sensing Image Classification": 785,
"Representation Learning": 786,
"Requirement Classification": 787,
"Reranking": 788,
"Reranking (query–product relevance)": 789,
"Response Generation": 790,
"Response Harmfulness Classification": 791,
"Resume Classification": 792,
"Retinal Vessel Segmentation": 793,
"Retrieval": 794,
"Reward Hack Detection": 795,
"Reward Modeling": 796,
"Risk Tolerance (Low/Medium/High)": 797,
"Robot Control": 798,
"Robot Manipulation": 799,
"Robotic Manipulation": 800,
"Robustness Tests": 801,
"Role-Aware Multi-Label Abuse Pattern Detection": 802,
"S2TT": 803,
"SENTS": 804,
"SICK-R": 805,
"SIQA": 806,
"SQuAD": 807,
"STEM": 808,
"STS": 809,
"STS Benchmark": 810,
"STS-ca": 811,
"STSBenchmark": 812,
"Safety & Compliance": 813,
"Sarcasm Detection": 814,
"Scene Change Detection": 815,
"Scene Classification": 816,
"Scene Flow Estimation": 817,
"Scene Segmentation": 818,
"Scene Text Recognition": 819,
"Scientific text generation": 820,
"Secret Detection": 821,
"Secret Detection (Long Context)": 822,
"Segmentation": 823,
"Segmentation Tasks": 824,
"Self-Supervised Learning": 825,
"Semantic Evidence Filtering": 826,
"Semantic Parsing": 827,
"Semantic Retrieval": 828,
"Semantic Search": 829,
"Semantic Segmentation": 830,
"Semantic Similarity": 831,
"Semantic Similarity (STS Validation)": 832,
"Semantic Textual Similarity": 833,
"Semantic Textual Similarity (Azerbaijani)": 834,
"Semantic entity labeling": 835,
"Semi-Supervised Image Classification": 836,
"Semi-Supervised Instance Segmentation": 837,
"Semi-Supervised Video Object Segmentation": 838,
"Sentence Classification": 839,
"Sentence Completion": 840,
"Sentence Ordering": 841,
"Sentence Relevance Classification": 842,
"Sentence Similarity": 843,
"Sentence completion": 844,
"Sentence-Embedding": 845,
"Sentic-GCN": 846,
"Sentic-GCN Bert": 847,
"Sentiment Analysis": 848,
"Sentiment Analysis (Regression)": 849,
"Sentiment Classification": 850,
"Sentiment classification": 851,
"Sequence Classification": 852,
"Sequence Labeling": 853,
"Sequence-to-sequence Language Modeling": 854,
"ShaderEval": 855,
"Short-term Object Interaction Anticipation": 856,
"Sign Language Recognition": 857,
"Silhouette": 858,
"Single Choice Question": 859,
"Single-object discovery": 860,
"Skill Level (Low/Medium/High)": 861,
"Skin Tumor Classification": 862,
"Slot Filling": 863,
"Solubility": 864,
"Solving Partial Differential Equations": 865,
"Space-time Video Super-resolution": 866,
"Spam / Ham Classification": 867,
"Spam Detection": 868,
"Spam Review Detection": 869,
"Span-Extraction": 870,
"Sparse Binary Classification": 871,
"Sparse Information Retrieval": 872,
"Sparse Learning": 873,
"Sparse Nano BEIR": 874,
"Spatial Reasoning": 875,
"Speaker Diarization": 876,
"Speaker Identification": 877,
"Speaker Recognition": 878,
"Speaker Verification": 879,
"Specialized Capabilities": 880,
"Speech Emotion Recognition": 881,
"Speech Enhancement": 882,
"Speech Recognition": 883,
"Speech Separation": 884,
"Speech Synthesis": 885,
"Speech Translation": 886,
"Speech Translation (ML→EN)": 887,
"Speech-to-Phoneme": 888,
"Speech-to-Speech Translation": 889,
"Speech-to-Text": 890,
"Speech-to-Text Translation": 891,
"Speed": 892,
"Spoken Command Recognition": 893,
"Spoken Language Understanding": 894,
"Stance Classification": 895,
"StarCraft Multi-Agent Challenge v2": 896,
"Stereo Depth Estimation": 897,
"Stereo Disparity Estimation": 898,
"Stereotypical Bias Analysis": 899,
"Stock Market Prediction": 900,
"Stock Trading": 901,
"Story Continuation": 902,
"Story Point Estimation": 903,
"Strategy QA (internal heuristic eval)": 904,
"Strong Gravitational Lens Discovery": 905,
"Style classification (holdout)": 906,
"Style classification (real-world baseline)": 907,
"Subjectivity Analysis": 908,
"Subjectivity Detection": 909,
"Suggestive Content Detection": 910,
"Suicidal Tendency Prediction in text": 911,
"Suicide Risk Detection": 912,
"Summarization": 913,
"Super Resolution": 914,
"Surgical Triplet Recognition": 915,
"Syriac Vocalization": 916,
"TAG": 917,
"TC": 918,
"TEca": 919,
"TOON conversion (schema-driven extraction)": 920,
"TabFQuAD": 921,
"Table Detection": 922,
"Table-to-Text Generation": 923,
"Tabular Classification": 924,
"Tabular Regression": 925,
"Target Prioritization": 926,
"TeCla": 927,
"Temporal Action Localization": 928,
"Temporal Relation Extraction": 929,
"Temporal Sentence Grounding": 930,
"Text Classification": 931,
"Text Classification (Sentiment Analysis)": 932,
"Text Classification (multi-label emotions)": 933,
"Text Classification Denial": 934,
"Text Classification Question": 935,
"Text Clustering": 936,
"Text Detection": 937,
"Text Generation": 938,
"Text Generation (Field Normalization)": 939,
"Text Generation (In-Domain)": 940,
"Text Generation (Out-of-Domain)": 941,
"Text Regression": 942,
"Text Retrieval": 943,
"Text Simplification": 944,
"Text Summarization": 945,
"Text To Speech": 946,
"Text Tokenization": 947,
"Text classification": 948,
"Text generation": 949,
"Text to 3D": 950,
"Text to Audio Retrieval": 951,
"Text to Molecular Generation": 952,
"Text to SQL": 953,
"Text to Speech": 954,
"Text-To-SQL": 955,
"Text-To-Speech Synthesis": 956,
"Text-based de novo Molecule Generation": 957,
"Text-classification": 958,
"Text-to-Image Generation": 959,
"Text-to-Music Generation": 960,
"Text-to-Speech": 961,
"Text-to-Video Generation": 962,
"Text2Text Generation": 963,
"The Semantic Segmentation Of Remote Sensing Imagery": 964,
"Theory of Mind": 965,
"Thinking": 966,
"Time Series Forecasting": 967,
"TinyQA Benchmark++": 968,
"Token Classification": 969,
"Token classification": 970,
"Tomato": 971,
"Tool Use": 972,
"Topic Classification": 973,
"Toxic-detector-cnn": 974,
"Toxic-detector-rnn": 975,
"Toxic-detector-roberta": 976,
"Toxicity (12 tasks)": 977,
"Toxicity Detection": 978,
"Track classification": 979,
"Trading": 980,
"Traffic Prediction": 981,
"Training-free 3D Part Segmentation": 982,
"Training-free 3D Point Cloud Classification": 983,
"Transit Route Planning": 984,
"Translation": 985,
"Translation (de-en)": 986,
"Translation En-to-ES": 987,
"Translation English-to-Swahili": 988,
"Translation Quality Estimation": 989,
"Translation acm-deu": 990,
"Translation acm-eng": 991,
"Translation acm-fra": 992,
"Translation acm-por": 993,
"Translation acm-spa": 994,
"Translation afr-deu": 995,
"Translation afr-eng": 996,
"Translation afr-fra": 997,
"Translation afr-nld": 998,
"Translation afr-por": 999,
"Translation afr-spa": 1000,
"Translation amh-deu": 1001,
"Translation amh-eng": 1002,
"Translation amh-fra": 1003,
"Translation amh-por": 1004,
"Translation amh-spa": 1005,
"Translation apc-deu": 1006,
"Translation apc-eng": 1007,
"Translation apc-fra": 1008,
"Translation apc-por": 1009,
"Translation apc-spa": 1010,
"Translation ara-cat": 1011,
"Translation ara-dan": 1012,
"Translation ara-deu": 1013,
"Translation ara-eng": 1014,
"Translation ara-fra": 1015,
"Translation ara-glg": 1016,
"Translation ara-ita": 1017,
"Translation ara-nob": 1018,
"Translation ara-por": 1019,
"Translation ara-ron": 1020,
"Translation ara-spa": 1021,
"Translation ara-swe": 1022,
"Translation arb-eng": 1023,
"Translation arz-deu": 1024,
"Translation arz-eng": 1025,
"Translation arz-fra": 1026,
"Translation arz-por": 1027,
"Translation arz-spa": 1028,
"Translation asm-eng": 1029,
"Translation asm-fra": 1030,
"Translation asm-por": 1031,
"Translation ast-cat": 1032,
"Translation ast-deu": 1033,
"Translation ast-eng": 1034,
"Translation ast-fra": 1035,
"Translation ast-glg": 1036,
"Translation ast-ita": 1037,
"Translation ast-oci": 1038,
"Translation ast-por": 1039,
"Translation ast-ron": 1040,
"Translation ast-spa": 1041,
"Translation awa-deu": 1042,
"Translation awa-eng": 1043,
"Translation awa-fra": 1044,
"Translation awa-por": 1045,
"Translation awa-spa": 1046,
"Translation aze_Latn-deu": 1047,
"Translation aze_Latn-eng": 1048,
"Translation aze_Latn-fra": 1049,
"Translation aze_Latn-por": 1050,
"Translation aze_Latn-spa": 1051,
"Translation bak-eng": 1052,
"Translation ban-eng": 1053,
"Translation ban-fra": 1054,
"Translation ban-por": 1055,
"Translation bar-bar": 1056,
"Translation bel-cat": 1057,
"Translation bel-deu": 1058,
"Translation bel-eng": 1059,
"Translation bel-fra": 1060,
"Translation bel-glg": 1061,
"Translation bel-ita": 1062,
"Translation bel-pol": 1063,
"Translation bel-por": 1064,
"Translation bel-ron": 1065,
"Translation bel-rus": 1066,
"Translation bel-spa": 1067,
"Translation bel-ukr": 1068,
"Translation bem-eng": 1069,
"Translation bem-fra": 1070,
"Translation bem-por": 1071,
"Translation bem-spa": 1072,
"Translation ben-deu": 1073,
"Translation ben-eng": 1074,
"Translation ben-fra": 1075,
"Translation ben-por": 1076,
"Translation ben-spa": 1077,
"Translation bho-deu": 1078,
"Translation bho-eng": 1079,
"Translation bho-fra": 1080,
"Translation bho-por": 1081,
"Translation bho-spa": 1082,
"Translation bos_Latn-eng": 1083,
"Translation bre-eng": 1084,
"Translation bre-fra": 1085,
"Translation bul-deu": 1086,
"Translation bul-eng": 1087,
"Translation bul-fra": 1088,
"Translation bul-ita": 1089,
"Translation bul-por": 1090,
"Translation bul-ron": 1091,
"Translation bul-rus": 1092,
"Translation bul-spa": 1093,
"Translation bul-ukr": 1094,
"Translation cat-ara": 1095,
"Translation cat-ast": 1096,
"Translation cat-deu": 1097,
"Translation cat-eng": 1098,
"Translation cat-fra": 1099,
"Translation cat-glg": 1100,
"Translation cat-heb": 1101,
"Translation cat-ita": 1102,
"Translation cat-lav": 1103,
"Translation cat-lit": 1104,
"Translation cat-oci": 1105,
"Translation cat-por": 1106,
"Translation cat-ron": 1107,
"Translation cat-spa": 1108,
"Translation cat-tur": 1109,
"Translation ceb-deu": 1110,
"Translation ceb-eng": 1111,
"Translation ceb-fra": 1112,
"Translation ceb-por": 1113,
"Translation ceb-spa": 1114,
"Translation ces-deu": 1115,
"Translation ces-eng": 1116,
"Translation ces-fra": 1117,
"Translation ces-por": 1118,
"Translation ces-rus": 1119,
"Translation ces-spa": 1120,
"Translation ces-ukr": 1121,
"Translation ckb-deu": 1122,
"Translation ckb-eng": 1123,
"Translation ckb-fra": 1124,
"Translation ckb-por": 1125,
"Translation ckb-spa": 1126,
"Translation cmn_Hans-eng": 1127,
"Translation cmn_Hans-fra": 1128,
"Translation cmn_Hans-por": 1129,
"Translation cmn_Hans-spa": 1130,
"Translation cmn_Hant-eng": 1131,
"Translation cmn_Hant-fra": 1132,
"Translation cmn_Hant-por": 1133,
"Translation cmn_Hant-spa": 1134,
"Translation crh-deu": 1135,
"Translation crh-eng": 1136,
"Translation crh-fra": 1137,
"Translation crh-por": 1138,
"Translation crh-spa": 1139,
"Translation cym-deu": 1140,
"Translation cym-eng": 1141,
"Translation cym-fra": 1142,
"Translation cym-por": 1143,
"Translation cym-spa": 1144,
"Translation dan-ara": 1145,
"Translation dan-cat": 1146,
"Translation dan-ces": 1147,
"Translation dan-deu": 1148,
"Translation dan-eng": 1149,
"Translation dan-fra": 1150,
"Translation dan-glg": 1151,
"Translation dan-heb": 1152,
"Translation dan-isl": 1153,
"Translation dan-ita": 1154,
"Translation dan-nob": 1155,
"Translation dan-pol": 1156,
"Translation dan-por": 1157,
"Translation dan-ron": 1158,
"Translation dan-rus": 1159,
"Translation dan-spa": 1160,
"Translation dan-swe": 1161,
"Translation dan-tur": 1162,
"Translation dan-ukr": 1163,
"Translation deu-afr": 1164,
"Translation deu-ara": 1165,
"Translation deu-ast": 1166,
"Translation deu-bel": 1167,
"Translation deu-ben": 1168,
"Translation deu-bul": 1169,
"Translation deu-cat": 1170,
"Translation deu-ces": 1171,
"Translation deu-cym": 1172,
"Translation deu-dan": 1173,
"Translation deu-deu": 1174,
"Translation deu-ell": 1175,
"Translation deu-eng": 1176,
"Translation deu-est": 1177,
"Translation deu-fao": 1178,
"Translation deu-fas": 1179,
"Translation deu-fin": 1180,
"Translation deu-fra": 1181,
"Translation deu-fur": 1182,
"Translation deu-gle": 1183,
"Translation deu-glg": 1184,
"Translation deu-guj": 1185,
"Translation deu-hat": 1186,
"Translation deu-hau": 1187,
"Translation deu-heb": 1188,
"Translation deu-hin": 1189,
"Translation deu-hne": 1190,
"Translation deu-hrv": 1191,
"Translation deu-hun": 1192,
"Translation deu-isl": 1193,
"Translation deu-ita": 1194,
"Translation deu-lad": 1195,
"Translation deu-lav": 1196,
"Translation deu-lij": 1197,
"Translation deu-lit": 1198,
"Translation deu-ltz": 1199,
"Translation deu-mag": 1200,
"Translation deu-mkd": 1201,
"Translation deu-mlt": 1202,
"Translation deu-nds": 1203,
"Translation deu-nld": 1204,
"Translation deu-nno": 1205,
"Translation deu-nob": 1206,
"Translation deu-nor": 1207,
"Translation deu-oci": 1208,
"Translation deu-pan": 1209,
"Translation deu-pap": 1210,
"Translation deu-pes": 1211,
"Translation deu-pol": 1212,
"Translation deu-por": 1213,
"Translation deu-prs": 1214,
"Translation deu-ron": 1215,
"Translation deu-rus": 1216,
"Translation deu-slk": 1217,
"Translation deu-slv": 1218,
"Translation deu-spa": 1219,
"Translation deu-sqi": 1220,
"Translation deu-srd": 1221,
"Translation deu-srp_Cyrl": 1222,
"Translation deu-swa": 1223,
"Translation deu-swe": 1224,
"Translation deu-tgk": 1225,
"Translation deu-tpi": 1226,
"Translation deu-tsn": 1227,
"Translation deu-ukr": 1228,
"Translation deu-urd": 1229,
"Translation deu-vie": 1230,
"Translation drt-deu": 1231,
"Translation drt-eng": 1232,
"Translation drt-fry": 1233,
"Translation drt-nld": 1234,
"Translation dsb-deu": 1235,
"Translation ell-deu": 1236,
"Translation ell-eng": 1237,
"Translation ell-fra": 1238,
"Translation ell-por": 1239,
"Translation ell-spa": 1240,
"Translation en-ru": 1241,
"Translation eng-afr": 1242,
"Translation eng-ara": 1243,
"Translation eng-arz": 1244,
"Translation eng-ast": 1245,
"Translation eng-bel": 1246,
"Translation eng-ben": 1247,
"Translation eng-bho": 1248,
"Translation eng-bos_Latn": 1249,
"Translation eng-bul": 1250,
"Translation eng-cat": 1251,
"Translation eng-ces": 1252,
"Translation eng-cym": 1253,
"Translation eng-dan": 1254,
"Translation eng-deu": 1255,
"Translation eng-ell": 1256,
"Translation eng-eng": 1257,
"Translation eng-est": 1258,
"Translation eng-fao": 1259,
"Translation eng-fas": 1260,
"Translation eng-fin": 1261,
"Translation eng-fra": 1262,
"Translation eng-fry": 1263,
"Translation eng-fur": 1264,
"Translation eng-gla": 1265,
"Translation eng-gle": 1266,
"Translation eng-glg": 1267,
"Translation eng-guj": 1268,
"Translation eng-hat": 1269,
"Translation eng-hau": 1270,
"Translation eng-hbs": 1271,
"Translation eng-heb": 1272,
"Translation eng-hin": 1273,
"Translation eng-hne": 1274,
"Translation eng-hrv": 1275,
"Translation eng-hun": 1276,
"Translation eng-ind": 1277,
"Translation eng-isl": 1278,
"Translation eng-ita": 1279,
"Translation eng-jpg": 1280,
"Translation eng-jpn": 1281,
"Translation eng-kea": 1282,
"Translation eng-kin": 1283,
"Translation eng-kor": 1284,
"Translation eng-lad": 1285,
"Translation eng-lad_Latn": 1286,
"Translation eng-lat": 1287,
"Translation eng-lav": 1288,
"Translation eng-lij": 1289,
"Translation eng-lin": 1290,
"Translation eng-lit": 1291,
"Translation eng-ltz": 1292,
"Translation eng-lug": 1293,
"Translation eng-mag": 1294,
"Translation eng-mai": 1295,
"Translation eng-mar": 1296,
"Translation eng-mkd": 1297,
"Translation eng-mld": 1298,
"Translation eng-mlt": 1299,
"Translation eng-nds": 1300,
"Translation eng-nep": 1301,
"Translation eng-nld": 1302,
"Translation eng-nno": 1303,
"Translation eng-nob": 1304,
"Translation eng-nor": 1305,
"Translation eng-nso": 1306,
"Translation eng-nya": 1307,
"Translation eng-oci": 1308,
"Translation eng-pan": 1309,
"Translation eng-pap": 1310,
"Translation eng-pes": 1311,
"Translation eng-pol": 1312,
"Translation eng-por": 1313,
"Translation eng-prs": 1314,
"Translation eng-pus": 1315,
"Translation eng-ron": 1316,
"Translation eng-rus": 1317,
"Translation eng-sco": 1318,
"Translation eng-sin": 1319,
"Translation eng-slk": 1320,
"Translation eng-slv": 1321,
"Translation eng-sna": 1322,
"Translation eng-som": 1323,
"Translation eng-sot": 1324,
"Translation eng-spa": 1325,
"Translation eng-sqi": 1326,
"Translation eng-srd": 1327,
"Translation eng-srn": 1328,
"Translation eng-srp_Cyrl": 1329,
"Translation eng-srp_Latn": 1330,
"Translation eng-swa": 1331,
"Translation eng-swe": 1332,
"Translation eng-tgk": 1333,
"Translation eng-tgk_Cyrl": 1334,
"Translation eng-tha": 1335,
"Translation eng-tpi": 1336,
"Translation eng-tsn": 1337,
"Translation eng-tso": 1338,
"Translation eng-tur": 1339,
"Translation eng-ukr": 1340,
"Translation eng-urd": 1341,
"Translation eng-vie": 1342,
"Translation eng-xho": 1343,
"Translation eng-zho": 1344,
"Translation eng-zul": 1345,
"Translation enm-deu": 1346,
"Translation enm-eng": 1347,
"Translation enm-fry": 1348,
"Translation enm-ltz": 1349,
"Translation enm-nld": 1350,
"Translation epo-deu": 1351,
"Translation epo-eng": 1352,
"Translation epo-fra": 1353,
"Translation epo-por": 1354,
"Translation epo-spa": 1355,
"Translation est-deu": 1356,
"Translation est-eng": 1357,
"Translation est-fra": 1358,
"Translation est-por": 1359,
"Translation est-spa": 1360,
"Translation eus-deu": 1361,
"Translation eus-eng": 1362,
"Translation eus-fra": 1363,
"Translation eus-por": 1364,
"Translation eus-spa": 1365,
"Translation fao-deu": 1366,
"Translation fao-eng": 1367,
"Translation fao-fra": 1368,
"Translation fao-por": 1369,
"Translation fao-spa": 1370,
"Translation fas-dan": 1371,
"Translation fas-deu": 1372,
"Translation fas-eng": 1373,
"Translation fas-fra": 1374,
"Translation fas-ita": 1375,
"Translation fas-por": 1376,
"Translation fas-ron": 1377,
"Translation fas-spa": 1378,
"Translation fij-eng": 1379,
"Translation fil-deu": 1380,
"Translation fil-eng": 1381,
"Translation fil-fra": 1382,
"Translation fil-por": 1383,
"Translation fil-spa": 1384,
"Translation fin-bul": 1385,
"Translation fin-deu": 1386,
"Translation fin-eng": 1387,
"Translation fin-fra": 1388,
"Translation fin-hrv": 1389,
"Translation fin-por": 1390,
"Translation fin-rus": 1391,
"Translation fin-slv": 1392,
"Translation fin-spa": 1393,
"Translation fin-srp_Cyrl": 1394,
"Translation fin-ukr": 1395,
"Translation fra-afr": 1396,
"Translation fra-ara": 1397,
"Translation fra-ast": 1398,
"Translation fra-bel": 1399,
"Translation fra-ben": 1400,
"Translation fra-bul": 1401,
"Translation fra-cat": 1402,
"Translation fra-ces": 1403,
"Translation fra-cym": 1404,
"Translation fra-dan": 1405,
"Translation fra-deu": 1406,
"Translation fra-ell": 1407,
"Translation fra-eng": 1408,
"Translation fra-est": 1409,
"Translation fra-fao": 1410,
"Translation fra-fas": 1411,
"Translation fra-fin": 1412,
"Translation fra-fra": 1413,
"Translation fra-fur": 1414,
"Translation fra-gle": 1415,
"Translation fra-glg": 1416,
"Translation fra-guj": 1417,
"Translation fra-hat": 1418,
"Translation fra-hau": 1419,
"Translation fra-hbs": 1420,
"Translation fra-heb": 1421,
"Translation fra-hin": 1422,
"Translation fra-hne": 1423,
"Translation fra-hrv": 1424,
"Translation fra-hun": 1425,
"Translation fra-isl": 1426,
"Translation fra-ita": 1427,
"Translation fra-kea": 1428,
"Translation fra-lav": 1429,
"Translation fra-lij": 1430,
"Translation fra-lin": 1431,
"Translation fra-lit": 1432,
"Translation fra-ltz": 1433,
"Translation fra-mag": 1434,
"Translation fra-mkd": 1435,
"Translation fra-mlt": 1436,
"Translation fra-nep": 1437,
"Translation fra-nld": 1438,
"Translation fra-nno": 1439,
"Translation fra-nob": 1440,
"Translation fra-nor": 1441,
"Translation fra-oci": 1442,
"Translation fra-pan": 1443,
"Translation fra-pap": 1444,
"Translation fra-pes": 1445,
"Translation fra-pol": 1446,
"Translation fra-por": 1447,
"Translation fra-prs": 1448,
"Translation fra-pus": 1449,
"Translation fra-ron": 1450,
"Translation fra-rus": 1451,
"Translation fra-slk": 1452,
"Translation fra-slv": 1453,
"Translation fra-spa": 1454,
"Translation fra-sqi": 1455,
"Translation fra-srd": 1456,
"Translation fra-srp_Cyrl": 1457,
"Translation fra-swa": 1458,
"Translation fra-swe": 1459,
"Translation fra-tgk": 1460,
"Translation fra-tpi": 1461,
"Translation fra-tsn": 1462,
"Translation fra-tur": 1463,
"Translation fra-ukr": 1464,
"Translation fra-urd": 1465,
"Translation fra-vie": 1466,
"Translation fry-deu": 1467,
"Translation fry-eng": 1468,
"Translation fry-ltz": 1469,
"Translation fry-nld": 1470,
"Translation fur-deu": 1471,
"Translation fur-eng": 1472,
"Translation fur-fra": 1473,
"Translation fur-por": 1474,
"Translation fur-spa": 1475,
"Translation gla-deu": 1476,
"Translation gla-eng": 1477,
"Translation gla-fra": 1478,
"Translation gla-por": 1479,
"Translation gla-spa": 1480,
"Translation gle-deu": 1481,
"Translation gle-eng": 1482,
"Translation gle-fra": 1483,
"Translation gle-por": 1484,
"Translation gle-spa": 1485,
"Translation glg-ara": 1486,
"Translation glg-ast": 1487,
"Translation glg-cat": 1488,
"Translation glg-deu": 1489,
"Translation glg-eng": 1490,
"Translation glg-fra": 1491,
"Translation glg-heb": 1492,
"Translation glg-ita": 1493,
"Translation glg-lav": 1494,
"Translation glg-lit": 1495,
"Translation glg-oci": 1496,
"Translation glg-por": 1497,
"Translation glg-ron": 1498,
"Translation glg-spa": 1499,
"Translation glg-tur": 1500,
"Translation gos-afr": 1501,
"Translation gos-deu": 1502,
"Translation gos-eng": 1503,
"Translation gos-fry": 1504,
"Translation gos-nld": 1505,
"Translation grn-eng": 1506,
"Translation grn-fra": 1507,
"Translation grn-por": 1508,
"Translation gsw-deu": 1509,
"Translation gsw-eng": 1510,
"Translation gsw-nld": 1511,
"Translation guj-deu": 1512,
"Translation guj-eng": 1513,
"Translation guj-fra": 1514,
"Translation guj-por": 1515,
"Translation guj-spa": 1516,
"Translation hat-deu": 1517,
"Translation hat-eng": 1518,
"Translation hat-fra": 1519,
"Translation hat-por": 1520,
"Translation hat-spa": 1521,
"Translation hau-eng": 1522,
"Translation hau-fra": 1523,
"Translation hau-por": 1524,
"Translation hau-spa": 1525,
"Translation hbs-deu": 1526,
"Translation hbs-eng": 1527,
"Translation hbs-fra": 1528,
"Translation hbs-ita": 1529,
"Translation hbs-rus": 1530,
"Translation hbs-spa": 1531,
"Translation hbs-ukr": 1532,
"Translation heb-cat": 1533,
"Translation heb-dan": 1534,
"Translation heb-deu": 1535,
"Translation heb-eng": 1536,
"Translation heb-fra": 1537,
"Translation heb-glg": 1538,
"Translation heb-isl": 1539,
"Translation heb-ita": 1540,
"Translation heb-nob": 1541,
"Translation heb-por": 1542,
"Translation heb-ron": 1543,
"Translation heb-spa": 1544,
"Translation heb-swe": 1545,
"Translation hin-deu": 1546,
"Translation hin-eng": 1547,
"Translation hin-fra": 1548,
"Translation hin-por": 1549,
"Translation hin-spa": 1550,
"Translation hne-deu": 1551,
"Translation hne-eng": 1552,
"Translation hne-fra": 1553,
"Translation hne-por": 1554,
"Translation hne-spa": 1555,
"Translation hrv-deu": 1556,
"Translation hrv-eng": 1557,
"Translation hrv-fra": 1558,
"Translation hrv-ita": 1559,
"Translation hrv-por": 1560,
"Translation hrv-ron": 1561,
"Translation hrv-rus": 1562,
"Translation hrv-spa": 1563,
"Translation hrv-ukr": 1564,
"Translation hrx-deu": 1565,
"Translation hrx-eng": 1566,
"Translation hsb-deu": 1567,
"Translation hun-deu": 1568,
"Translation hun-eng": 1569,
"Translation hun-fra": 1570,
"Translation hun-por": 1571,
"Translation hun-spa": 1572,
"Translation hun-ukr": 1573,
"Translation hye-deu": 1574,
"Translation hye-eng": 1575,
"Translation hye-fra": 1576,
"Translation hye-por": 1577,
"Translation hye-spa": 1578,
"Translation ibo-eng": 1579,
"Translation ibo-fra": 1580,
"Translation ibo-por": 1581,
"Translation ibo-spa": 1582,
"Translation ido_Latn-eng": 1583,
"Translation ilo-deu": 1584,
"Translation ilo-eng": 1585,
"Translation ilo-fra": 1586,
"Translation ilo-por": 1587,
"Translation ilo-spa": 1588,
"Translation ind-deu": 1589,
"Translation ind-eng": 1590,
"Translation ind-fra": 1591,
"Translation ind-por": 1592,
"Translation ind-spa": 1593,
"Translation isl-cat": 1594,
"Translation isl-ces": 1595,
"Translation isl-dan": 1596,
"Translation isl-deu": 1597,
"Translation isl-eng": 1598,
"Translation isl-fra": 1599,
"Translation isl-glg": 1600,
"Translation isl-heb": 1601,
"Translation isl-ita": 1602,
"Translation isl-nob": 1603,
"Translation isl-pol": 1604,
"Translation isl-por": 1605,
"Translation isl-ron": 1606,
"Translation isl-spa": 1607,
"Translation isl-swe": 1608,
"Translation ita-ara": 1609,
"Translation ita-ast": 1610,
"Translation ita-bel": 1611,
"Translation ita-cat": 1612,
"Translation ita-deu": 1613,
"Translation ita-eng": 1614,
"Translation ita-fra": 1615,
"Translation ita-glg": 1616,
"Translation ita-heb": 1617,
"Translation ita-lav": 1618,
"Translation ita-lit": 1619,
"Translation ita-oci": 1620,
"Translation ita-por": 1621,
"Translation ita-ron": 1622,
"Translation ita-rus": 1623,
"Translation ita-spa": 1624,
"Translation ita-tur": 1625,
"Translation ita-ukr": 1626,
"Translation jap-eng": 1627,
"Translation jav-deu": 1628,
"Translation jav-eng": 1629,
"Translation jav-fra": 1630,
"Translation jav-por": 1631,
"Translation jav-spa": 1632,
"Translation jpn-eng": 1633,
"Translation jpn-fra": 1634,
"Translation jpn-por": 1635,
"Translation jpn-spa": 1636,
"Translation kab-eng": 1637,
"Translation kab-spa": 1638,
"Translation kan-eng": 1639,
"Translation kat-eng": 1640,
"Translation kat-fra": 1641,
"Translation kat-por": 1642,
"Translation kat-spa": 1643,
"Translation kaz-deu": 1644,
"Translation kaz-eng": 1645,
"Translation kaz-fra": 1646,
"Translation kaz-por": 1647,
"Translation kaz-spa": 1648,
"Translation kaz_Cyrl-eng": 1649,
"Translation kea-deu": 1650,
"Translation kea-eng": 1651,
"Translation kea-fra": 1652,
"Translation kea-por": 1653,
"Translation kea-spa": 1654,
"Translation kik-eng": 1655,
"Translation kik-fra": 1656,
"Translation kin-eng": 1657,
"Translation kin-fra": 1658,
"Translation kin-por": 1659,
"Translation kin-spa": 1660,
"Translation kmr-eng": 1661,
"Translation kmr-fra": 1662,
"Translation kmr-por": 1663,
"Translation kmr-spa": 1664,
"Translation kon-eng": 1665,
"Translation kon-fra": 1666,
"Translation kon-por": 1667,
"Translation kor-eng": 1668,
"Translation kur_Latn-deu": 1669,
"Translation kur_Latn-eng": 1670,
"Translation lad-eng": 1671,
"Translation lad-spa": 1672,
"Translation lad_Latn-eng": 1673,
"Translation lad_Latn-spa": 1674,
"Translation lat-deu": 1675,
"Translation lat-eng": 1676,
"Translation lat-spa": 1677,
"Translation lav-deu": 1678,
"Translation lav-eng": 1679,
"Translation lav-fra": 1680,
"Translation lav-por": 1681,
"Translation lav-rus": 1682,
"Translation lav-spa": 1683,
"Translation lfn_Latn-deu": 1684,
"Translation lfn_Latn-eng": 1685,
"Translation lfn_Latn-fra": 1686,
"Translation lfn_Latn-por": 1687,
"Translation lij-deu": 1688,
"Translation lij-eng": 1689,
"Translation lij-fra": 1690,
"Translation lij-por": 1691,
"Translation lij-spa": 1692,
"Translation lim-deu": 1693,
"Translation lim-eng": 1694,
"Translation lim-fra": 1695,
"Translation lim-nld": 1696,
"Translation lim-por": 1697,
"Translation lim-spa": 1698,
"Translation lin-eng": 1699,
"Translation lin-fra": 1700,
"Translation lin-por": 1701,
"Translation lin-spa": 1702,
"Translation lit-deu": 1703,
"Translation lit-eng": 1704,
"Translation lit-fra": 1705,
"Translation lit-por": 1706,
"Translation lit-rus": 1707,
"Translation lit-spa": 1708,
"Translation lmo-deu": 1709,
"Translation lmo-eng": 1710,
"Translation lmo-fra": 1711,
"Translation lmo-por": 1712,
"Translation lmo-spa": 1713,
"Translation ltz-deu": 1714,
"Translation ltz-eng": 1715,
"Translation ltz-fra": 1716,
"Translation ltz-fry": 1717,
"Translation ltz-nld": 1718,
"Translation ltz-por": 1719,
"Translation ltz-spa": 1720,
"Translation lug-eng": 1721,
"Translation lug-fra": 1722,
"Translation lug-por": 1723,
"Translation lug-spa": 1724,
"Translation mag-deu": 1725,
"Translation mag-eng": 1726,
"Translation mag-fra": 1727,
"Translation mag-por": 1728,
"Translation mag-spa": 1729,
"Translation mai-deu": 1730,
"Translation mai-eng": 1731,
"Translation mai-fra": 1732,
"Translation mai-por": 1733,
"Translation mai-spa": 1734,
"Translation mal-eng": 1735,
"Translation mal-fra": 1736,
"Translation mar-deu": 1737,
"Translation mar-eng": 1738,
"Translation mar-fra": 1739,
"Translation mar-por": 1740,
"Translation mar-spa": 1741,
"Translation mkd-deu": 1742,
"Translation mkd-eng": 1743,
"Translation mkd-fra": 1744,
"Translation mkd-ita": 1745,
"Translation mkd-por": 1746,
"Translation mkd-ron": 1747,
"Translation mkd-rus": 1748,
"Translation mkd-spa": 1749,
"Translation mkd-ukr": 1750,
"Translation mlg-eng": 1751,
"Translation mlg-fra": 1752,
"Translation mlg-por": 1753,
"Translation mlg-spa": 1754,
"Translation mlt-deu": 1755,
"Translation mlt-eng": 1756,
"Translation mlt-fra": 1757,
"Translation mlt-por": 1758,
"Translation mlt-spa": 1759,
"Translation mri-eng": 1760,
"Translation mri-fra": 1761,
"Translation mri-spa": 1762,
"Translation msa-deu": 1763,
"Translation msa-eng": 1764,
"Translation msa-fra": 1765,
"Translation msa-por": 1766,
"Translation multi-eng": 1767,
"Translation multi-fra": 1768,
"Translation multi-multi": 1769,
"Translation nde-eng": 1770,
"Translation nde-fra": 1771,
"Translation nde-por": 1772,
"Translation nde-spa": 1773,
"Translation nds-deu": 1774,
"Translation nds-eng": 1775,
"Translation nds-fra": 1776,
"Translation nds-nld": 1777,
"Translation nds-por": 1778,
"Translation nds-spa": 1779,
"Translation nep-deu": 1780,
"Translation nep-eng": 1781,
"Translation nep-fra": 1782,
"Translation nep-por": 1783,
"Translation nep-spa": 1784,
"Translation nld-afr": 1785,
"Translation nld-deu": 1786,
"Translation nld-eng": 1787,
"Translation nld-fra": 1788,
"Translation nld-fry": 1789,
"Translation nld-nds": 1790,
"Translation nld-nld": 1791,
"Translation nld-por": 1792,
"Translation nld-sco": 1793,
"Translation nld-spa": 1794,
"Translation nno-deu": 1795,
"Translation nno-eng": 1796,
"Translation nno-fra": 1797,
"Translation nno-nob": 1798,
"Translation nno-por": 1799,
"Translation nno-spa": 1800,
"Translation nob-ara": 1801,
"Translation nob-cat": 1802,
"Translation nob-ces": 1803,
"Translation nob-dan": 1804,
"Translation nob-deu": 1805,
"Translation nob-eng": 1806,
"Translation nob-fra": 1807,
"Translation nob-glg": 1808,
"Translation nob-heb": 1809,
"Translation nob-isl": 1810,
"Translation nob-ita": 1811,
"Translation nob-nno": 1812,
"Translation nob-pol": 1813,
"Translation nob-por": 1814,
"Translation nob-ron": 1815,
"Translation nob-rus": 1816,
"Translation nob-spa": 1817,
"Translation nob-swe": 1818,
"Translation nob-tur": 1819,
"Translation nob-ukr": 1820,
"Translation nor-deu": 1821,
"Translation nor-eng": 1822,
"Translation nor-fra": 1823,
"Translation nor-por": 1824,
"Translation nor-spa": 1825,
"Translation npi-deu": 1826,
"Translation npi-eng": 1827,
"Translation npi-fra": 1828,
"Translation npi-por": 1829,
"Translation npi-spa": 1830,
"Translation nso-deu": 1831,
"Translation nso-eng": 1832,
"Translation nso-fra": 1833,
"Translation nso-por": 1834,
"Translation nso-spa": 1835,
"Translation nya-deu": 1836,
"Translation nya-eng": 1837,
"Translation nya-fra": 1838,
"Translation nya-por": 1839,
"Translation nya-spa": 1840,
"Translation oci-ast": 1841,
"Translation oci-cat": 1842,
"Translation oci-deu": 1843,
"Translation oci-eng": 1844,
"Translation oci-fra": 1845,
"Translation oci-glg": 1846,
"Translation oci-ita": 1847,
"Translation oci-por": 1848,
"Translation oci-ron": 1849,
"Translation oci-spa": 1850,
"Translation oci-tur": 1851,
"Translation ofs-bar": 1852,
"Translation pag-fra": 1853,
"Translation pag-por": 1854,
"Translation pag-spa": 1855,
"Translation pan-deu": 1856,
"Translation pan-eng": 1857,
"Translation pan-fra": 1858,
"Translation pan-por": 1859,
"Translation pan-spa": 1860,
"Translation pap-deu": 1861,
"Translation pap-eng": 1862,
"Translation pap-fra": 1863,
"Translation pap-por": 1864,
"Translation pap-spa": 1865,
"Translation pdc-deu": 1866,
"Translation pdc-eng": 1867,
"Translation pes-deu": 1868,
"Translation pes-eng": 1869,
"Translation pes-fra": 1870,
"Translation pes-por": 1871,
"Translation pes-spa": 1872,
"Translation plt-eng": 1873,
"Translation plt-fra": 1874,
"Translation plt-por": 1875,
"Translation plt-spa": 1876,
"Translation pms-eng": 1877,
"Translation pms-ita": 1878,
"Translation pol-bel": 1879,
"Translation pol-deu": 1880,
"Translation pol-eng": 1881,
"Translation pol-fra": 1882,
"Translation pol-por": 1883,
"Translation pol-rus": 1884,
"Translation pol-spa": 1885,
"Translation pol-ukr": 1886,
"Translation por-afr": 1887,
"Translation por-ara": 1888,
"Translation por-ast": 1889,
"Translation por-bel": 1890,
"Translation por-ben": 1891,
"Translation por-bul": 1892,
"Translation por-cat": 1893,
"Translation por-ces": 1894,
"Translation por-cym": 1895,
"Translation por-dan": 1896,
"Translation por-deu": 1897,
"Translation por-ell": 1898,
"Translation por-eng": 1899,
"Translation por-est": 1900,
"Translation por-fao": 1901,
"Translation por-fas": 1902,
"Translation por-fin": 1903,
"Translation por-fra": 1904,
"Translation por-fur": 1905,
"Translation por-gle": 1906,
"Translation por-glg": 1907,
"Translation por-guj": 1908,
"Translation por-hat": 1909,
"Translation por-hau": 1910,
"Translation por-heb": 1911,
"Translation por-hin": 1912,
"Translation por-hne": 1913,
"Translation por-hrv": 1914,
"Translation por-hun": 1915,
"Translation por-isl": 1916,
"Translation por-ita": 1917,
"Translation por-kea": 1918,
"Translation por-lav": 1919,
"Translation por-lij": 1920,
"Translation por-lin": 1921,
"Translation por-lit": 1922,
"Translation por-ltz": 1923,
"Translation por-mag": 1924,
"Translation por-mkd": 1925,
"Translation por-mlt": 1926,
"Translation por-nds": 1927,
"Translation por-nep": 1928,
"Translation por-nld": 1929,
"Translation por-nno": 1930,
"Translation por-nob": 1931,
"Translation por-nor": 1932,
"Translation por-oci": 1933,
"Translation por-pan": 1934,
"Translation por-pap": 1935,
"Translation por-pes": 1936,
"Translation por-pol": 1937,
"Translation por-por": 1938,
"Translation por-prs": 1939,
"Translation por-pus": 1940,
"Translation por-ron": 1941,
"Translation por-rus": 1942,
"Translation por-slk": 1943,
"Translation por-slv": 1944,
"Translation por-spa": 1945,
"Translation por-sqi": 1946,
"Translation por-srd": 1947,
"Translation por-srp_Cyrl": 1948,
"Translation por-swa": 1949,
"Translation por-swe": 1950,
"Translation por-tgk": 1951,
"Translation por-tpi": 1952,
"Translation por-tsn": 1953,
"Translation por-tur": 1954,
"Translation por-ukr": 1955,
"Translation por-urd": 1956,
"Translation por-vie": 1957,
"Translation prs-deu": 1958,
"Translation prs-eng": 1959,
"Translation prs-fra": 1960,
"Translation prs-por": 1961,
"Translation prs-spa": 1962,
"Translation pus-deu": 1963,
"Translation pus-eng": 1964,
"Translation pus-fra": 1965,
"Translation pus-por": 1966,
"Translation pus-spa": 1967,
"Translation ron-ara": 1968,
"Translation ron-ast": 1969,
"Translation ron-cat": 1970,
"Translation ron-deu": 1971,
"Translation ron-eng": 1972,
"Translation ron-fra": 1973,
"Translation ron-glg": 1974,
"Translation ron-heb": 1975,
"Translation ron-ita": 1976,
"Translation ron-oci": 1977,
"Translation ron-por": 1978,
"Translation ron-spa": 1979,
"Translation ron-tur": 1980,
"Translation ron-ukr": 1981,
"Translation ru-en": 1982,
"Translation run-deu": 1983,
"Translation run-eng": 1984,
"Translation run-fra": 1985,
"Translation run-por": 1986,
"Translation run-spa": 1987,
"Translation rus-ast": 1988,
"Translation rus-bel": 1989,
"Translation rus-bul": 1990,
"Translation rus-cat": 1991,
"Translation rus-ces": 1992,
"Translation rus-dan": 1993,
"Translation rus-deu": 1994,
"Translation rus-eng": 1995,
"Translation rus-fin": 1996,
"Translation rus-fra": 1997,
"Translation rus-glg": 1998,
"Translation rus-hbs": 1999,
"Translation rus-hrv": 2000,
"Translation rus-ita": 2001,
"Translation rus-lav": 2002,
"Translation rus-lit": 2003,
"Translation rus-mkd": 2004,
"Translation rus-nob": 2005,
"Translation rus-oci": 2006,
"Translation rus-pol": 2007,
"Translation rus-por": 2008,
"Translation rus-ron": 2009,
"Translation rus-slv": 2010,
"Translation rus-spa": 2011,
"Translation rus-srp_Cyrl": 2012,
"Translation rus-srp_Latn": 2013,
"Translation rus-swe": 2014,
"Translation rus-ukr": 2015,
"Translation san-eng": 2016,
"Translation scn-deu": 2017,
"Translation scn-eng": 2018,
"Translation scn-fra": 2019,
"Translation scn-por": 2020,
"Translation scn-spa": 2021,
"Translation sco-eng": 2022,
"Translation sco-nld": 2023,
"Translation sin-deu": 2024,
"Translation sin-eng": 2025,
"Translation sin-fra": 2026,
"Translation sin-por": 2027,
"Translation sin-spa": 2028,
"Translation slk-deu": 2029,
"Translation slk-eng": 2030,
"Translation slk-fra": 2031,
"Translation slk-por": 2032,
"Translation slk-spa": 2033,
"Translation slk-ukr": 2034,
"Translation slv-deu": 2035,
"Translation slv-eng": 2036,
"Translation slv-fra": 2037,
"Translation slv-ita": 2038,
"Translation slv-por": 2039,
"Translation slv-ron": 2040,
"Translation slv-rus": 2041,
"Translation slv-spa": 2042,
"Translation slv-ukr": 2043,
"Translation smp-sam": 2044,
"Translation sna-eng": 2045,
"Translation sna-fra": 2046,
"Translation sna-por": 2047,
"Translation sna-spa": 2048,
"Translation som-deu": 2049,
"Translation som-eng": 2050,
"Translation som-fra": 2051,
"Translation som-por": 2052,
"Translation som-spa": 2053,
"Translation sot-deu": 2054,
"Translation sot-eng": 2055,
"Translation sot-fra": 2056,
"Translation sot-por": 2057,
"Translation sot-spa": 2058,
"Translation spa-afr": 2059,
"Translation spa-ara": 2060,
"Translation spa-ast": 2061,
"Translation spa-bel": 2062,
"Translation spa-ben": 2063,
"Translation spa-bul": 2064,
"Translation spa-cat": 2065,
"Translation spa-ces": 2066,
"Translation spa-cym": 2067,
"Translation spa-dan": 2068,
"Translation spa-deu": 2069,
"Translation spa-ell": 2070,
"Translation spa-eng": 2071,
"Translation spa-est": 2072,
"Translation spa-eus": 2073,
"Translation spa-fao": 2074,
"Translation spa-fas": 2075,
"Translation spa-fin": 2076,
"Translation spa-fra": 2077,
"Translation spa-fur": 2078,
"Translation spa-gla": 2079,
"Translation spa-gle": 2080,
"Translation spa-glg": 2081,
"Translation spa-hat": 2082,
"Translation spa-hau": 2083,
"Translation spa-hbs": 2084,
"Translation spa-heb": 2085,
"Translation spa-hin": 2086,
"Translation spa-hne": 2087,
"Translation spa-hrv": 2088,
"Translation spa-hun": 2089,
"Translation spa-isl": 2090,
"Translation spa-ita": 2091,
"Translation spa-lad": 2092,
"Translation spa-lad_Latn": 2093,
"Translation spa-lav": 2094,
"Translation spa-lij": 2095,
"Translation spa-lin": 2096,
"Translation spa-lit": 2097,
"Translation spa-mag": 2098,
"Translation spa-mar": 2099,
"Translation spa-mkd": 2100,
"Translation spa-mlt": 2101,
"Translation spa-nep": 2102,
"Translation spa-nld": 2103,
"Translation spa-nno": 2104,
"Translation spa-nob": 2105,
"Translation spa-nor": 2106,
"Translation spa-oci": 2107,
"Translation spa-pan": 2108,
"Translation spa-pap": 2109,
"Translation spa-pes": 2110,
"Translation spa-pol": 2111,
"Translation spa-por": 2112,
"Translation spa-prs": 2113,
"Translation spa-pus": 2114,
"Translation spa-ron": 2115,
"Translation spa-rus": 2116,
"Translation spa-slk": 2117,
"Translation spa-slv": 2118,
"Translation spa-spa": 2119,
"Translation spa-sqi": 2120,
"Translation spa-srd": 2121,
"Translation spa-srp_Cyrl": 2122,
"Translation spa-swa": 2123,
"Translation spa-swe": 2124,
"Translation spa-tgk": 2125,
"Translation spa-tpi": 2126,
"Translation spa-tsn": 2127,
"Translation spa-tur": 2128,
"Translation spa-ukr": 2129,
"Translation spa-urd": 2130,
"Translation spa-vie": 2131,
"Translation sqi-deu": 2132,
"Translation sqi-eng": 2133,
"Translation sqi-fra": 2134,
"Translation sqi-por": 2135,
"Translation sqi-spa": 2136,
"Translation srd-deu": 2137,
"Translation srd-eng": 2138,
"Translation srd-fra": 2139,
"Translation srd-por": 2140,
"Translation srd-spa": 2141,
"Translation srn-eng": 2142,
"Translation srp_Cyrl-deu": 2143,
"Translation srp_Cyrl-eng": 2144,
"Translation srp_Cyrl-fra": 2145,
"Translation srp_Cyrl-ita": 2146,
"Translation srp_Cyrl-por": 2147,
"Translation srp_Cyrl-ron": 2148,
"Translation srp_Cyrl-rus": 2149,
"Translation srp_Cyrl-spa": 2150,
"Translation srp_Cyrl-ukr": 2151,
"Translation srp_Latn-deu": 2152,
"Translation srp_Latn-eng": 2153,
"Translation srp_Latn-ita": 2154,
"Translation srp_Latn-rus": 2155,
"Translation srp_Latn-ukr": 2156,
"Translation ssw-eng": 2157,
"Translation ssw-fra": 2158,
"Translation ssw-por": 2159,
"Translation ssw-spa": 2160,
"Translation stq-deu": 2161,
"Translation stq-eng": 2162,
"Translation stq-nld": 2163,
"Translation swa-deu": 2164,
"Translation swa-eng": 2165,
"Translation swa-fra": 2166,
"Translation swa-por": 2167,
"Translation swa-spa": 2168,
"Translation swe-ara": 2169,
"Translation swe-cat": 2170,
"Translation swe-ces": 2171,
"Translation swe-dan": 2172,
"Translation swe-deu": 2173,
"Translation swe-eng": 2174,
"Translation swe-fra": 2175,
"Translation swe-glg": 2176,
"Translation swe-heb": 2177,
"Translation swe-isl": 2178,
"Translation swe-ita": 2179,
"Translation swe-nob": 2180,
"Translation swe-pol": 2181,
"Translation swe-por": 2182,
"Translation swe-ron": 2183,
"Translation swe-rus": 2184,
"Translation swe-spa": 2185,
"Translation swe-tur": 2186,
"Translation swe-ukr": 2187,
"Translation swg-eng": 2188,
"Translation swg-nld": 2189,
"Translation swh-deu": 2190,
"Translation swh-eng": 2191,
"Translation swh-fra": 2192,
"Translation swh-por": 2193,
"Translation swh-spa": 2194,
"Translation szl-deu": 2195,
"Translation szl-eng": 2196,
"Translation szl-fra": 2197,
"Translation szl-por": 2198,
"Translation szl-spa": 2199,
"Translation tgk-deu": 2200,
"Translation tgk-eng": 2201,
"Translation tgk-fra": 2202,
"Translation tgk-por": 2203,
"Translation tgk-spa": 2204,
"Translation tgk_Cyrl-deu": 2205,
"Translation tgk_Cyrl-eng": 2206,
"Translation tgk_Cyrl-fra": 2207,
"Translation tgk_Cyrl-por": 2208,
"Translation tgk_Cyrl-spa": 2209,
"Translation tha-eng": 2210,
"Translation tir-eng": 2211,
"Translation tir-spa": 2212,
"Translation tpi-deu": 2213,
"Translation tpi-eng": 2214,
"Translation tpi-fra": 2215,
"Translation tpi-por": 2216,
"Translation tpi-spa": 2217,
"Translation tsn-deu": 2218,
"Translation tsn-eng": 2219,
"Translation tsn-fra": 2220,
"Translation tsn-por": 2221,
"Translation tsn-spa": 2222,
"Translation tso-eng": 2223,
"Translation tso-fra": 2224,
"Translation tso-por": 2225,
"Translation tur-eng": 2226,
"Translation tur-ukr": 2227,
"Translation ukr-ast": 2228,
"Translation ukr-bel": 2229,
"Translation ukr-bul": 2230,
"Translation ukr-cat": 2231,
"Translation ukr-ces": 2232,
"Translation ukr-dan": 2233,
"Translation ukr-deu": 2234,
"Translation ukr-eng": 2235,
"Translation ukr-fin": 2236,
"Translation ukr-fra": 2237,
"Translation ukr-glg": 2238,
"Translation ukr-hbs": 2239,
"Translation ukr-hrv": 2240,
"Translation ukr-hun": 2241,
"Translation ukr-ita": 2242,
"Translation ukr-lav": 2243,
"Translation ukr-lit": 2244,
"Translation ukr-mkd": 2245,
"Translation ukr-nob": 2246,
"Translation ukr-oci": 2247,
"Translation ukr-pol": 2248,
"Translation ukr-por": 2249,
"Translation ukr-ron": 2250,
"Translation ukr-rus": 2251,
"Translation ukr-slk": 2252,
"Translation ukr-slv": 2253,
"Translation ukr-spa": 2254,
"Translation ukr-srp_Cyrl": 2255,
"Translation ukr-srp_Latn": 2256,
"Translation ukr-swe": 2257,
"Translation ukr-tur": 2258,
"Translation urd-deu": 2259,
"Translation urd-eng": 2260,
"Translation urd-fra": 2261,
"Translation urd-por": 2262,
"Translation urd-spa": 2263,
"Translation vec-deu": 2264,
"Translation vec-eng": 2265,
"Translation vec-fra": 2266,
"Translation vec-por": 2267,
"Translation vec-spa": 2268,
"Translation ven-eng": 2269,
"Translation ven-fra": 2270,
"Translation ven-por": 2271,
"Translation ven-spa": 2272,
"Translation vie-eng": 2273,
"Translation xho-deu": 2274,
"Translation xho-eng": 2275,
"Translation xho-fra": 2276,
"Translation xho-por": 2277,
"Translation xho-spa": 2278,
"Translation yid-eng": 2279,
"Translation yid-fra": 2280,
"Translation yid-spa": 2281,
"Translation yor-eng": 2282,
"Translation zea-deu": 2283,
"Translation zea-eng": 2284,
"Translation zea-fry": 2285,
"Translation zea-nds": 2286,
"Translation zea-nld": 2287,
"Translation zho-eng": 2288,
"Translation zho-jpn": 2289,
"Translation zul-deu": 2290,
"Translation zul-eng": 2291,
"Translation zul-fra": 2292,
"Translation zul-por": 2293,
"Translation zul-spa": 2294,
"Triplet": 2295,
"TriviaQA": 2296,
"TruthfulQA": 2297,
"TruthfulQA (MC2)": 2298,
"TruthfulQA Generation": 2299,
"Truthfulness": 2300,
"Truthfulness in answers": 2301,
"Truthfulness in question answering": 2302,
"Turn Detection": 2303,
"Type prediction": 2304,
"UFD": 2305,
"UI Element Detection": 2306,
"UNLABELED_DEPENDENCIES": 2307,
"Uncensored Response": 2308,
"Unsupervised Domain Adaptation": 2309,
"Unsupervised Instance Segmentation": 2310,
"Unsupervised Object Segmentation": 2311,
"Unsupervised Semantic Segmentation": 2312,
"Urdu Speech Recognition": 2313,
"User Feedback Classification": 2314,
"Uzbek Language Understanding": 2315,
"VCGBench-Diverse": 2316,
"VLA": 2317,
"VQAv2": 2318,
"VSI-Bench": 2319,
"Vehicle Re-Identification": 2320,
"Verbalized Rebus Solving": 2321,
"Video Captioning": 2322,
"Video Classification": 2323,
"Video Crime Detection": 2324,
"Video Frame Interpolation": 2325,
"Video Generation": 2326,
"Video Grounding": 2327,
"Video Instance Segmentation": 2328,
"Video Object Segmentation": 2329,
"Video Prediction": 2330,
"Video Question Answering": 2331,
"Video Reconstruction": 2332,
"Video Retrieval": 2333,
"Video Summarization": 2334,
"Video Super-Resolution": 2335,
"Video-based Generative Performance Benchmarking": 2336,
"Video-based Generative Performance Benchmarking (Correctness of Information)": 2337,
"VideoMME": 2338,
"VideoMMMU": 2339,
"Vietnamese Banking Aspect Sentiment Analysis": 2340,
"Vietnamese Banking Text Classification": 2341,
"Vietnamese General Sentiment Analysis": 2342,
"Vietnamese Medical Abstractive Question Answering": 2343,
"Vietnamese Natural Language Inference": 2344,
"Vietnamese News Classification": 2345,
"VilaQuAD": 2346,
"Violence Detection": 2347,
"ViquiQuAD": 2348,
"Vision-Language-Action Navigation": 2349,
"Vision-and-Language Navigation": 2350,
"Vision-based Classification": 2351,
"Visual Object Tracking": 2352,
"Visual Place Recognition": 2353,
"Visual Prompt Tuning": 2354,
"Visual Question Answering": 2355,
"Visual Question Answering (VQA)": 2356,
"Visual Reasoning": 2357,
"Visual Servoing": 2358,
"Visual Storytelling": 2359,
"Visual Tracking": 2360,
"Visual math reasoning": 2361,
"Visual question answering": 2362,
"Visual scientific knowledge reasoning": 2363,
"Voice Activity Detection": 2364,
"Voice Conversion": 2365,
"Voice Emotion Recognition": 2366,
"Waste Classification": 2367,
"WideSearch": 2368,
"Wikipedia Summarization": 2369,
"Wikitext-fr": 2370,
"WinoG": 2371,
"WinoGrande": 2372,
"Winogrande": 2373,
"Winogrande Challenge": 2374,
"Word Sense Disambiguation": 2375,
"Word Similarity": 2376,
"Word prediction": 2377,
"XQuAD-ca": 2378,
"Yes/No Question Classification": 2379,
"Zero Shot Classification": 2380,
"Zero Shot Classifications": 2381,
"Zero Shot Segmentation": 2382,
"Zero shot Classification": 2383,
"Zero-Shot Action Recognition": 2384,
"Zero-Shot Baseline": 2385,
"Zero-Shot Classification": 2386,
"Zero-Shot Emergence Detection": 2387,
"Zero-Shot Text Classification": 2388,
"Zero-Shot Transfer Image Classification": 2389,
"Zero-Shot Video Retrieval": 2390,
"Zero-shot": 2391,
"Zero-shot (binary)": 2392,
"Zero-shot Classification": 2393,
"Zero-shot Generalization": 2394,
"Zero-shot Sentiment Classification": 2395,
"abstractive summarization": 2396,
"agieval": 2397,
"answerability prediction": 2398,
"any-to-any": 2399,
"arc_ca_challenge": 2400,
"arc_ca_easy": 2401,
"arc_easy": 2402,
"audio classification": 2403,
"audio-classification": 2404,
"audio-text-retrieval": 2405,
"automatic-speech-recognition": 2406,
"automatic-speech-translation": 2407,
"binary-classification": 2408,
"binary_classification": 2409,
"catalanqa": 2410,
"chinese-evaluation": 2411,
"chunking": 2412,
"classification": 2413,
"classify nepali news": 2414,
"clustering": 2415,
"code": 2416,
"code generation": 2417,
"code-evaluation": 2418,
"code-generation": 2419,
"commonsense-reasoning": 2420,
"copa_ca": 2421,
"coreference-resolution": 2422,
"defect-detection": 2423,
"diamond": 2424,
"document-image-classification": 2425,
"entity-linking": 2426,
"eq_bench": 2427,
"evaluation": 2428,
"exam": 2429,
"fact-verification": 2430,
"feature-extraction": 2431,
"few-shot": 2432,
"few-shot-ner": 2433,
"fill-mask": 2434,
"flores_ca": 2435,
"formal language correction": 2436,
"get-answer": 2437,
"gsgsm8k": 2438,
"gsm8k": 2439,
"haerae": 2440,
"humaneval": 2441,
"image-captioning": 2442,
"image-classification": 2443,
"image-segmentation": 2444,
"image-similarity": 2445,
"image-text-retrieval": 2446,
"image-text-to-text": 2447,
"image-to-image": 2448,
"image-to-text": 2449,
"information-retrieval": 2450,
"instance-segmentation": 2451,
"instruction": 2452,
"intent classification": 2453,
"intent-classification": 2454,
"kmmlu": 2455,
"knowledge": 2456,
"low-light-image-enhancement": 2457,
"math": 2458,
"math-evaluation": 2459,
"mathematical-reasoning": 2460,
"mbpp": 2461,
"mix": 2462,
"mmlu": 2463,
"multi-label text-classification": 2464,
"multi-label-classification": 2465,
"multi-task-evaluation": 2466,
"multi_class_classification": 2467,
"multi_label_classification": 2468,
"multimodal": 2469,
"multiple-choice": 2470,
"multiple-choice-qa": 2471,
"multiple-choice-question-answering": 2472,
"multiple_choice": 2473,
"named-entity-recognition": 2474,
"narratives": 2475,
"natural-language-inference": 2476,
"ner": 2477,
"object-classification": 2478,
"object-detection": 2479,
"original-capability": 2480,
"phoneme-classification": 2481,
"preference_evaluation": 2482,
"pretraining-evaluation": 2483,
"question-answering": 2484,
"reasoning": 2485,
"regression": 2486,
"reinforcement-learning": 2487,
"reinforcement-learning for quadrangular mesh topological optimization": 2488,
"retrieval": 2489,
"robotics": 2490,
"semantic textual similarity": 2491,
"semantic-segmentation": 2492,
"semantic-similarity": 2493,
"sentence-similarity": 2494,
"sentiment analysis": 2495,
"sentiment-analysis": 2496,
"sentiment-classification": 2497,
"sequence-classification": 2498,
"slot-filling": 2499,
"speech-recognition": 2500,
"speech-to-text": 2501,
"speech-translation": 2502,
"stem": 2503,
"streaming-transcription-chunk-100msec": 2504,
"streaming-transcription-chunk-200msec": 2505,
"streaming-transcription-chunk-300msec": 2506,
"streaming-transcription-chunk-40msec": 2507,
"structured sentiment analysis": 2508,
"structured-data-classification": 2509,
"structured-information-extraction": 2510,
"summarization": 2511,
"symbolic music representation learning": 2512,
"tabular-classification": 2513,
"tabular-regression": 2514,
"tau2-bench": 2515,
"text generation": 2516,
"text political leaning classification": 2517,
"text-classfication": 2518,
"text-classification": 2519,
"text-generation": 2520,
"text-prediction": 2521,
"text-ranking": 2522,
"text-summarization": 2523,
"text-to-audio": 2524,
"text-to-image": 2525,
"text-to-speech": 2526,
"text-to-sql": 2527,
"text_classification": 2528,
"token-classification": 2529,
"tomato leaf disease detection": 2530,
"translation": 2531,
"translation en-me": 2532,
"translation, speech-translation": 2533,
"truthfulqa": 2534,
"truthfulqa_gen": 2535,
"video caption": 2536,
"video detailed caption": 2537,
"video question anwering": 2538,
"video-captioning": 2539,
"video-classification": 2540,
"video-text-to-text": 2541,
"visual-question-answering": 2542,
"voice-conversion": 2543,
"winogrande": 2544,
"word-similarity": 2545,
"zero-shot retrieval": 2546,
"zero-shot-classification": 2547,
"zero-shot-image-classification": 2548,
"ΔWP regression (go / field goal / punt)": 2549,
"Классификация текста": 2550
} |