Automatic Speech Recognition
MLX
Safetensors
PyTorch
English
quantized
speech-recognition
cache-aware ASR
streaming-asr
speech
audio
FastConformer
RNNT
Parakeet
ASR
NeMo
Instructions to use animaslabs/nemotron-speech-streaming-en-0.6b-mlx-8bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use animaslabs/nemotron-speech-streaming-en-0.6b-mlx-8bit with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir nemotron-speech-streaming-en-0.6b-mlx-8bit animaslabs/nemotron-speech-streaming-en-0.6b-mlx-8bit
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
File size: 9,961 Bytes
2c7fb74 | 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 | <unk> 0
▁t -0
▁th -1
▁a -2
in -3
▁the -4
re -5
▁w -6
▁o -7
▁s -8
er -9
at -10
ou -11
nd -12
it -13
is -14
▁h -15
▁b -16
on -17
▁c -18
ing -19
en -20
▁to -21
▁m -22
▁f -23
▁p -24
or -25
an -26
es -27
▁of -28
▁d -29
ed -30
ll -31
▁and -32
▁I -33
▁in -34
▁l -35
ar -36
▁y -37
▁g -38
as -39
▁you -40
om -41
▁n -42
ic -43
ve -44
al -45
ion -46
us -47
▁be -48
ow -49
le -50
▁wh -51
▁e -52
ot -53
ut -54
▁it -55
▁is -56
▁we -57
▁T -58
▁re -59
et -60
▁A -61
ent -62
▁on -63
▁ha -64
ay -65
▁S -66
ct -67
▁Th -68
ver -69
id -70
ig -71
im -72
ro -73
▁for -74
ly -75
▁he -76
ke -77
ld -78
se -79
st -80
ch -81
▁st -82
all -83
ce -84
ur -85
ith -86
am -87
if -88
ir -89
▁go -90
▁u -91
▁as -92
▁was -93
ad -94
▁W -95
▁k -96
▁an -97
ht -98
th -99
▁r -100
▁are -101
ere -102
▁se -103
▁do -104
▁B -105
▁so -106
▁sh -107
▁not -108
▁li -109
od -110
▁C -111
ust -112
ill -113
ight -114
ally -115
▁And -116
ter -117
▁or -118
▁me -119
▁M -120
ome -121
op -122
▁at -123
il -124
▁The -125
ould -126
▁j -127
ant -128
▁So -129
▁H -130
ol -131
ain -132
▁can -133
▁de -134
▁ne -135
ore -136
▁con -137
▁kn -138
ck -139
ul -140
▁fr -141
▁ab -142
ers -143
ess -144
ge -145
▁pro -146
pe -147
ate -148
▁su -149
▁com -150
▁but -151
▁all -152
est -153
qu -154
▁ex -155
▁al -156
ra -157
▁O -158
out -159
use -160
very -161
pp -162
▁Y -163
▁ch -164
ri -165
ist -166
▁v -167
▁lo -168
ment -169
art -170
▁P -171
nt -172
ab -173
▁one -174
▁N -175
ive -176
▁wor -177
ions -178
ort -179
▁L -180
▁by -181
ich -182
▁my -183
ity -184
ok -185
▁G -186
res -187
▁up -188
un -189
um -190
ea -191
ind -192
and -193
ink -194
el -195
▁D -196
em -197
▁E -198
os -199
oug -200
▁if -201
ca -202
▁out -203
▁int -204
ie -205
▁F -206
▁It -207
▁his -208
ard -209
▁had -210
▁tr -211
her -212
our -213
ies -214
ake -215
▁R -216
▁We -217
▁get -218
▁don -219
▁us -220
ak -221
▁pl -222
ect -223
ure -224
ame -225
ast -226
▁who -227
ack -228
▁le -229
▁sa -230
iv -231
ci -232
ide -233
▁tim -234
▁our -235
ound -236
ous -237
▁co -238
▁pe -239
ose -240
ud -241
▁see -242
ough -243
▁man -244
▁qu -245
▁You -246
so -247
ople -248
▁Wh -249
ong -250
ap -251
ther -252
▁J -253
are -254
ine -255
▁say -256
▁im -257
▁But -258
ings -259
▁has -260
▁ag -261
ff -262
▁her -263
itt -264
one -265
▁en -266
▁ar -267
▁fe -268
ven -269
▁any -270
▁mo -271
reat -272
ag -273
▁how -274
▁cl -275
pt -276
▁now -277
own -278
ber -279
▁him -280
▁act -281
hing -282
ice -283
▁no -284
ans -285
iz -286
▁fa -287
per -288
pl -289
▁te -290
▁ad -291
age -292
ree -293
▁tw -294
ank -295
▁He -296
ple -297
ite -298
ry -299
▁U -300
ish -301
ire -302
ue -303
▁In -304
▁she -305
ble -306
cc -307
nder -308
▁way -309
▁pr -310
ear -311
▁did -312
▁po -313
eah -314
▁un -315
omet -316
ence -317
ep -318
uch -319
▁sp -320
ach -321
og -322
ance -323
able -324
iff -325
sel -326
▁got -327
way -328
▁gr -329
alk -330
▁res -331
ated -332
irst -333
ick -334
ass -335
▁two -336
▁dis -337
ord -338
▁pre -339
ount -340
ase -341
ip -342
ult -343
ical -344
orm -345
ary -346
ace -347
▁spe -348
▁Ch -349
▁thr -350
▁imp -351
int -352
▁am -353
▁off -354
act -355
ia -356
▁ro -357
ress -358
▁per -359
▁fo -360
▁br -361
▁K -362
vel -363
▁gu -364
▁bo -365
ang -366
kay -367
ub -368
ign -369
▁may -370
ving -371
ces -372
ens -373
cl -374
▁lot -375
ru -376
ade -377
▁bet -378
▁bl -379
▁let -380
fore -381
co -382
ild -383
ning -384
xt -385
ile -386
ark -387
self -388
▁app -389
ory -390
du -391
▁day -392
▁St -393
ater -394
▁use -395
ys -396
fter -397
▁new -398
ious -399
ial -400
he -401
wn -402
ved -403
red -404
▁fl -405
iss -406
ody -407
form -408
ian -409
tain -410
▁bu -411
▁V -412
▁rec -413
ty -414
be -415
▁sc -416
ors -417
vers -418
▁put -419
ife -420
▁If -421
we -422
te -423
ject -424
ath -425
ting -426
▁rem -427
▁acc -428
ull -429
ons -430
▁ind -431
▁ser -432
▁ke -433
ates -434
ves -435
na -436
lic -437
▁des -438
▁its -439
ful -440
ents -441
erm -442
ac -443
ered -444
ise -445
▁sy -446
urn -447
▁em -448
oth -449
ual -450
ne -451
ward -452
ib -453
▁try -454
▁pos -455
nds -456
ft -457
get -458
ph -459
▁ob -460
ady -461
igh -462
ood -463
▁rel -464
▁wr -465
ug -466
ears -467
ail -468
▁Now -469
▁bit -470
ng -471
▁Oh -472
▁hel -473
ange -474
▁reg -475
▁rep -476
▁bel -477
▁sm -478
ost -479
tern -480
gr -481
▁own -482
▁end -483
pect -484
ily -485
day -486
ied -487
ific -488
ower -489
▁add -490
cess -491
ict -492
ible -493
▁bas -494
▁i -495
▁op -496
cial -497
ular -498
▁Be -499
ced -500
▁too -501
ks -502
ew -503
mer -504
▁ph -505
ob -506
== -507
▁la -508
▁set -509
▁min -510
▁sub -511
▁gen -512
atch -513
.. -514
▁inv -515
▁As -516
▁nat -517
▁sl -518
▁num -519
av -520
ways -521
▁God -522
stem -523
▁ac -524
▁att -525
▁ev -526
▁def -527
llow -528
▁str -529
lect -530
ars -531
▁cr -532
▁Is -533
olog -534
les -535
oy -536
▁ask -537
▁inc -538
body -539
▁ent -540
▁pol -541
ness -542
ix -543
▁why -544
onna -545
▁ear -546
▁tak -547
▁Un -548
ited -549
mun -550
li -551
ute -552
ract -553
▁dec -554
uro -555
▁mak -556
▁fin -557
ween -558
▁No -559
arch -560
▁bec -561
gan -562
old -563
cy -564
▁big -565
▁For -566
ren -567
als -568
und -569
▁Al -570
▁All -571
ss -572
ows -573
▁mod -574
ock -575
▁id -576
ism -577
cus -578
▁gl -579
ably -580
▁ass -581
▁car -582
ata -583
ppen -584
led -585
▁sim -586
▁mon -587
ics -588
▁giv -589
cept -590
▁Mr -591
pan -592
▁pub -593
▁eff -594
▁How -595
ps -596
vern -597
end -598
hip -599
iew -600
ope -601
▁An -602
▁She -603
▁Com -604
ee -605
ures -606
ell -607
ouse -608
cond -609
king -610
oc -611
ues -612
ever -613
▁To -614
clud -615
▁ins -616
▁exp -617
▁old -618
▁mem -619
▁ref -620
▁tra -621
▁far -622
ave -623
rat -624
▁sur -625
ruct -626
rib -627
duct -628
uff -629
▁met -630
▁sch -631
ince -632
▁run -633
ense -634
▁cle -635
▁== -636
mon -637
ize -638
▁ord -639
blem -640
tin -641
▁Let -642
ner -643
ond -644
its -645
▁cor -646
land -647
▁cur -648
▁Re -649
▁bus -650
▁uh -651
air -652
ote -653
ants -654
ason -655
ric -656
▁el -657
▁cer -658
nce -659
▁fam -660
▁cap -661
uck -662
ool -663
ried -664
▁cou -665
▁fun -666
▁wom -667
▁hum -668
▁ty -669
▁ap -670
ike -671
▁few -672
oney -673
▁inf -674
ont -675
ese -676
ook -677
gy -678
uth -679
ulat -680
ieve -681
ized -682
ross -683
▁ple -684
▁um -685
▁val -686
▁equ -687
▁lea -688
▁lar -689
ah -690
eral -691
▁ed -692
ared -693
lish -694
arn -695
ds -696
esn -697
▁iss -698
▁ca -699
ted -700
ices -701
▁wee -702
ash -703
▁top -704
ten -705
up -706
ts -707
gin -708
con -709
ari -710
▁opp -711
osed -712
▁eas -713
▁ext -714
gg -715
az -716
▁Fr -717
ideo -718
izat -719
▁men -720
▁mom -721
▁ret -722
tty -723
rist -724
▁gra -725
alth -726
ef -727
▁det -728
ax -729
▁mat -730
chn -731
ern -732
peri -733
▁bre -734
▁Sh -735
sw -736
erat -737
▁sit -738
ters -739
ale -740
man -741
▁sol -742
ork -743
▁adv -744
ety -745
▁vis -746
▁med -747
uc -748
less -749
▁unt -750
gram -751
ets -752
ists -753
▁ey -754
▁col -755
imes -756
▁law -757
▁pri -758
sid -759
▁On -760
▁mot -761
ield -762
▁Do -763
▁At -764
ages -765
amp -766
▁art -767
miss -768
▁sk -769
alf -770
pr -771
ier -772
▁beh -773
▁Yes -774
ural -775
ime -776
▁wa -777
oks -778
bers -779
ger -780
ient -781
ries -782
... -783
▁che -784
▁Br -785
ird -786
▁Ar -787
▁war -788
inat -789
▁My -790
ital -791
wh -792
med -793
▁pur -794
ully -795
▁One -796
▁rat -797
ines -798
▁Of -799
io -800
▁loc -801
ret -802
ctor -803
▁leg -804
stit -805
ined -806
ught -807
▁dur -808
▁es -809
vent -810
aj -811
▁bro -812
▁saw -813
▁sec -814
ream -815
▁pop -816
reen -817
▁Ind -818
els -819
▁yet -820
ired -821
▁sw -822
tro -823
oup -824
most -825
pean -826
eds -827
ush -828
oh -829
▁Se -830
▁tea -831
ann -832
ilit -833
err -834
pend -835
ton -836
ased -837
▁aff -838
▁mor -839
▁dra -840
put -841
▁dr -842
ins -843
uat -844
nect -845
cri -846
outh -847
▁ra -848
▁pay -849
ms -850
▁av -851
bs -852
ling -853
▁De -854
▁Or -855
ove -856
▁Can -857
▁eng -858
ames -859
ided -860
▁Go -861
mitt -862
ode -863
▁cre -864
par -865
ides -866
pos -867
▁fav -868
▁air -869
▁New -870
▁bad -871
▁six -872
vat -873
▁pat -874
not -875
▁di -876
rop -877
ral -878
orn -879
▁par -880
cing -881
▁aw -882
orts -883
ox -884
▁yes -885
cuss -886
eng -887
ives -888
erms -889
▁job -890
mand -891
ying -892
▁occ -893
aps -894
ases -895
▁Not -896
rent -897
ency -898
att -899
ised -900
vice -901
▁Eng -902
▁est -903
oked -904
▁Q -905
iron -906
idd -907
me -908
unch -909
ane -910
▁z -911
br -912
arts -913
▁fat -914
ery -915
anks -916
▁jo -917
▁mar -918
aw -919
ott -920
ards -921
▁oh -922
ians -923
▁sci -924
row -925
unt -926
ury -927
▁abs -928
ergy -929
▁Z -930
ump -931
▁Am -932
ened -933
angu -934
▁Pro -935
icat -936
itch -937
▁dri -938
iat -939
▁ -940
e -941
t -942
o -943
a -944
n -945
i -946
s -947
r -948
h -949
l -950
d -951
u -952
c -953
m -954
y -955
g -956
w -957
f -958
p -959
, -960
. -961
b -962
v -963
k -964
' -965
I -966
T -967
A -968
S -969
x -970
W -971
j -972
C -973
B -974
M -975
? -976
H -977
O -978
0 -979
P -980
q -981
Y -982
N -983
L -984
D -985
1 -986
E -987
G -988
z -989
F -990
R -991
- -992
2 -993
J -994
U -995
9 -996
K -997
5 -998
3 -999
V -1000
= -1001
4 -1002
8 -1003
6 -1004
7 -1005
! -1006
% -1007
: -1008
Q -1009
Z -1010
$ -1011
X -1012
" -1013
& -1014
* -1015
/ -1016
£ -1017
+ -1018
€ -1019
_ -1020
^ -1021
¥ -1022
|