Skip to content

Commit c36bae1

Browse files
committed
Merge branch 'master' of github.com:OpenPerceptionX/OpenPerceptionX.github.io
2 parents f638376 + 0332347 commit c36bae1

File tree

6 files changed

+243
-62
lines changed

6 files changed

+243
-62
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export default function Home() {
261261

262262
{
263263
publication.description && (
264-
<i className="text-sm text-o-gray">
264+
<i className="text-sm text-o-gray whitespace-pre-line">
265265
{publication.description}
266266
</i>
267267
)

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

Lines changed: 24 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -93,26 +93,29 @@ export default function Home() {
9393
</div>
9494
<span className="text-sm flex flex-wrap">
9595
{
96-
publication.author.split(', ').map((author, index) => (
97-
<div key={author}>
98-
{
99-
author in scholar ? (
100-
<Link className="text-o-dark-blue animated-underline-gray" href={scholar[author]} target={scholar[author].startsWith('http') ? '_blank' : '_self'}>
101-
{author}
102-
</Link>
103-
) : (
104-
<span>
105-
{author}
106-
</span>
107-
)
108-
}
109-
{
110-
index < publication.author.split(', ').length - 1 && (
111-
<span>,&nbsp;</span>
112-
)
113-
}
114-
</div>
115-
))
96+
publication.author.split(', ').map((author, index) => {
97+
const trimmedAuthor = author.trim();
98+
return (
99+
<div key={author}>
100+
{
101+
trimmedAuthor in scholar ? (
102+
<Link className="text-o-dark-blue animated-underline-gray" href={scholar[trimmedAuthor]} target={scholar[trimmedAuthor].startsWith('http') ? '_blank' : '_self'}>
103+
{trimmedAuthor}
104+
</Link>
105+
) : (
106+
<span>
107+
{trimmedAuthor}
108+
</span>
109+
)
110+
}
111+
{
112+
index < publication.author.split(', ').length - 1 && (
113+
<span>,&nbsp;</span>
114+
)
115+
}
116+
</div>
117+
);
118+
})
116119
}
117120
</span>
118121
</div>
@@ -161,7 +164,7 @@ export default function Home() {
161164

162165
{
163166
publication.description && (
164-
<i className="text-sm text-o-gray">
167+
<i className="text-sm text-o-gray whitespace-pre-line">
165168
{publication.description}
166169
</i>
167170
)

data/publications.tsx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,28 @@ export const publications: {
105105
description: "DetAny3D is a promptable 3D detection foundation model that leverages 2D foundation knowledge to enable zero-shot 3D object detection from monocular images across novel categories and camera settings.",
106106
keys: ['cv_at_scale'],
107107
},
108+
{
109+
title: "SimScale: Learning to Drive via Real-World Simulation at Scale",
110+
link: "https://arxiv.org/pdf/2511.23369",
111+
image: "/assets/publication/SimScale.png",
112+
author: "Haochen Tian, Tianyu Li, Haochen Liu, Jiazhi Yang, Yihang Qiu, Guang Li, Junli Wang, Yinfeng Gao, Zhang Zhang, Liang Wang, Hangjun Ye, Tieniu Tan, Long Chen, Hongyang Li",
113+
note: "arXiv 2025",
114+
noteoption: '',
115+
star: "https://img.shields.io/github/stars/OpenDriveLab/SimScale?style=social",
116+
starlink: "https://github.com/OpenDriveLab/SimScale",
117+
icon: [
118+
{
119+
type: "page",
120+
link: "https://opendrivelab.com/SimScale/",
121+
},
122+
{
123+
type: "github",
124+
link: "https://github.com/OpenDriveLab/SimScale",
125+
},
126+
],
127+
description: `🏗️ A scalable simulation pipeline that synthesizes diverse and high-fidelity reactive driving scenarios with pseudo-expert.\n🚀 An effective sim-real co-training strategy that improves robustness and generalization across end-to-end planners.\n🔬 A comprehensive recipe that reveals crucial insights into the underlying scaling properties of sim-real learning systems.`,
128+
keys: ['end_to_end_ad'],
129+
},
108130
{
109131
title: "Reinforced Refinement with Self-Aware Expansion for End-to-End Autonomous Driving",
110132
link: "https://arxiv.org/abs/2506.09800",

package-lock.json

Lines changed: 1 addition & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)