-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathindex.html
More file actions
763 lines (687 loc) · 25.4 KB
/
index.html
File metadata and controls
763 lines (687 loc) · 25.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
Note: For best performance and reliability, consider downloading the images
from the GitHub URLs below and serving them locally from an 'assets/images' directory.
-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YOLO-MASTER: Enhanced Real-time Detection</title>
<meta name="description" content="YOLO-Master: MOE-Accelerated with Specialized Transformers for Enhanced Real-time Detection.">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary-color: #0366d6;
--text-color: #24292e;
--bg-color: #ffffff;
--secondary-bg: #f6f8fa;
--border-color: #e1e4e8;
--accent-color: #2ea44f;
--link-color: #0366d6;
--nav-bg: rgba(255, 255, 255, 0.9);
--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
--shadow-md: 0 4px 12px rgba(0,0,0,0.1);
--radius: 8px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
line-height: 1.6;
color: var(--text-color);
margin: 0;
padding: 0;
background-color: var(--bg-color);
}
/* Navigation */
nav {
position: sticky;
top: 0;
z-index: 1000;
background: var(--nav-bg);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-color);
padding: 1rem 0;
}
.nav-container {
max-width: 900px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-weight: 800;
font-size: 1.5rem;
color: var(--text-color);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
color: var(--text-color);
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: color 0.2s;
}
.nav-links a:hover {
color: var(--primary-color);
}
.social-links {
display: flex;
gap: 1rem;
}
.social-links a {
color: #586069;
font-size: 1.2rem;
transition: color 0.2s;
}
.social-links a:hover {
color: var(--text-color);
}
/* Hero Section */
header {
text-align: center;
padding: 6rem 0 4rem;
background: radial-gradient(circle at top center, #f0f7ff 0%, #ffffff 70%);
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 0 1.5rem;
}
h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
color: var(--text-color);
line-height: 1.2;
letter-spacing: -1px;
}
.subtitle {
font-size: 1.5rem;
color: #586069;
margin-bottom: 2rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
font-weight: 300;
}
.badges {
display: flex;
justify-content: center;
gap: 0.8rem;
flex-wrap: wrap;
margin-bottom: 2.5rem;
}
.badges img {
height: 24px;
}
.action-buttons {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 2rem;
}
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.8rem 1.8rem;
background-color: var(--text-color);
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.2s;
box-shadow: var(--shadow-sm);
}
.btn:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
background-color: #000;
}
.btn-outline {
background-color: white;
color: var(--text-color);
border: 1px solid var(--border-color);
}
.btn-outline:hover {
background-color: var(--secondary-bg);
border-color: var(--text-color);
}
/* Content Sections */
section {
padding: 4rem 0;
border-bottom: 1px solid var(--border-color);
}
section:last-child {
border-bottom: none;
}
.hero-image {
width: 100%;
height: auto;
max-width: 100%;
display: block;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
margin: 2rem 0;
}
h2 {
font-size: 2.2rem;
margin-bottom: 2rem;
text-align: center;
font-weight: 700;
}
/* Abstract Box */
.abstract-box {
background-color: var(--secondary-bg);
padding: 2.5rem;
border-radius: var(--radius);
margin: 3rem 0;
position: relative;
}
.abstract-box::before {
content: "ABSTRACT";
position: absolute;
top: -12px;
left: 2rem;
background: var(--primary-color);
color: white;
padding: 0.2rem 1rem;
font-size: 0.8rem;
font-weight: 700;
border-radius: 4px;
letter-spacing: 1px;
}
/* Authors Grid */
.authors-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
margin: 2rem 0;
text-align: center;
}
.author-item {
display: flex;
flex-direction: column;
align-items: center;
}
.author-name {
font-weight: 600;
color: var(--primary-color);
text-decoration: none;
font-size: 1.1rem;
}
.author-affil {
font-size: 0.85rem;
color: #666;
margin-top: 0.2rem;
}
/* Feature Cards */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}
.feature-card {
padding: 2rem;
background: white;
border: 1px solid var(--border-color);
border-radius: var(--radius);
transition: all 0.3s cubic-bezier(0.3, 0, 0.5, 1);
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.feature-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
border-color: var(--primary-color);
}
.feature-icon {
width: 48px;
height: 48px;
background: #e1f0ff;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
color: var(--primary-color);
margin-bottom: 1.2rem;
}
.feature-card h3 {
margin-bottom: 0.6rem;
font-size: 1.15rem;
font-weight: 600;
margin-top: 0;
}
.feature-card p {
margin: 0;
color: #636c76;
font-size: 0.95rem;
}
/* Results Tables */
.table-container {
overflow-x: auto;
border-radius: var(--radius);
box-shadow: var(--shadow-sm);
margin-bottom: 3rem;
}
table {
width: 100%;
border-collapse: collapse;
background: white;
font-size: 0.95rem;
}
th {
background-color: #f8f9fa;
font-weight: 600;
text-transform: uppercase;
font-size: 0.8rem;
letter-spacing: 0.5px;
padding: 1rem;
border-bottom: 2px solid var(--border-color);
}
td {
padding: 1rem;
border-bottom: 1px solid var(--border-color);
text-align: center;
}
tr:last-child td {
border-bottom: none;
}
.highlight-row {
background-color: #f0f7ff;
font-weight: 600;
}
/* Code Block */
.code-block {
background-color: #1b1f23;
color: #e1e4e8;
padding: 1.5rem;
border-radius: var(--radius);
font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
font-size: 0.9rem;
line-height: 1.6;
margin: 1.5rem 0;
position: relative;
overflow-x: auto;
}
.code-block::before {
content: "BASH";
position: absolute;
top: 0;
right: 0;
background: rgba(255,255,255,0.1);
padding: 0.2rem 0.8rem;
font-size: 0.7rem;
border-bottom-left-radius: 6px;
color: #8b949e;
}
.python-block::before {
content: "PYTHON";
}
/* Gallery */
.gallery-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
margin-top: 2rem;
auto-rows: 250px;
}
.gallery-item {
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: transform 0.3s;
}
.gallery-item:hover {
transform: scale(1.02);
box-shadow: var(--shadow-md);
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
/* Footer */
footer {
background-color: #f6f8fa;
padding: 4rem 0;
text-align: center;
border-top: 1px solid var(--border-color);
}
.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 2rem;
}
.footer-links a {
color: var(--text-color);
text-decoration: none;
font-weight: 500;
}
@media (max-width: 768px) {
h1 { font-size: 2.5rem; }
.nav-links { display: none; }
.gallery-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<nav>
<div class="nav-container">
<a href="#" class="logo">
<i class="fas fa-cube"></i> YOLO-MASTER
</a>
<div class="nav-links">
<a href="#introduction">Overview</a>
<a href="#results">Results</a>
<a href="#features">Tasks</a>
<a href="#quick-start">Get Started</a>
<a href="https://arxiv.org/abs/2512.23273" target="_blank" rel="noopener noreferrer">Paper</a>
</div>
<div class="social-links">
<a href="https://github.com/isLinXu/YOLO-Master" target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i></a>
<a href="https://twitter.com" target="_blank" rel="noopener noreferrer"><i class="fab fa-twitter"></i></a>
</div>
</div>
</nav>
<header>
<div class="container">
<h1>MOE-Accelerated<br>Real-time Detection</h1>
<div class="subtitle">
YOLO-Master integrates <b>Mixture-of-Experts (MoE)</b> with specialized transformers, achieving the optimal balance between high precision and ultra-low latency.
</div>
<div class="badges">
<a href="https://arxiv.org/abs/2512.23273"><img src="https://img.shields.io/badge/arXiv-2512.23273-b31b1b.svg?style=flat-square" alt="arXiv"></a>
<a href="https://github.com/isLinXu/YOLO-Master"><img src="https://img.shields.io/github/stars/isLinXu/YOLO-Master?style=social" alt="GitHub stars"></a>
<a href="https://github.com/isLinXu/YOLO-Master/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-AGPL%203.0-blue.svg?style=flat-square" alt="License"></a>
<a href="https://huggingface.co/spaces/xx"><img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue?style=flat-square" alt="Hugging Face"></a>
</div>
<div class="action-buttons">
<a href="#quick-start" class="btn"><i class="fas fa-rocket"></i> Get Started</a>
<a href="https://github.com/isLinXu/YOLO-Master" class="btn btn-outline"><i class="fab fa-github"></i> View Code</a>
</div>
<div class="authors-grid">
<div class="author-item">
<a href="https://github.com/isLinXu" class="author-name">Xu Lin</a>
<span class="author-affil">Tencent Youtu Lab</span>
</div>
<div class="author-item">
<a href="https://pjl1995.github.io/" class="author-name">Jinlong Peng</a>
<span class="author-affil">Tencent Youtu Lab</span>
</div>
<div class="author-item">
<span class="author-name">Zhenye Gan</span>
<span class="author-affil">Tencent Youtu Lab</span>
</div>
<div class="author-item">
<span class="author-name">Jiawen Zhu</span>
<span class="author-affil">SMU</span>
</div>
<div class="author-item">
<span class="author-name">Jun Liu</span>
<span class="author-affil">Tencent Youtu Lab</span>
</div>
</div>
</div>
</header>
<div class="container">
<section id="introduction">
<div style="width: 100%; overflow-x: auto;">
<img src="https://github.com/user-attachments/assets/6caa1065-af77-4f77-8faf-7551c013dacd" alt="YOLO-Master Architecture" class="hero-image">
</div>
<h2>Dynamic Intelligence for Vision</h2>
<div class="abstract-box">
<p style="font-size: 1.1rem; color: #444;">
Existing Real-Time Object Detection (RTOD) methods commonly adopt YOLO-like architectures for their favorable trade-off between accuracy and speed. However, these models rely on static dense computation that applies uniform processing to all inputs.
<br><br>
<b>YOLO-Master</b> introduces instance-conditional adaptive computation via <b>Efficient Sparse Mixture-of-Experts (ES-MoE)</b> blocks. It dynamically allocates computational resources according to scene complexity, outperforming state-of-the-art models on large-scale benchmarks.
</p>
</div>
</section>
<section id="results">
<h2>Performance Benchmarks</h2>
<p style="text-align: center; color: #666; margin-bottom: 3rem;">Comparison with SOTA Nano-scale detectors on standard datasets.</p>
<div style="display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem;">
<div style="flex: 1; min-width: 300px; display: flex; align-items: center; justify-content: center;">
<img src="https://github.com/user-attachments/assets/743fa632-659b-43b1-accf-f865c8b66754" alt="Radar Chart" style="width: 100%; max-width: 400px;">
</div>
<div style="flex: 1.5; min-width: 300px;">
<h3>Object Detection (Benchmark)</h3>
<div class="table-container">
<table>
<thead>
<tr>
<th>Dataset</th>
<th>COCO</th>
<th>VOC</th>
<th>VisDrone</th>
<th>KITTI</th>
<th>SKU-110K</th>
<th>Latency</th>
</tr>
<tr>
<th>Method</th>
<th>mAP</th>
<th>mAP</th>
<th>mAP</th>
<th>mAP</th>
<th>mAP</th>
<th>(ms)</th>
</tr>
</thead>
<tbody>
<tr>
<td>YOLOv10</td>
<td>38.5</td>
<td>60.6</td>
<td>18.7</td>
<td>66.0</td>
<td>57.4</td>
<td>1.84</td>
</tr>
<tr>
<td>YOLOv11-N</td>
<td>39.4</td>
<td>61.0</td>
<td>18.5</td>
<td>67.8</td>
<td>57.4</td>
<td>1.50</td>
</tr>
<tr>
<td>YOLOv12-N</td>
<td>40.6</td>
<td>60.7</td>
<td>18.3</td>
<td>67.6</td>
<td>57.4</td>
<td>1.64</td>
</tr>
<tr>
<td>YOLOv13-N</td>
<td>41.6</td>
<td>60.7</td>
<td>17.5</td>
<td>67.7</td>
<td>57.5</td>
<td>1.97</td>
</tr>
<tr class="highlight-row">
<td><b>YOLO-Master-N</b></td>
<td><b>42.4</b></td>
<td><b>62.1</b></td>
<td><b>19.6</b></td>
<td><b>69.2</b></td>
<td><b>58.2</b></td>
<td><b>1.62</b></td>
</tr>
</tbody>
</table>
</div>
<h3>Instance Segmentation</h3>
<div class="table-container">
<table>
<thead>
<tr>
<th>Model</th>
<th>Size</th>
<th>mAPbox (%)</th>
<th>mAPmask (%)</th>
</tr>
</thead>
<tbody>
<tr>
<td>YOLOv11-seg-N</td>
<td>640</td>
<td>38.9</td>
<td>32.0</td>
</tr>
<tr>
<td>YOLOv12-seg-N</td>
<td>640</td>
<td>39.9</td>
<td>32.8</td>
</tr>
<tr class="highlight-row">
<td><b>YOLO-Master-seg-N</b></td>
<td><b>640</b></td>
<td><b>42.9</b></td>
<td><b>35.6</b> <span style="color:var(--accent-color)">+2.8</span></td>
</tr>
</tbody>
</table>
</div>
<h3>Image Classification (ImageNet)</h3>
<div class="table-container">
<table>
<thead>
<tr>
<th>Model</th>
<th>Top-1 Acc (%)</th>
<th>Top-5 Acc (%)</th>
</tr>
</thead>
<tbody>
<tr>
<td>YOLOv11-cls-N</td>
<td>70.0</td>
<td>89.4</td>
</tr>
<tr>
<td>YOLOv12-cls-N</td>
<td>71.7</td>
<td>90.5</td>
</tr>
<tr class="highlight-row">
<td><b>YOLO-Master-cls-N</b></td>
<td><b>76.6</b> <span style="color:var(--accent-color)">+4.9</span></td>
<td><b>93.4</b></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<section id="features" style="background-color: #fcfcfc;">
<h2>Unified Task Support</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-search"></i></div>
<h3>Object Detection</h3>
<p>Real-time detection with ES-MoE acceleration. Optimized for diverse scenes from crowded streets to aerial views.</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-vector-square"></i></div>
<h3>Instance Segmentation</h3>
<p>Pixel-level object masking. Inherits strong segmentation capabilities from the Ultralytics framework.</p>
</div>
<div class="feature-card">
<div class="feature-icon"><i class="fas fa-tags"></i></div>
<h3>Classification</h3>
<p>High-accuracy image classification. Achieves 76.6% Top-1 Accuracy on ImageNet-1K.</p>
</div>
</div>
</section>
<section id="gallery">
<h2>Visual Gallery</h2>
<div class="gallery-grid">
<div class="gallery-item">
<img src="https://github.com/user-attachments/assets/db350acd-1d91-4be6-96b2-6bdf8aac57e8" alt="Detection Example 1">
</div>
<div class="gallery-item">
<img src="https://github.com/user-attachments/assets/b6c80dbd-120e-428b-8d26-ea2b38a40b47" alt="Detection Example 2">
</div>
<div class="gallery-item">
<img src="https://github.com/user-attachments/assets/edb05e3c-cd83-41db-89f8-8ef09fc22798" alt="Segmentation Example 1">
</div>
<div class="gallery-item">
<img src="https://github.com/user-attachments/assets/ea138674-d7c7-48fb-b272-3ec211d161bf" alt="Segmentation Example 2">
</div>
</div>
</section>
<section id="quick-start">
<h2>🚀 Quick Start</h2>
<p style="text-align: center; color: #666; margin-bottom: 2rem;">Ready to deploy? Get up and running in less than 5 minutes.</p>
<div style="max-width: 800px; margin: 0 auto;">
<h3>1. Installation</h3>
<div class="code-block">
# Create environment
conda create -n yolo_master python=3.11 -y
conda activate yolo_master
# Clone and install
git clone https://github.com/isLinXu/YOLO-Master
cd YOLO-Master
pip install -r requirements.txt
pip install -e .</div>
<h3>2. Python Inference</h3>
<div class="code-block python-block">
from ultralytics import YOLO
# Load model
model = YOLO("yolo_master_n.pt")
# Run inference
results = model("path/to/image.jpg")
results[0].show()</div>
</div>
</section>
<section id="citation">
<h2>Citation</h2>
<div class="code-block" style="background: #f6f8fa; color: #24292e; border: 1px solid #e1e4e8;">
@article{lin2025yolomaster,
title={{YOLO-Master}: MOE-Accelerated with Specialized Transformers for Enhanced Real-time Detection},
author={Lin, Xu and Peng, Jinlong and Gan, Zhenye and Zhu, Jiawen and Liu, Jun},
journal={arXiv preprint arXiv:2512.23273},
year={2025}
}</div>
</section>
</div>
<footer>
<div class="footer-links">
<a href="#introduction">Overview</a>
<a href="https://github.com/isLinXu/YOLO-Master">GitHub</a>
<a href="https://arxiv.org/abs/2512.23273">Paper</a>
<a href="https://github.com/isLinXu/YOLO-Master/blob/main/LICENSE">License</a>
</div>
<p style="color: #999; font-size: 0.85rem;">
Copyright © 2025 Tencent Youtu Lab. Released under the AGPL-3.0 License.
</p>
</footer>
</body>
</html>