Skip to content

Commit 1c7fb22

Browse files
committed
.
1 parent 6e46d2f commit 1c7fb22

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

app/(default)/(home)/page.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,13 @@ export default function Home() {
392392
{publication.note}
393393
</span>
394394
}
395+
{
396+
publication.keys.includes('survey') && (
397+
<span className="text-xs text-white bg-black rounded-sm px-2 py-1.5">
398+
Survey
399+
</span>
400+
)
401+
}
395402
{
396403
publication.star && (
397404
<Link href={publication.starlink} target={publication.starlink.startsWith('http') ? '_blank' : '_self'}>

app/(default)/(page)/publications/page.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,13 @@ export default function Home() {
128128
{publication.note}
129129
</span>
130130
}
131+
{
132+
publication.keys.includes('survey') && (
133+
<span className="text-xs text-white bg-black rounded-sm px-2 py-1.5">
134+
Survey
135+
</span>
136+
)
137+
}
131138
{
132139
publication.star && (
133140
<Link href={publication.starlink} target={publication.starlink.startsWith('http') ? '_blank' : '_self'}>

data/publications.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export const publications: {
191191
},
192192
],
193193
description: "In this survey, we provide a comprehensive analysis of more than 270 papers on the motivation, roadmap, methodology, challenges, and future trends in end-to-end autonomous driving.",
194-
keys: ['editor_pick', 'drawer_e2e'],
194+
keys: ['editor_pick', 'drawer_e2e', 'survey'],
195195
},
196196
{
197197
title: "DriveLM: Driving with Graph Visual Question Answering",
@@ -425,7 +425,7 @@ export const publications: {
425425
},
426426
],
427427
description: "We review the most recent work on BEV perception and provide analysis of different solutions.",
428-
keys: ['ad_algorithm'],
428+
keys: ['ad_algorithm', 'survey'],
429429
},
430430
{
431431
title: "Scene as Occupancy",
@@ -859,7 +859,7 @@ export const publications: {
859859
},
860860
],
861861
description: "",
862-
keys: ['end_to_end_ad'],
862+
keys: ['end_to_end_ad', 'survey'],
863863
},
864864
{
865865
title: "Embodied Understanding of Driving Scenarios",
@@ -935,7 +935,7 @@ export const publications: {
935935
},
936936
],
937937
description: "A collection of research papers about LLM-for-Autonomous-Driving (LLM4AD).",
938-
keys: ['end_to_end_ad'],
938+
keys: ['end_to_end_ad', 'survey'],
939939
},
940940
{
941941
title: "Policy Pre-Training for End-to-End Autonomous Driving via Self-Supervised Geometric Modeling",

0 commit comments

Comments
 (0)