-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
2930 lines (2754 loc) · 241 KB
/
index.html
File metadata and controls
2930 lines (2754 loc) · 241 KB
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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<title>Xiaomi MiMo-Audio Blog</title>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="Webflow" name="generator" />
<link href="webflow.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous" />
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<!-- Markdown rendering library -->
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script type="text/javascript">
WebFont.load({
google: {
families: ["Inter:100,200,300,regular,500,600,700,800,900", "Lora:regular,500,600,700,italic,500italic,600italic,700italic"]
}
});
</script>
<script type="text/javascript">
!function(o, c) {
var n = c.documentElement, t = " w-mod-";
n.className += t + "js",
("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch")
}(window, document);
</script>
<link href="assets/logo/mimo.png" rel="shortcut icon" type="image/x-icon" />
<link href="assets/logo/mimo.png" rel="apple-touch-icon" />
<meta name="robots" content="noindex">
<script type="text/javascript">
window.__WEBFLOW_CURRENCY_SETTINGS = {
"currencyCode": "USD",
"symbol": "$",
"decimal": ".",
"fractionDigits": 2,
"group": ",",
"template": "{{wf {\"path\":\"symbol\",\"type\":\"PlainText\"} }} {{wf {\"path\":\"amount\",\"type\":\"CommercePrice\"} }} {{wf {\"path\":\"currencyCode\",\"type\":\"PlainText\"} }}",
"hideDecimalForWholeNumbers": false
};
</script>
<style>
.blog-demo-container {
margin: 24px 0 16px 0;
padding: 20px;
background-color: #fafafa;
border-radius: 12px;
border: 1px solid #e0e0e0;
}
.demo-controls {
display: flex;
gap: 12px;
margin-bottom: 8px;
flex-wrap: wrap;
}
.demo-button {
padding: 8px 16px;
background-color: #f0f0f0;
color: #666;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
transition: all 0.2s;
}
.demo-button:hover {
background-color: #e0e0e0;
}
.demo-button.active {
background-color: var(--black);
color: var(--white);
}
.demo-content {
display: none;
padding: 16px 0;
}
.demo-content.active {
display: block;
}
.audio-player {
width: 100%;
margin: 8px 0;
}
.demo-text {
margin: 8px 0;
padding: 12px;
background-color: #f0f0f0;
border-radius: 8px;
font-size: 16px;
line-height: 1.5;
}
.demo-title {
font-weight: 600;
margin-bottom: 8px;
color: var(--black);
}
.thinking-content {
background-color: #fff3cd;
border-left: 4px solid #ffc107;
padding: 12px;
margin: 8px 0;
border-radius: 0 8px 8px 0;
font-size: 14px;
line-height: 1.4;
}
.video-container {
margin: 16px 0;
text-align: center;
}
.video-container video {
max-width: 100%;
border-radius: 8px;
}
.image-container {
margin: 24px 0;
text-align: center;
}
.image-container img {
max-width: 100%;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.button-group {
display: flex;
gap: 12px;
margin: 24px 0;
flex-wrap: wrap;
}
.blog-button {
padding: 12px 24px;
background-color: var(--accent);
color: var(--black);
text-decoration: none;
border-radius: 8px;
font-weight: 500;
transition: opacity 0.2s;
}
.blog-button:hover {
opacity: 0.8;
}
.youtube-container {
margin: 16px 0;
text-align: center;
}
.youtube-container iframe {
border-radius: 8px;
}
.audio-pair {
display: flex;
gap: 20px;
margin: 16px 0;
align-items: flex-start;
}
.audio-item {
flex: 1;
}
.audio-item .demo-text {
margin-bottom: 8px;
font-weight: 500;
}
.hero-links {
margin-top: 20px;
text-align: center;
}
.hero-link {
color: var(--black);
text-decoration: none;
font-size: 16px;
font-weight: 500;
transition: opacity 0.2s;
}
.hero-link:hover {
opacity: 0.7;
text-decoration: underline;
}
.link-separator {
margin: 0 15px;
color: #666;
}
/* Increase body text font size */
.join-us-body-text {
font-size: 22px !important;
line-height: 1.6;
}
/* Remove image shadows */
.image-container img {
box-shadow: none !important;
}
/* Increase horizontal padding for content blocks */
.card-template-details {
padding-left: 48px !important;
padding-right: 48px !important;
}
/* Increase top margin for block titles */
.template-h2 {
margin-top: 16px !important;
}
/* Chinese font styling - more specific targeting */
.dialogue-content[lang="zh-CN"],
.dialogue-content[lang="zh-CN"] *,
.scrollable-response[lang="zh-CN"],
.scrollable-response[lang="zh-CN"] *,
.markdown-content[lang="zh-CN"],
.markdown-content[lang="zh-CN"] * {
font-family: "Noto Serif SC", var(--font--body), sans-serif !important;
}
.chinese-text,
.chinese-text * {
font-family: "Noto Serif SC", var(--font--body), sans-serif !important;
}
/* Audio understanding dialogue styles */
.dialogue-container {
margin: 20px 0;
}
.dialogue-item {
display: flex;
margin: 20px 0;
gap: 16px;
align-items: baseline;
}
.dialogue-speaker {
min-width: 100px;
font-weight: 500;
font-size: 16px;
color: var(--black);
flex-shrink: 0;
text-align: right;
line-height: 1.6;
}
.dialogue-content {
flex: 1;
padding-left: 10px;
line-height: 2.4;
font-size: 16px;
}
.compact-audio {
width: 280px;
margin: 0;
display: block;
}
.thinking-section {
border-left: 2px solid #ddd;
padding: 2px 16px;
margin: 12px 0;
font-size: 15px;
line-height: 1.5;
color: #666;
}
.thinking-title {
font-weight: 500;
color: #888;
margin-bottom: 6px;
font-style: normal;
font-size: 14px;
}
/* Video grid layout */
.video-grid {
display: flex;
gap: 24px;
justify-content: center;
margin: 20px 0;
}
.video-item {
flex: 1;
text-align: center;
max-width: 600px;
}
.video-item video {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Speech continuation grid layout */
.speech-grid {
margin: 0px 0 0px 0;
}
.speech-header {
display: grid;
grid-template-columns: 80px 1fr 1fr;
gap: 20px;
padding: 20px;
background-color: #eee;
border-radius: 12px 12px 0 0;
border: 1px solid #ddd;
margin-bottom: 0;
}
.speech-header-title {
font-size: 16px;
font-weight: 700;
text-align: center;
color: var(--black);
}
.speech-row {
display: grid;
grid-template-columns: 80px 1fr 1fr;
gap: 20px;
padding: 10px;
background-color: var(--white);
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
align-items: center;
}
.speech-row:last-child {
border-radius: 0 0 12px 12px;
}
.case-number {
font-weight: 600;
font-size: 16px;
text-align: center;
color: var(--black);
}
.audio-cell {
display: flex;
justify-content: center;
align-items: center;
}
.audio-cell audio {
width: 100%;
max-width: 320px;
}
/* ICL speech grid extensions */
.speech-grid.icl-scrollable {
max-height: 400px;
overflow-y: auto;
border-radius: 12px;
background: #fafafa;
}
.speech-grid.icl-scrollable::-webkit-scrollbar {
width: 8px;
}
.speech-grid.icl-scrollable::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
.speech-grid.icl-scrollable::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 4px;
}
.speech-grid.icl-scrollable::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
/* ICL header with 5 columns */
.speech-header.icl-5col {
grid-template-columns: 80px 1fr 1fr 1fr 1fr;
gap: 15px;
font-size: 14px;
position: sticky;
top: 0;
z-index: 10;
color: white;
}
/* ICL row with 5 columns */
.speech-row.icl-5col {
grid-template-columns: 80px 1fr 1fr 1fr 1fr;
gap: 15px;
border-radius: 0;
}
.speech-row.icl-5col:last-child {
border-radius: 0 0 12px 12px;
}
/* YouTube showcase styles */
.youtube-showcase {
margin: 24px 0;
}
.youtube-container {
position: relative;
width: 100%;
margin: 16px 0;
}
.youtube-controls {
display: flex;
gap: 12px;
margin-bottom: 16px;
flex-wrap: wrap;
}
.youtube-button {
padding: 8px 16px;
background-color: #f0f0f0;
color: #666;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
transition: all 0.2s;
}
.youtube-button:hover {
background-color: #e0e0e0;
}
.youtube-button.active {
background-color: var(--black);
color: var(--white);
}
.youtube-content {
display: none;
text-align: center;
}
.youtube-content.active {
display: block;
}
.youtube-iframe {
width: 100%;
aspect-ratio: 16 / 9;
border-radius: 12px;
border: none;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.youtube-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
color: var(--black);
}
.youtube-description {
font-size: 14px;
color: #666;
margin-top: 12px;
line-height: 1.5;
}
.example-container {
background-color: #fafafa;
border-radius: 12px;
border: 1px solid #e0e0e0;
padding: 24px;
margin: 24px 0;
}
/* ICL Table styles */
.icl-container {
margin: 24px 0;
}
.icl-controls {
display: flex;
gap: 12px;
margin-bottom: 16px;
flex-wrap: nowrap;
overflow-x: auto;
padding-bottom: 8px;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE and Edge */
}
.icl-controls::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
}
.icl-controls::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 3px;
}
.icl-controls::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 3px;
}
.icl-controls::-webkit-scrollbar-thumb:hover {
background: #999;
}
.icl-button {
padding: 8px 16px;
background-color: #f0f0f0;
color: #666;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
transition: all 0.2s;
white-space: nowrap;
flex-shrink: 0;
}
.icl-button:hover {
background-color: #e0e0e0;
}
.icl-button.active {
background-color: var(--black);
color: var(--white);
}
.icl-content {
display: none;
}
.icl-content.active {
display: block;
}
.icl-table {
width: 100%;
border-collapse: collapse;
margin: 16px 0;
background-color: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
table-layout: fixed;
}
.icl-table th {
background-color: #f8f9fa;
padding: 16px 12px;
text-align: left;
font-weight: 600;
font-size: 14px;
color: var(--black);
border-bottom: 2px solid #e0e0e0;
}
.icl-table th:first-child {
width: 8%;
}
.icl-table th:not(:first-child) {
width: 23%;
}
.icl-table td {
padding: 16px 12px;
border-bottom: 1px solid #f0f0f0;
vertical-align: middle;
text-align: center;
}
.icl-table tr:last-child td {
border-bottom: none;
}
.icl-table tr:hover {
background-color: #fafafa;
}
.icl-table audio {
width: 100%;
max-width: 200px;
height: 32px;
margin: 0 auto;
display: block;
}
.icl-case-number {
font-weight: 600;
font-size: 14px;
color: var(--black);
min-width: 60px;
}
.icl-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
color: var(--black);
text-align: center;
}
/* Scrollable response styles */
.scrollable-response {
max-height: 400px;
overflow-y: auto;
padding-right: 8px;
}
.scrollable-response::-webkit-scrollbar {
width: 6px;
}
.scrollable-response::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 3px;
}
.scrollable-response::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 3px;
}
.scrollable-response::-webkit-scrollbar-thumb:hover {
background: #999;
}
/* Enhanced markdown rendering styles */
.markdown-content {
line-height: 1.6;
font-size: 16px !important; /* 强制统一字体大小 */
}
.markdown-content * {
font-size: inherit !important; /* 确保所有子元素继承相同字体大小 */
}
.markdown-content h1, .markdown-content h2, .markdown-content h3,
.markdown-content h4, .markdown-content h5, .markdown-content h6 {
color: var(--black);
font-weight: 600;
margin: 16px 0 8px 0;
line-height: 1.3;
font-size: inherit; /* 使用继承的字体大小,保持一致 */
}
.markdown-content p {
margin: 8px 0;
text-align: justify;
}
.markdown-content ul, .markdown-content ol {
margin: 8px 0;
padding-left: 24px;
}
.markdown-content li {
margin: 4px 0;
line-height: 1.5;
}
.markdown-content strong {
font-weight: 600;
color: var(--black);
}
.markdown-content em {
font-style: italic;
color: #555;
}
.markdown-content code {
background-color: #f5f5f5;
padding: 2px 4px;
border-radius: 3px;
font-family: 'Courier New', monospace;
font-size: 0.9em;
}
.markdown-content blockquote {
border-left: 4px solid #ddd;
margin: 12px 0;
padding: 8px 16px;
background-color: #f9f9f9;
border-radius: 0 4px 4px 0;
font-style: italic;
}
.thinking-content .markdown-content {
color: #666;
}
.thinking-content .markdown-content strong {
color: #555;
font-weight: 500;
}
.thinking-content .markdown-content h1,
.thinking-content .markdown-content h2,
.thinking-content .markdown-content h3,
.thinking-content .markdown-content h4 {
color: #555;
font-weight: 500;
font-size: inherit; /* 保持一致的字体大小 */
}
/* Responsive design for mobile */
@media (max-width: 768px) {
.speech-header, .speech-row {
grid-template-columns: 60px 1fr 1fr;
gap: 10px;
padding: 15px;
}
.speech-header-title {
font-size: 16px;
}
.case-number {
font-size: 16px;
}
.audio-cell audio {
max-width: 100%;
}
/* ICL responsive styles */
.speech-header.icl-5col, .speech-row.icl-5col {
grid-template-columns: 60px 1fr 1fr;
gap: 8px;
padding: 12px;
}
.speech-header.icl-5col {
font-size: 12px;
}
.speech-grid.icl-scrollable {
max-height: 300px;
}
.video-grid {
flex-direction: column;
gap: 16px;
}
.video-item {
max-width: 100%;
}
.card-template-details {
padding-left: 24px !important;
padding-right: 24px !important;
}
.dialogue-item {
flex-direction: column;
gap: 6px;
}
.dialogue-speaker {
min-width: auto;
margin-bottom: 4px;
text-align: left;
}
.compact-audio {
width: 100%;
max-width: 300px;
}
.youtube-iframe {
/* aspect-ratio is already set in the main rule */
}
.youtube-controls {
gap: 8px;
}
.youtube-button {
font-size: 12px;
padding: 6px 12px;
}
.icl-controls {
gap: 8px;
}
.icl-button {
font-size: 12px;
padding: 6px 12px;
}
.icl-table {
font-size: 12px;
}
.icl-table th,
.icl-table td {
padding: 8px 6px;
}
.icl-table audio {
max-width: 120px;
height: 28px;
}
}
</style>
</head>
<body>
<div class="section template-hero">
<div class="main-container w-container">
<div class="template-hero-title-wrap">
<h1 class="template-hero-title">Introducing Xiaomi MiMo-Audio</h1>
<div class="hero-links">
<a href="https://huggingface.co/spaces/XiaomiMiMo/mimo_audio_chat" class="hero-link" target="_blank">DEMO</a>
<span class="link-separator">|</span>
<a href="https://github.com/XiaomiMiMo/MiMo-Audio/blob/main/MiMo-Audio-Technical-Report.pdf" class="hero-link" target="_blank">PAPER</a>
<span class="link-separator">|</span>
<a href="https://github.com/XiaomiMiMo/MiMo-Audio" class="hero-link" target="_blank">GITHUB</a>
<span class="link-separator">|</span>
<a href=" https://huggingface.co/collections/XiaomiMiMo/mimo-audio-68cc7202692c27dae881cce0" class="hero-link" target="_blank">HUGGING FACE</a>
</div>
</div>
</div>
</div>
<div class="section template-details">
<div class="main-container w-container">
<div class="columns-template-details w-row">
<div class="right-column-template-details w-col w-col-12">
<!-- Introduction -->
<div class="card-template-details">
<h3 class="template-h2">Introduction</h3><br>
<p class="join-us-body-text">🚀🚀🚀 Introducing <b>Xiaomi-MiMo-Audio</b> — A BREAKTHROUGH in general-purpose audio intelligence!
We scaled pretraining to <b>100M+ hours</b> and observed true EMERGENCE: few-shot generalization across diverse audio tasks!
</p>
<p class="join-us-body-text"><b>🔥 MiMo-Audio-7B-Instruct supercharged with thinking mechanisms + instruction tuning:</b><br>
✅ Open-source 7B SOTA on MMSU, MMAU, MMAR, MMAU-Pro</b><br>
✅ Outperforms Gemini-2.5-Flash on audio understanding (MMAU)</b><br>
✅ Beats GPT-4o-Audio on complex reasoning (Big-Bench-Audio-S2T)</b><br>
It’s all OPEN — tokenizer, model, evaluation, and future audacity! </p>
<!-- <p class="join-us-body-text">Existing audio language models typically rely on task-specific fine-tuning to accomplish particular audio tasks. In contrast, humans are able to generalize to new audio tasks with only a few examples or simple instructions. GPT-3 has shown that scaling next-token prediction pretraining enables strong generalization capabilities in text, and we believe this paradigm is equally applicable to the audio domain.</p> -->
<p class="join-us-body-text">Model checkpoints and full evaluation suite are available at <b><a href="https://github.com/XiaomiMiMo/MiMo-Audio" target="_blank">https://github.com/XiaomiMiMo/MiMo-Audio</a></b>.</p>
<!-- <p class="join-us-body-text">Existing audio language models typically rely on task-specific fine-tuning to accomplish particular audio tasks. In contrast, humans are able to generalize to new audio tasks with only a few examples or simple instructions. GPT-3 has shown that scaling next-token prediction pretraining enables strong generalization capabilities in text, and we believe this paradigm is equally applicable to the audio domain.</p>
<br>
<p class="join-us-body-text">By designing a lossless speech architecture and scaling training to hundreds of millions of hours (10× more than open-source models), we observe emergent few-shot learning. Through in-context evaluation, MiMo-Audio shows strong knowledge and alignment in speech, achieving SOTA on speech IQ and audio understanding benchmarks. It generalizes to new tasks and is the first model capable of high-quality speech continuation (e.g., talk shows, speeches).</p>
<br>
<p class="join-us-body-text">Post-training aligns pretrained capabilities with instruction following. Using diverse data and integrating "thinking" into both understanding and generation, MiMo-Audio exhibits high IQ/EQ, instruction fidelity, and expressiveness, achieving SOTA across audio reasoning, dialogue, instruction following, and instruct-TTS.</p> -->
</div>
<!-- Tokenizer -->
<div class="card-template-details">
<h3 class="template-h2">Tokenizer</h3><br>
<p class="join-us-body-text">We posit that the foremost criterion for an audio tokenizer is its reconstruction fidelity, and that its tokens should be amenable to downstream language modeling. Accordingly, we introduce MiMo-Audio-Tokenizer. This 1.2B-parameter model employs a Transformer-based architecture comprising an encoder, a discretization layer, and a decoder, operating at a 25Hz frame rate and generating 200 tokens per second through 8 layers of residual vector quantization (RVQ). By integrating semantic and reconstruction objectives, we trained it from scratch on a 10-million-hour corpus, achieving superior performance in reconstruction quality and facilitating downstream language modeling.</p>
<div class="image-container">
<img src="assets/mimo-audio/tokenizer.png" alt="MiMo-Audio Tokenizer Architecture" />
</div>
</div>
<!-- Architecture -->
<div class="card-template-details">
<h3 class="template-h2">Architecture</h3><br>
<p class="join-us-body-text">MiMo-Audio is a unified generative audio-language model that jointly models sequences of text and audio tokens. The model accepts both text and audio tokens as input and autoregressively predicts either text or audio tokens, thereby supporting a comprehensive range of tasks involving arbitrary combinations of text and audio modalities. To enhance the modeling efficiency for high-token-rate (200 tokens/second) sequences and mitigate the length disparity between speech and text modalities, we propose a novel architecture combining a patch encoder, LLM, and patch decoder. The patch encoder aggregates four consecutive timesteps of RVQ tokens into a single patch, downsampling the sequence to a 6.25Hz representation for the LLM. Subsequently, the patch decoder autoregressively generates the full 25Hz RVQ token sequence.</p>
<div class="image-container">
<img src="assets/mimo-audio/model.png" alt="MiMo-Audio Model Architecture" />
</div>
</div>
<!-- Performance -->
<div class="card-template-details">
<h3 class="template-h2">Performance</h3><br>
<p class="join-us-body-text">By scaling MiMo-Audio's pretraining data to over one hundred million of hours, we observe the emergence of few-shot learning capabilities across a diverse set of audio tasks. </p>
<div class="image-container">
<img src="assets/mimo-audio/emergent_curves.png" alt="MiMo-Audio Performance" style="width: 90%;" />
</div>
<br>
<p class="join-us-body-text"> At the post-training stage, we curate a diverse instruction-tuning corpus and introduce thinking mechanisms into both audio understanding and generation. MiMo-Audio achieves open-source SOTA on audio understanding benchmarks (MMSU, MMAU, MMAR, MMAU-Pro), spoken dialogue benchmarks (Big Bench Audio, MultiChallenge Audio) and instruct-TTS evaluations, approaching or surpassing closed-source models.</p>
<div class="image-container">
<img src="assets/mimo-audio/comparison.png" alt="MiMo-Audio Performance" style="width: 90%;" />
</div>
<br>
<p class="join-us-body-text">The overall performance is as follows.</p>
<div class="image-container">
<img src="assets/mimo-audio/benchmark.png" alt="MiMo-Audio Performance" style="width: 60%;" />
</div>
<!-- <div class="image-container">
<img src="assets/mimo-audio/performance.png" alt="MiMo-Audio Performance" style="width: 60%;" />
</div> -->
</div>
<!-- Spoken Dialogue -->
<div class="card-template-details">
<h3 class="template-h2">Spoken Dialogue</h3><br>
<p class="join-us-body-text">MiMo-Audio demonstrates comprehensive spoken dialogue capabilities across multiple domains, showcasing its ability to engage in natural conversations with deep understanding and appropriate responses.</p>
<br>
<!-- Subcategories -->
<h4 class="template-h2" style="margin-top: 40px; font-size: 24px; font-weight: bold;">Emotional Intelligence & Safety</h4>
<!-- <p class="join-us-body-text">Deep empathy, understanding users and situations through listening and responding.</p> -->
<div class="example-container">
<div class="youtube-controls">
<button class="youtube-button active" onclick="showYouTubeDemo('safety')">Turing Test</button>
<button class="youtube-button" onclick="showYouTubeDemo('emotional1')">You or GPT? </button>
<button class="youtube-button" onclick="showYouTubeDemo('emotional2')">What is life?</button>
</div>
<div class="youtube-content active" id="safety">
<div class="youtube-title">Turing Test (图灵测试)</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/Mbxam8It7Is?rel=0&modestbranding=1&playsinline=1"
title="MiMo-Audio Turing Test (图灵测试)"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="youtube-content" id="emotional1">
<div class="youtube-title">You or GPT? (你和GPT留哪个?)</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/tqXKexiC1yM?rel=0&modestbranding=1&playsinline=1"
title="You or GPT? (你和GPT留哪个?)"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="youtube-content" id="emotional2">
<div class="youtube-title">What is life? (什么是生活?)</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/juxT6AqB_98?rel=0&modestbranding=1&playsinline=1"
title="MiMo-Audio What is life? (什么是生活?)"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</div>
<h4 class="template-h2" style="margin-top: 40px; font-size: 24px; font-weight: bold;">Intelligence & Instruction Following</h4>
<!-- <p class="join-us-body-text">Comprehensive knowledge question-answering capabilities spanning diverse domains with accurate and informative responses.</p> -->
<div class="example-container">
<div class="youtube-controls">
<button class="youtube-button active" onclick="showYouTubeDemo('intelligence1')">Chicken-Rabbit Cage Problem</button>
<button class="youtube-button" onclick="showYouTubeDemo('intelligence2')">GoGoGo</button>
</div>
<div class="youtube-content active" id="intelligence1">
<div class="youtube-title">Chicken-Rabbit Cage Problem (鸡兔同笼)</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/qF0YypEIhCA?rel=0&modestbranding=1&playsinline=1"
title="Chicken-Rabbit Cage Problem (鸡兔同笼问题)"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="youtube-content" id="intelligence2">
<div class="youtube-title">GoGoGo ('出发咯')</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/De1Zb3qHFg0?rel=0&modestbranding=1&playsinline=1"
title="GoGoGo ('出发咯')"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</div>
<h4 class="template-h2" style="margin-top: 40px; font-size: 24px; font-weight: bold;">Chinese Language Proficiency & Dialects</h4>
<!-- <p class="join-us-body-text">Advanced comprehension and logical reasoning capabilities, enabling complex problem-solving and analytical thinking.</p> -->
<div class="example-container">
<div class="youtube-controls">
<button class="youtube-button active" onclick="showYouTubeDemo('chinese1')">Chinese Language Proficiency</button>
<button class="youtube-button" onclick="showYouTubeDemo('chinese2')">TianJin Dialect</button>
</div>
<div class="youtube-content active" id="chinese1">
<div class="youtube-title">Chinese Language Proficiency (解释'意思意思')</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/16oOqFPHw9M?rel=0&modestbranding=1&playsinline=1"
title="Chinese Language Proficiency (解释'意思意思')"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="youtube-content" id="chinese2">
<div class="youtube-title">TianJin Dialect (天津方言)</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/Z-YBzyBI3X4?rel=0&modestbranding=1&playsinline=1"
title="TianJin Dialect (天津方言)"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
<!-- <div class="youtube-description">
Demonstrate the capability of MiMo-Audio in dialect speech conversations, such as: Tianjin dialect.
</div> -->
</div>
</div>
<h4 class="template-h2" style="margin-top: 40px; font-size: 24px; font-weight: bold;">Foreign Language Capabilities</h4>
<!-- <p class="join-us-body-text">Multilingual conversation abilities with natural fluency and cultural understanding across different languages.</p> -->
<div class="example-container">
<div class="youtube-controls">
<button class="youtube-button active" onclick="showYouTubeDemo('language1')">Greetings & Farewells in Three Languages</button>
<button class="youtube-button" onclick="showYouTubeDemo('language2')">Correct English Grammar</button>
</div>
<div class="youtube-content active" id="language1">
<div class="youtube-title">Greetings & Farewells in Three Languages (三种语言的问候和告别)</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/d4nAJB7yFq4?rel=0&modestbranding=1&playsinline=1"
title="Greetings & Farewells in Three Languages (三种语言的问候和告别)"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="youtube-content" id="language2">
<div class="youtube-title">Correct English Grammar (纠正英语语法)</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/eRRF-nl1kCY?rel=0&modestbranding=1&playsinline=1"
title="Correct English Grammar (纠正英语语法)"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
<!-- <div class="youtube-description">
Demonstrate MiMo-Audio's English proficiency and its ability in correcting grammatical errors.
</div> -->
</div>
</div>
<h4 class="template-h2" style="margin-top: 40px; font-size: 24px; font-weight: bold;">Knowledge</h4>
<!-- <p class="join-us-body-text">MiMo-Audio has strong knowledge question-and-answer capabilities.</p> -->
<div class="example-container">
<div class="youtube-controls">
<button class="youtube-button active" onclick="showYouTubeDemo('instruction1')">Sisyphus</button>
</div>
<div class="youtube-content active" id="instruction1">
<div class="youtube-title">Why must we consider Sisyphus to be happy? (为什么我们必须考虑西西弗斯是快乐的?)</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/9BkHL1TrFvc?rel=0&modestbranding=1&playsinline=1"
title="Sisyphus (为什么我们必须考虑西西弗斯是快乐的?)"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</div>
</div>
<!-- Speech Continuation -->
<div class="card-template-details">
<h3 class="template-h2">Pretrain: Speech Continuation</h3><br>
<p class="join-us-body-text">Through generative pretraining on large-scale speech corpora, MiMo-Audio acquires general speech continuation capabilities. Given a audio prompt, it generates coherent and contextually appropriate continuations that preserve key acoustic properties such as speaker identity, prosody, and environmental sounds.</p>
<br>
<p class="join-us-body-text">The following are examples of continuation in various voice styles: news broadcasting, audiobook narration, podcast programs, dialect speech, game live streaming, teacher's lectures, crosstalk performances, poetry recitation, and radio programs.</p>
<!-- YouTube Video Demo -->
<div class="example-container">
<div class="youtube-content active" id="speech_continuation_demo">
<div class="youtube-title">Speech Continuation Demo</div>
<iframe class="youtube-iframe"
src="https://www.youtube.com/embed/hA4aNg15g5g?rel=0&modestbranding=1&playsinline=1"
title="Speech Continuation Demo"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>