File size: 43,553 Bytes
a7607c7 |
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 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="description" content="We’re on a journey to solve and democratize artificial intelligence through natural language.">
<meta property="fb:app_id" content="1321688464574422">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@huggingface">
<meta property="og:title" content="vocab.json · facebook/wav2vec2-base-960h at main">
<meta property="og:type" content="website">
<meta property="og:url" content="https://huggingface.co/facebook/wav2vec2-base-960h/blob/main/vocab.json">
<meta property="og:image" content="https://huggingface.co/front/thumbnails/v2-2.png">
<link rel="stylesheet" href="/front/build/style.d794683.css">
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css">
<title>
vocab.json · facebook/wav2vec2-base-960h at main
</title>
</head>
<body class="flex flex-col min-h-screen viewer-blob">
<header class="border-b border-gray-100 z-10">
<div class="container flex items-center h-16">
<div class="flex flex-1 items-center">
<a class="flex flex-none items-center mr-5 lg:mr-6" href="/">
<img alt="Hugging Face's logo" class="md:mr-2 w-7" src="/front/assets/huggingface_logo.svg">
<span class="hidden text-lg font-bold whitespace-nowrap md:block">Hugging Face</span>
</a>
<div
class="v2-quick-search relative flex-1 lg:max-w-sm mr-2 md:mr-4"
search-type="all"
url="/api/quicksearch-html"
with-links="true"
>
<input
autocomplete="off"
class="v2-quick-search-input w-full h-9 pl-8 pr-3 border border-gray-200 shadow-inner rounded-lg outline-none focus:ring-2 focus:shadow-xl placeholder-gray-400 focus:ring-inset"
name=""
placeholder="Search models, datasets, users..."
spellcheck="false"
type="text"
/>
<svg
alt=""
class="absolute left-2.5 top-2.5 text-gray-400"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 32 32"
>
<path
d="M30 28.59L22.45 21A11 11 0 1 0 21 22.45L28.59 30zM5 14a9 9 0 1 1 9 9a9 9 0 0 1-9-9z"
fill="currentColor"
></path>
</svg>
<ul
class="v2-quick-search-results z-40 hidden absolute w-full overflow-hidden text-sm bg-white border border-gray-100 rounded-lg shadow-lg divide-y divide-gray-100"
role="listbox"
></ul>
</div>
<button
id="v2-phone-nav-button"
class="lg:hidden relative flex-none place-self-stretch flex items-center justify-center w-8"
type="button"
>
<svg
alt=""
class="v2-phone-nav-icon-open"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="22"
height="22"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 32 32"
>
<path d="M4 24h24v2H4z" fill="currentColor"></path>
<path d="M4 12h24v2H4z" fill="currentColor"></path>
<path d="M4 18h24v2H4z" fill="currentColor"></path>
<path d="M4 6h24v2H4z" fill="currentColor"></path>
</svg>
<svg
alt=""
class="v2-phone-nav-icon-close hidden"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1.1em"
height="1.1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 32 32"
>
<path
d="M24 9.4L22.6 8L16 14.6L9.4 8L8 9.4l6.6 6.6L8 22.6L9.4 24l6.6-6.6l6.6 6.6l1.4-1.4l-6.6-6.6L24 9.4z"
fill="currentColor"
></path>
</svg>
</button>
</div>
<nav
aria-label="Main"
class="ml-auto hidden lg:block"
>
<ul class="flex items-center space-x-6">
<li>
<a
class="flex items-center group hover:text-indigo-700"
href="/models"
>
<svg
alt=""
class="mr-1.5 text-gray-400 group-hover:text-indigo-500"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
class="uim-quaternary"
d="M20.23 7.24L12 12L3.77 7.24a1.98 1.98 0 0 1 .7-.71L11 2.76c.62-.35 1.38-.35 2 0l6.53 3.77c.29.173.531.418.7.71z"
opacity=".25"
fill="currentColor"
></path>
<path
class="uim-tertiary"
d="M12 12v9.5a2.09 2.09 0 0 1-.91-.21L4.5 17.48a2.003 2.003 0 0 1-1-1.73v-7.5a2.06 2.06 0 0 1 .27-1.01L12 12z"
opacity=".5"
fill="currentColor"
></path>
<path
class="uim-primary"
d="M20.5 8.25v7.5a2.003 2.003 0 0 1-1 1.73l-6.62 3.82c-.275.13-.576.198-.88.2V12l8.23-4.76c.175.308.268.656.27 1.01z"
fill="currentColor"
></path>
</svg>
Models
</a>
</li>
<li>
<a
class="flex items-center group hover:text-red-700"
href="/datasets"
>
<svg
class="mr-1.5 text-gray-400 group-hover:text-red-500"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
alt=""
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 25 25"
>
<ellipse
cx="12.5"
cy="5"
fill="currentColor"
fill-opacity="0.25"
rx="7.5"
ry="2"
></ellipse>
<path
d="M12.5 15C16.6421 15 20 14.1046 20 13V20C20 21.1046 16.6421 22 12.5 22C8.35786 22 5 21.1046 5 20V13C5 14.1046 8.35786 15 12.5 15Z"
fill="currentColor"
opacity="0.5"
></path>
<path
d="M12.5 7C16.6421 7 20 6.10457 20 5V11.5C20 12.6046 16.6421 13.5 12.5 13.5C8.35786 13.5 5 12.6046 5 11.5V5C5 6.10457 8.35786 7 12.5 7Z"
fill="currentColor"
opacity="0.5"
></path>
<path
d="M5.23628 12C5.08204 12.1598 5 12.8273 5 13C5 14.1046 8.35786 15 12.5 15C16.6421 15 20 14.1046 20 13C20 12.8273 19.918 12.1598 19.7637 12C18.9311 12.8626 15.9947 13.5 12.5 13.5C9.0053 13.5 6.06886 12.8626 5.23628 12Z"
fill="currentColor"
></path>
</svg>
Datasets
</a>
</li>
<li>
<a
class="flex items-center group hover:text-gray-500"
href="/pricing"
>
Pricing
</a>
</li>
<li class="b-r">
<div
class="v2-dropdown relative "
>
<button
class="v2-dropdown-button cursor-pointer hover:text-gray-500 flex items-center"
slot="trigger"
type="button"
>
<svg alt=""
class="mr-2 text-gray-400 fill-current w-3"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
viewBox="0 0 11 8"
preserveAspectRatio="xMidYMid meet">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 1.5H0V0.5H11V1.5ZM11 7.5H0V6.5H11V7.5ZM0 4.5H11V3.5H0V4.5Z" />
</svg>
Resources
</button><div
class="v2-dropdown-menu hidden absolute mt-1 min-w-full bg-white rounded-xl overflow-hidden shadow-lg z-10 border border-gray-100 right-0 top-full "
>
<ul class="min-w-full w-52">
<li>
<div
class="col-span-2 -mx-2 px-4 flex items-center font-semibold bg-gradient-to-r to-white h-7 text-blue-800 from-blue-50"
>
Website
</div> <ul>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="/metrics"
>
<svg
alt=""
class="text-gray-400 mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
class="uim-quaternary"
d="M6 23H2a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1z"
opacity=".25"
fill="currentColor"
></path>
<path
class="uim-primary"
d="M14 23h-4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v20a1 1 0 0 1-1 1z"
fill="currentColor"
></path>
<path
class="uim-tertiary"
d="M22 23h-4a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1z"
opacity=".5"
fill="currentColor"
></path>
</svg>
Metrics
</a>
</li>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="/languages"
>
<svg
alt=""
class="text-gray-400 mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
class="uim-primary"
d="M17 13H7a1 1 0 0 1 0-2h10a1 1 0 0 1 0 2z"
fill="currentColor"
></path>
<path
class="uim-tertiary"
d="M12 2a10 10 0 0 0-7.743 16.33l-1.964 1.963A1 1 0 0 0 3 22h9a10 10 0 0 0 0-20zM9 7h6a1 1 0 0 1 0 2H9a1 1 0 0 1 0-2zm6 10H9a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2zm2-4H7a1 1 0 0 1 0-2h10a1 1 0 0 1 0 2z"
opacity=".5"
fill="currentColor"
></path>
<path
class="uim-primary"
d="M15 17H9a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2zm0-8H9a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2z"
fill="currentColor"
></path>
</svg>
Languages
</a>
</li>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="/organizations"
>
<svg
alt=""
class="text-gray-400 mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
class="uim-tertiary"
d="M12 18a3.5 3.5 0 1 1 3.5-3.5A3.504 3.504 0 0 1 12 18z"
opacity=".5"
fill="currentColor"
></path>
<path
class="uim-primary"
d="M14.64 16.772a3.452 3.452 0 0 1-5.28 0A4.988 4.988 0 0 0 7 21a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1a4.988 4.988 0 0 0-2.36-4.228z"
fill="currentColor"
></path>
<path
class="uim-tertiary"
d="M21 12a.996.996 0 0 1-.664-.252L12 4.338l-8.336 7.41a1 1 0 0 1-1.328-1.496l9-8a.999.999 0 0 1 1.328 0l9 8A1 1 0 0 1 21 12z"
opacity=".5"
fill="currentColor"
></path>
<path
class="uim-quaternary"
d="M12 4.338l-8 7.111V21a1 1 0 0 0 1 1h3a1 1 0 0 1-1-1a4.988 4.988 0 0 1 2.36-4.228A3.469 3.469 0 0 1 8.5 14.5a3.5 3.5 0 0 1 7 0a3.469 3.469 0 0 1-.86 2.272A4.988 4.988 0 0 1 17 21a1 1 0 0 1-1 1h3a1 1 0 0 0 1-1v-9.551z"
opacity=".25"
fill="currentColor"
></path>
</svg>
Organizations
</a>
</li>
</ul>
</li>
<li>
<div
class="col-span-2 -mx-2 px-4 flex items-center font-semibold bg-gradient-to-r to-white h-7 text-yellow-800 from-yellow-50"
>
Community
</div> <ul>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="https://discuss.huggingface.co/"
target="_blank"
>
Forum
</a>
</li>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="/blog"
>
Blog
</a>
</li>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="https://github.com/huggingface"
target="_blank"
>
GitHub
</a>
</li>
</ul>
</li>
<li>
<div
class="col-span-2 -mx-2 px-4 flex items-center font-semibold bg-gradient-to-r to-white h-7 text-green-800 from-green-50"
>
Documentation
</div> <ul>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="/docs"
>
Model Hub doc
</a>
</li>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="https://api-inference.huggingface.co/docs/"
target="_blank"
>
Inference API doc
</a>
</li>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="/transformers/"
>
Transformers doc
</a>
</li>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="/docs/tokenizers/python/latest/"
>
Tokenizers doc
</a>
</li>
<li>
<a
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
px-3 py-1.5
"
href="/docs/datasets/"
>
Datasets doc
</a>
</li>
</ul>
</li>
</ul>
</div></div>
</li>
<li>
<hr class="w-0.5 h-5 bg-gray-100" />
</li>
<li>
<a
class="block cursor-pointer hover:text-gray-500"
href="/login"
>
Log In
</a>
</li>
<li>
<a
class="btn"
href="/join"
>
Sign Up
</a>
</li>
</ul>
</nav>
<div
id="v2-phone-nav-menu"
class="hidden lg:hidden z-20 fixed bg-white top-16 inset-0 overflow-y-auto"
>
<nav aria-label="Main">
<ul class="px-2 pb-4 space-y-4">
<li class="space-y-2.5">
<div
class="-mx-2 flex items-center px-2 font-semibold
text-purple-800 bg-gradient-to-r from-purple-50 to-white h-7"
>
Account
</div>
<ul class="grid gap-2.5 grid-cols-2 content-start">
<li>
<a class="btn w-full v2-dropdown-entry" href="/login">
Log In
</a>
</li>
<li>
<a class="btn w-full v2-dropdown-entry" href="/join">
Sign Up
</a>
</li>
</ul>
</li>
<li class="space-y-2.5">
<div
class="-mx-2 flex items-center px-2 font-semibold text-blue-800
bg-gradient-to-r from-blue-50 to-white h-7"
>
Website
</div>
<ul class="grid gap-2.5 grid-cols-2 content-start">
<li>
<a href="/models" class="btn w-full v2-dropdown-entry">
<svg
alt=""
class="text-gray-400 mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
class="uim-quaternary"
d="M20.23 7.24L12 12L3.77 7.24a1.98 1.98 0 0 1 .7-.71L11 2.76c.62-.35 1.38-.35 2 0l6.53 3.77c.29.173.531.418.7.71z"
opacity=".25"
fill="currentColor"
></path>
<path
class="uim-tertiary"
d="M12 12v9.5a2.09 2.09 0 0 1-.91-.21L4.5 17.48a2.003 2.003 0 0 1-1-1.73v-7.5a2.06 2.06 0 0 1 .27-1.01L12 12z"
opacity=".5"
fill="currentColor"
></path>
<path
class="uim-primary"
d="M20.5 8.25v7.5a2.003 2.003 0 0 1-1 1.73l-6.62 3.82c-.275.13-.576.198-.88.2V12l8.23-4.76c.175.308.268.656.27 1.01z"
fill="currentColor"
></path>
</svg>
Models
</a>
</li>
<li>
<a href="/datasets" class="btn w-full v2-dropdown-entry">
<svg
class="text-gray-400 mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
alt=""
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 25 25"
>
<ellipse
cx="12.5"
cy="5"
fill="currentColor"
fill-opacity="0.25"
rx="7.5"
ry="2"
></ellipse>
<path
d="M12.5 15C16.6421 15 20 14.1046 20 13V20C20 21.1046 16.6421 22 12.5 22C8.35786 22 5 21.1046 5 20V13C5 14.1046 8.35786 15 12.5 15Z"
fill="currentColor"
opacity="0.5"
></path>
<path
d="M12.5 7C16.6421 7 20 6.10457 20 5V11.5C20 12.6046 16.6421 13.5 12.5 13.5C8.35786 13.5 5 12.6046 5 11.5V5C5 6.10457 8.35786 7 12.5 7Z"
fill="currentColor"
opacity="0.5"
></path>
<path
d="M5.23628 12C5.08204 12.1598 5 12.8273 5 13C5 14.1046 8.35786 15 12.5 15C16.6421 15 20 14.1046 20 13C20 12.8273 19.918 12.1598 19.7637 12C18.9311 12.8626 15.9947 13.5 12.5 13.5C9.0053 13.5 6.06886 12.8626 5.23628 12Z"
fill="currentColor"
></path>
</svg>
Datasets
</a>
</li>
<li>
<a href="/metrics" class="btn w-full v2-dropdown-entry">
<svg
alt=""
class="text-gray-400 mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
class="uim-quaternary"
d="M6 23H2a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1z"
opacity=".25"
fill="currentColor"
></path>
<path
class="uim-primary"
d="M14 23h-4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v20a1 1 0 0 1-1 1z"
fill="currentColor"
></path>
<path
class="uim-tertiary"
d="M22 23h-4a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1z"
opacity=".5"
fill="currentColor"
></path>
</svg>
Metrics
</a>
</li>
<li>
<a href="/languages" class="btn w-full v2-dropdown-entry">
<svg
alt=""
class="text-gray-400 mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
class="uim-primary"
d="M17 13H7a1 1 0 0 1 0-2h10a1 1 0 0 1 0 2z"
fill="currentColor"
></path>
<path
class="uim-tertiary"
d="M12 2a10 10 0 0 0-7.743 16.33l-1.964 1.963A1 1 0 0 0 3 22h9a10 10 0 0 0 0-20zM9 7h6a1 1 0 0 1 0 2H9a1 1 0 0 1 0-2zm6 10H9a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2zm2-4H7a1 1 0 0 1 0-2h10a1 1 0 0 1 0 2z"
opacity=".5"
fill="currentColor"
></path>
<path
class="uim-primary"
d="M15 17H9a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2zm0-8H9a1 1 0 0 1 0-2h6a1 1 0 0 1 0 2z"
fill="currentColor"
></path>
</svg>
Languages
</a>
</li>
<li>
<a href="/organizations" class="btn w-full v2-dropdown-entry">
<svg
alt=""
class="text-gray-400 mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
class="uim-tertiary"
d="M12 18a3.5 3.5 0 1 1 3.5-3.5A3.504 3.504 0 0 1 12 18z"
opacity=".5"
fill="currentColor"
></path>
<path
class="uim-primary"
d="M14.64 16.772a3.452 3.452 0 0 1-5.28 0A4.988 4.988 0 0 0 7 21a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1a4.988 4.988 0 0 0-2.36-4.228z"
fill="currentColor"
></path>
<path
class="uim-tertiary"
d="M21 12a.996.996 0 0 1-.664-.252L12 4.338l-8.336 7.41a1 1 0 0 1-1.328-1.496l9-8a.999.999 0 0 1 1.328 0l9 8A1 1 0 0 1 21 12z"
opacity=".5"
fill="currentColor"
></path>
<path
class="uim-quaternary"
d="M12 4.338l-8 7.111V21a1 1 0 0 0 1 1h3a1 1 0 0 1-1-1a4.988 4.988 0 0 1 2.36-4.228A3.469 3.469 0 0 1 8.5 14.5a3.5 3.5 0 0 1 7 0a3.469 3.469 0 0 1-.86 2.272A4.988 4.988 0 0 1 17 21a1 1 0 0 1-1 1h3a1 1 0 0 0 1-1v-9.551z"
opacity=".25"
fill="currentColor"
></path>
</svg>
Organizations
</a>
</li>
<li>
<a href="/pricing" class="btn w-full v2-dropdown-entry">
Pricing
</a>
</li>
</ul>
</li>
<li class="space-y-2.5">
<div
class="-mx-2 flex items-center px-2 font-semibold
text-yellow-800 bg-gradient-to-r from-yellow-50 to-white h-7"
>
Community
</div>
<ul class="grid gap-2.5 grid-cols-2 content-start">
<li>
<a href="https://discuss.huggingface.co/" class="btn w-full v2-dropdown-entry">
Forum
</a>
</li>
<li>
<a href="/blog" class="btn w-full v2-dropdown-entry">
Blog
</a>
</li>
</ul>
</li>
<li class="space-y-2.5">
<div
class="-mx-2 flex items-center px-2 font-semibold
text-green-800 bg-gradient-to-r from-green-50 to-white h-7"
>
Documentation
</div>
<ul class="grid gap-2.5 grid-cols-2 content-start">
<li>
<a href="/docs" class="btn w-full v2-dropdown-entry">
Model Hub doc
</a>
</li>
<li>
<a href="https://api-inference.huggingface.co/docs/" class="btn w-full v2-dropdown-entry">
Inference API doc
</a>
</li>
<li>
<a href="/transformers/" class="btn w-full v2-dropdown-entry">
Transformers doc
</a>
</li>
<li>
<a href="/docs/tokenizers/python/latest/" class="btn w-full v2-dropdown-entry">
Tokenizers doc
</a>
</li>
<li>
<a href="/docs/datasets/" class="btn w-full v2-dropdown-entry">
Datasets doc
</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
</header> <main class="flex flex-col flex-1 ">
<header class="bg-gradient-to-t from-gray-50 via-white to-white pt-10">
<div class="container relative">
<h1 class="flex items-center flex-wrap font-mono md:text-xl mb-3">
<div class="inline-flex items-center">
<img
class="w-4 h-4 rounded mr-1.5"
alt="'s picture"
src="https://aeiljuispo.cloudimg.io/v7/https://s3.amazonaws.com/moonup/production/uploads/1592839207516-noauth.png?w=200&h=200&f=face"
/>
<a href="/facebook" class="font-sans text-gray-400 hover:text-blue-600">
facebook
</a>
<div class="text-gray-300 mx-0.5">/</div>
</div>
<div class="font-semibold">
<a href="/facebook/wav2vec2-base-960h">
wav2vec2-base-960h
</a>
</div>
</h1>
<div class="flex flex-wrap mb-5">
<a class="
tag
tag-white
"
href="/models?pipeline_tag=automatic-speech-recognition"
tag-id="automatic-speech-recognition"
>
<div class="tag-ico
tag-ico-yellow
">
<svg
alt=""
class=""
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 18 18"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M8.38893 3.42133C7.9778 3.14662 7.49446 3 7 3C6.33696 3 5.70108 3.26339 5.23223 3.73223C4.76339 4.20107 4.5 4.83696 4.5 5.5C4.5 5.99445 4.64662 6.4778 4.92133 6.88893C5.19603 7.30005 5.58648 7.62048 6.04329 7.8097C6.50011 7.99892 7.00278 8.04843 7.48773 7.95196C7.97268 7.8555 8.41814 7.6174 8.76777 7.26777C9.1174 6.91814 9.3555 6.47268 9.45197 5.98773C9.54843 5.50277 9.49892 5.00011 9.3097 4.54329C9.12048 4.08648 8.80005 3.69603 8.38893 3.42133ZM5.05551 2.58986C5.63108 2.20527 6.30777 2 7 2C7.92826 2 8.8185 2.36875 9.47488 3.02513C10.1313 3.6815 10.5 4.57174 10.5 5.5C10.5 6.19223 10.2947 6.86892 9.91015 7.4445C9.52556 8.02007 8.97894 8.46867 8.33939 8.73358C7.69985 8.99849 6.99612 9.0678 6.31719 8.93275C5.63825 8.7977 5.01461 8.46436 4.52513 7.97487C4.03564 7.48539 3.7023 6.86175 3.56725 6.18282C3.4322 5.50388 3.50152 4.80015 3.76642 4.16061C4.03133 3.52107 4.47993 2.97444 5.05551 2.58986ZM14.85 9.6425L15.7075 10.5C15.8005 10.5927 15.8743 10.7029 15.9245 10.8242C15.9747 10.9456 16.0004 11.0757 16 11.207V16H2V13.5C2.00106 12.5721 2.37015 11.6824 3.0263 11.0263C3.68244 10.3701 4.57207 10.0011 5.5 10H8.5C9.42793 10.0011 10.3176 10.3701 10.9737 11.0263C11.6299 11.6824 11.9989 12.5721 12 13.5V15H15V11.207L14.143 10.35C13.9426 10.4476 13.7229 10.4989 13.5 10.5C13.2033 10.5 12.9133 10.412 12.6666 10.2472C12.42 10.0824 12.2277 9.84811 12.1142 9.57403C12.0006 9.29994 11.9709 8.99834 12.0288 8.70737C12.0867 8.41639 12.2296 8.14912 12.4393 7.93934C12.6491 7.72956 12.9164 7.5867 13.2074 7.52882C13.4983 7.47094 13.7999 7.50065 14.074 7.61418C14.3481 7.72771 14.5824 7.91997 14.7472 8.16665C14.912 8.41332 15 8.70333 15 9C14.9988 9.22271 14.9475 9.44229 14.85 9.6425ZM3.73311 11.7331C3.26444 12.2018 3.00079 12.8372 3 13.5V15H11V13.5C10.9992 12.8372 10.7356 12.2018 10.2669 11.7331C9.79822 11.2644 9.1628 11.0008 8.5 11H5.5C4.8372 11.0008 4.20178 11.2644 3.73311 11.7331Z"
fill="currentColor"
></path>
</svg>
</div>
<span>
Automatic Speech Recognition
</span>
</a>
<a class="
tag
tag-red
"
href="/models?filter=pytorch"
tag-id="pytorch"
>
<svg
alt=""
class="inline-block ml-2 text-sm"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="0.83em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 256 310"
>
<path
d="M218.281 90.106c50.292 50.292 50.292 130.969 0 181.61c-49.244 50.292-130.27 50.292-180.562 0s-50.292-131.318 0-181.61L127.825 0v45.053l-8.382 8.382l-59.721 59.722c-37.72 37.02-37.72 97.79 0 135.509c37.02 37.719 97.79 37.719 135.509 0c37.719-37.02 37.719-97.79 0-135.51l23.05-23.05zm-45.053-5.588c-9.259 0-16.764-7.505-16.764-16.764c0-9.258 7.505-16.764 16.764-16.764c9.258 0 16.764 7.506 16.764 16.764c0 9.259-7.506 16.764-16.764 16.764z"
fill="#EE4C2C"
></path>
</svg>
<span>
PyTorch
</span>
</a>
<a class="
tag
tag-indigo
"
href="/models?filter=dataset:librispeech_asr"
tag-id="dataset:librispeech_asr"
>
<span>
librispeech_asr
</span>
</a>
<a class="
tag
tag-green
"
href="/models?filter=en"
tag-id="en"
>
<span>
en
</span>
</a>
<a class="
tag
tag-purple
"
href="/models?filter=arxiv:2006.11477"
tag-id="arxiv:2006.11477"
>
<span>
arxiv:2006.11477
</span>
</a>
<a class="
tag
tag-blue
"
href="/models?filter=license:apache-2.0"
tag-id="license:apache-2.0"
>
<span>
apache-2.0
</span>
</a>
<a class="
tag
tag-purple
"
href="/models?filter=wav2vec2"
tag-id="wav2vec2"
>
<span>
wav2vec2
</span>
</a>
<a class="
tag
tag-purple
"
href="/models?filter=audio"
tag-id="audio"
>
<span>
audio
</span>
</a>
</div>
<div class="border-b border-gray-100">
<div class="flex items-center justify-between">
<div class="flex items-center h-12 -mb-px overflow-x-auto overflow-y-hidden">
<a
class="tab-alternate "
href="/facebook/wav2vec2-base-960h"
>
<svg
alt=""
class="mr-1.5 text-gray-400"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
class="uim-quaternary"
d="M20.23 7.24L12 12L3.77 7.24a1.98 1.98 0 0 1 .7-.71L11 2.76c.62-.35 1.38-.35 2 0l6.53 3.77c.29.173.531.418.7.71z"
opacity=".25"
fill="currentColor"
></path>
<path
class="uim-tertiary"
d="M12 12v9.5a2.09 2.09 0 0 1-.91-.21L4.5 17.48a2.003 2.003 0 0 1-1-1.73v-7.5a2.06 2.06 0 0 1 .27-1.01L12 12z"
opacity=".5"
fill="currentColor"
></path>
<path
class="uim-primary"
d="M20.5 8.25v7.5a2.003 2.003 0 0 1-1 1.73l-6.62 3.82c-.275.13-.576.198-.88.2V12l8.23-4.76c.175.308.268.656.27 1.01z"
fill="currentColor"
></path>
</svg>
Model card
</a>
<a
class="tab-alternate active"
href="/facebook/wav2vec2-base-960h/tree/main"
>
<svg
alt=""
class="mr-1.5 text-gray-400"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
class="uim-tertiary"
d="M21 19h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0-4h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0-8h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0 4h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2z"
opacity=".5"
fill="currentColor"
></path>
<path
class="uim-primary"
d="M9 19a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v12a1 1 0 0 1-1 1zm-6-4.333a1 1 0 0 1-.64-1.769L3.438 12l-1.078-.898a1 1 0 0 1 1.28-1.538l2 1.667a1 1 0 0 1 0 1.538l-2 1.667a.999.999 0 0 1-.64.231z"
fill="currentColor"
></path>
</svg>
Files and versions
</a>
</div>
<div class="relative hidden space-x-1.5 md:flex">
<div
class="v2-dropdown relative "
>
<button
class="v2-dropdown-button cursor-pointer btn text-sm"
slot="trigger"
type="button"
>
<svg
alt=""
class="mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 32 32"
style="transform: rotate(360deg);"
>
<path
d="M31 16l-7 7l-1.41-1.41L28.17 16l-5.58-5.59L24 9l7 7z"
fill="currentColor"
></path>
<path
d="M1 16l7-7l1.41 1.41L3.83 16l5.58 5.59L8 23l-7-7z"
fill="currentColor"
></path>
<path
d="M12.419 25.484L17.639 6l1.932.518L14.35 26z"
fill="currentColor"
></path>
</svg>
Use in transformers
</button><div
class="v2-dropdown-menu hidden absolute mt-1 min-w-full bg-white rounded-xl overflow-hidden shadow-lg z-10 border border-gray-100 right-0 top-full "
>
<ul class="min-w-full w-auto">
<div class="v2-to-clipboard" style="width: 700px;">
<div class="border-b px-4 py-2 bg-gradient-to-r from-gray-50 to-white border-gray-200 flex justify-between items-center h-11">
<h3 class="font-semibold">
How to use from the
<a target="_blank" href="https://github.com/huggingface/transformers">🤗/transformers</a>
library:
</h3>
<button
class="v2-to-clipboard-button text-sm underline flex items-center cursor-pointer text-gray-500"
>
<svg
alt=""
class="mr-1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 32 32"
>
<path
d="M25.7 9.3l-7-7A.908.908 0 0 0 18 2H8a2.006 2.006 0 0 0-2 2v24a2.006 2.006 0 0 0 2 2h16a2.006 2.006 0 0 0 2-2V10a.908.908 0 0 0-.3-.7zM18 4.4l5.6 5.6H18zM24 28H8V4h8v6a2.006 2.006 0 0 0 2 2h6z"
fill="currentColor"
></path>
</svg>
Copy to clipboard
</button>
</div>
<pre class="v2-to-clipboard-content whitespace-pre-line text-sm p-4 text-gray-700">
from transformers import AutoTokenizer, Wav2Vec2ForCTC
tokenizer = AutoTokenizer.from_pretrained("facebook/wav2vec2-base-960h")
model = Wav2Vec2ForCTC.from_pretrained("facebook/wav2vec2-base-960h")
</pre>
<div class="border-b px-4 py-2 bg-gradient-to-r from-gray-50 to-white border-gray-200 flex justify-between items-center h-11">
<h3 class="font-semibold">
Or just clone the model repo
</h3>
</div>
<pre class="whitespace-pre-line text-sm p-4 text-gray-700">
git lfs install
git clone https://huggingface.co/facebook/wav2vec2-base-960h
<div class="text-gray-500 text-xs">
# if you want to clone without large files – just their pointers
# prepend your git clone with the following env var:
</div>
GIT_LFS_SKIP_SMUDGE=1
</pre>
</div>
</ul>
</div></div>
</div>
</div>
</div>
</div>
</header>
<div
class="container relative space-y-4 flex flex-col md:grid md:gap-6 md:space-y-0 overflow-hidden
md:grid-cols-12
"
>
<section class="pt-8 border-gray-100 col-span-full">
<header class="pb-4 flex items-center justify-between">
<div class="flex items-center">
<div
class="v2-dropdown relative mr-6"
>
<button
class="v2-dropdown-button cursor-pointer btn"
slot="trigger"
type="button"
>
<svg
alt=""
class="mr-1 text-gray-700 dark:text-gray-400"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
style="transform: rotate(360deg);"
>
<path
d="M13 14c-3.36 0-4.46 1.35-4.82 2.24C9.25 16.7 10 17.76 10 19a3 3 0 0 1-3 3a3 3 0 0 1-3-3c0-1.31.83-2.42 2-2.83V7.83A2.99 2.99 0 0 1 4 5a3 3 0 0 1 3-3a3 3 0 0 1 3 3c0 1.31-.83 2.42-2 2.83v5.29c.88-.65 2.16-1.12 4-1.12c2.67 0 3.56-1.34 3.85-2.23A3.006 3.006 0 0 1 14 7a3 3 0 0 1 3-3a3 3 0 0 1 3 3c0 1.34-.88 2.5-2.09 2.86C17.65 11.29 16.68 14 13 14m-6 4a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1M7 4a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m10 2a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1z"
fill="currentColor"
></path>
</svg>
main
<svg
alt=""
class="text-gray-500"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
style="transform: rotate(360deg);"
>
<path d="M7 10l5 5l5-5z" fill="currentColor"></path>
</svg>
</button><div
class="v2-dropdown-menu hidden absolute mt-1 min-w-full bg-white rounded-xl overflow-hidden shadow-lg z-10 border border-gray-100 right-0 top-full "
>
<ul class="min-w-full w-auto">
<li>
<ul>
<li>
<div
class="v2-dropdown-entry flex items-center hover:bg-gray-50 cursor-pointer
hover:underline
"
>
<a
class="px-3 py-1.5"
href="/facebook/wav2vec2-base-960h/blob/main/vocab.json"
>
main
</a>
</div>
</li>
</ul>
</li>
<li>
<ul class="bg-yellow-50">
</ul>
</li>
</ul>
</div></div>
<a class="hover:underline text-gray-800 dark:text-gray-300" href="/facebook/wav2vec2-base-960h/tree/main">
facebook/wav2vec2-base-960h
</a>
<span class="text-gray-300 mx-1 font-light">/</span>
<span class="font-light dark:text-gray-300">vocab.json</span>
</div>
<div class="flex justify-end">
</div>
</header>
<div class="border border-b-0 dark:border-gray-800 px-3 py-2 flex items-baseline rounded-t-lg bg-gradient-to-b from-white to-gray-100 dark:from-gray-800 dark:to-gray-900">
<img
class="w-4 h-4 rounded-full mr-2.5 self-center"
alt="patrickvonplaten's picture"
src="https://aeiljuispo.cloudimg.io/v7/https://s3.amazonaws.com/moonup/production/uploads/1584435275418-5dfcb1aada6d0311fd3d5448.jpeg?w=200&h=200&f=face"
/>
<div class="mr-5 truncate flex-none">
<a class="hover:underline" href="/patrickvonplaten">
patrickvonplaten
</a>
</div>
<a
class="mr-4 font-mono text-sm text-gray-500 dark:text-gray-300 truncate hover:underline"
href="/facebook/wav2vec2-base-960h/commit/0b362f54b7df3d68eef6960d41820e27af20ddc3"
>
upload all files
</a>
<a
class="text-sm border dark:border-gray-800 px-1.5 rounded bg-gray-50 dark:bg-gray-900 hover:underline"
href="/facebook/wav2vec2-base-960h/commit/0b362f54b7df3d68eef6960d41820e27af20ddc3"
>
0b362f5
</a>
<time
datetime="2021-01-30T20:32:17"
class="ml-auto hidden lg:block text-gray-500 dark:text-gray-400 truncate flex-none pl-2"
>
12 days ago
</time>
</div>
<div class="flex items-center p-3 border dark:border-gray-800 text-sm text-gray-700 dark:bg-gray-900">
<a class="flex items-center hover:underline mr-4" href="/facebook/wav2vec2-base-960h/raw/main/vocab.json">
<svg
alt=""
class="mr-1.5 "
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 32 32"
style="transform: rotate(360deg);"
>
<path
d="M31 16l-7 7l-1.41-1.41L28.17 16l-5.58-5.59L24 9l7 7z"
fill="currentColor"
></path>
<path
d="M1 16l7-7l1.41 1.41L3.83 16l5.58 5.59L8 23l-7-7z"
fill="currentColor"
></path>
<path
d="M12.419 25.484L17.639 6l1.932.518L14.35 26z"
fill="currentColor"
></path>
</svg>
raw
</a>
<a class="flex items-center hover:underline mr-4" href="/facebook/wav2vec2-base-960h/commits/main/vocab.json">
<svg
alt=""
class="mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 32 32"
style="transform: rotate(360deg);"
>
<path
d="M16 4C9.383 4 4 9.383 4 16s5.383 12 12 12s12-5.383 12-12S22.617 4 16 4zm0 2c5.535 0 10 4.465 10 10s-4.465 10-10 10S6 21.535 6 16S10.465 6 16 6zm-1 2v9h7v-2h-5V8z"
fill="currentColor"
></path>
</svg>
history
</a>
<a class="flex items-center hover:underline mr-4" href="/facebook/wav2vec2-base-960h/blame/main/vocab.json">
<svg
alt=""
class="mr-1.5"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
role="img"
class=""
width="1em"
height="1em"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 32 32"
style="transform: rotate(360deg);"
>
<path
d="M16 2a14 14 0 1 0 14 14A14 14 0 0 0 16 2zm0 26a12 12 0 1 1 12-12a12 12 0 0 1-12 12z"
fill="currentColor"
></path>
<path
d="M11.5 11a2.5 2.5 0 1 0 2.5 2.5a2.48 2.48 0 0 0-2.5-2.5z"
fill="currentColor"
></path>
<path
d="M20.5 11a2.5 2.5 0 1 0 2.5 2.5a2.48 2.48 0 0 0-2.5-2.5z"
fill="currentColor"
></path>
</svg>
blame
</a>
<div class="ml-auto dark:text-gray-300">
291 Bytes
</div>
</div>
<div class="border border-t-0 rounded-b-lg dark:bg-gray-900 dark:border-gray-800 overflow-x-auto">
<table>
<tr>
<td class="align-top text-right select-none">
<pre class="p-3 text-sm overflow-x-auto">1</pre>
</td>
<td class="align-top w-full">
<pre class="p-3 text-sm overflow-x-auto">{<span class="hljs-attr">"<pad>"</span>: <span class="hljs-number">0</span>, <span class="hljs-attr">"<s>"</span>: <span class="hljs-number">1</span>, <span class="hljs-attr">"</s>"</span>: <span class="hljs-number">2</span>, <span class="hljs-attr">"<unk>"</span>: <span class="hljs-number">3</span>, <span class="hljs-attr">"|"</span>: <span class="hljs-number">4</span>, <span class="hljs-attr">"E"</span>: <span class="hljs-number">5</span>, <span class="hljs-attr">"T"</span>: <span class="hljs-number">6</span>, <span class="hljs-attr">"A"</span>: <span class="hljs-number">7</span>, <span class="hljs-attr">"O"</span>: <span class="hljs-number">8</span>, <span class="hljs-attr">"N"</span>: <span class="hljs-number">9</span>, <span class="hljs-attr">"I"</span>: <span class="hljs-number">10</span>, <span class="hljs-attr">"H"</span>: <span class="hljs-number">11</span>, <span class="hljs-attr">"S"</span>: <span class="hljs-number">12</span>, <span class="hljs-attr">"R"</span>: <span class="hljs-number">13</span>, <span class="hljs-attr">"D"</span>: <span class="hljs-number">14</span>, <span class="hljs-attr">"L"</span>: <span class="hljs-number">15</span>, <span class="hljs-attr">"U"</span>: <span class="hljs-number">16</span>, <span class="hljs-attr">"M"</span>: <span class="hljs-number">17</span>, <span class="hljs-attr">"W"</span>: <span class="hljs-number">18</span>, <span class="hljs-attr">"C"</span>: <span class="hljs-number">19</span>, <span class="hljs-attr">"F"</span>: <span class="hljs-number">20</span>, <span class="hljs-attr">"G"</span>: <span class="hljs-number">21</span>, <span class="hljs-attr">"Y"</span>: <span class="hljs-number">22</span>, <span class="hljs-attr">"P"</span>: <span class="hljs-number">23</span>, <span class="hljs-attr">"B"</span>: <span class="hljs-number">24</span>, <span class="hljs-attr">"V"</span>: <span class="hljs-number">25</span>, <span class="hljs-attr">"K"</span>: <span class="hljs-number">26</span>, <span class="hljs-attr">"'"</span>: <span class="hljs-number">27</span>, <span class="hljs-attr">"X"</span>: <span class="hljs-number">28</span>, <span class="hljs-attr">"J"</span>: <span class="hljs-number">29</span>, <span class="hljs-attr">"Q"</span>: <span class="hljs-number">30</span>, <span class="hljs-attr">"Z"</span>: <span class="hljs-number">31</span>}</pre>
</td>
</tr>
</table>
</div>
</section>
</div>
</main>
<script defer src="/front/build/bundle.d794683.js"></script>
<script>
if (! (
['localhost', 'huggingface.test'].includes(window.location.hostname)
|| window.location.hostname.includes('ngrok.io')
)) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ganalytics');
ganalytics('create', 'UA-83738774-2', 'auto');
ganalytics('send', 'pageview');
}
</script>
</body>
</html>
|