Skip to content

Commit aa753a8

Browse files
feat: add entry from issue #33
1 parent 33cafe5 commit aa753a8

4 files changed

Lines changed: 84 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
> 🤖 Physical AI (Robotics & Embodied AI) 분야의 오픈소스 모델, 데이터셋, 시뮬레이터를 체계적으로 정리한 큐레이션 리스트.
44
> A curated list of open-source models, datasets, and simulators for Physical AI (Robotics & Embodied AI).
55
6-
[![Models](https://img.shields.io/badge/Models-14-blue)](https://pytorchkorea.github.io/Awesome-Physical-AI)
6+
[![Models](https://img.shields.io/badge/Models-15-blue)](https://pytorchkorea.github.io/Awesome-Physical-AI)
77
[![Datasets](https://img.shields.io/badge/Datasets-11-green)](https://pytorchkorea.github.io/Awesome-Physical-AI)
88
[![Simulators](https://img.shields.io/badge/Simulators-9-purple)](https://pytorchkorea.github.io/Awesome-Physical-AI)
9-
[![Organizations](https://img.shields.io/badge/Organizations-30-orange)](https://pytorchkorea.github.io/Awesome-Physical-AI)
9+
[![Organizations](https://img.shields.io/badge/Organizations-31-orange)](https://pytorchkorea.github.io/Awesome-Physical-AI)
1010
[![Updated](https://img.shields.io/badge/Updated-2026-06-29-lightgrey)](https://github.com/PyTorchKorea/Awesome-Physical-AI)
1111
[![Dashboard](https://img.shields.io/badge/🌐_Dashboard-Live-brightgreen)](https://pytorchkorea.github.io/Awesome-Physical-AI)
1212

@@ -44,6 +44,7 @@
4444
| [GR-1](https://github.com/bytedance/GR-1) | BAAI / Beijing Academy of AI | 2024 | manipulation | manipulator | VLA, IL | 312 | [📄](https://arxiv.org/abs/2312.13139) |
4545
| [CrossFormer](https://github.com/rail-berkeley/crossformer) | UC Berkeley / others | 2024 | manipulation | manipulator, mobile | IL, VLA | 283 | [📄](https://arxiv.org/abs/2408.11812) [🤗](https://huggingface.co/rail-berkeley/crossformer) |
4646
| [CogACT](https://github.com/microsoft/CogACT) | Tsinghua University / Microsoft Research Asia | 2024 | manipulation | manipulator | VLA, diffusion | 0 | [📄](https://cogact.github.io/CogACT_paper.pdf) [🤗](https://huggingface.co/CogACT) |
47+
| [RoboMamba](https://github.com/lmzpai/roboMamba) | Peking University / AI2Robotics | 2024 | manipulation | manipulator | VLA, IL | 0 | [📄](https://arxiv.org/abs/2406.04339) |
4748

4849
---
4950

data/models.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,3 +452,41 @@
452452
- VLA
453453
- diffusion
454454
- foundation-model
455+
- id: robomamba
456+
name: RoboMamba
457+
org: Peking University / AI2Robotics
458+
year: 2024
459+
description_en: RoboMamba is an efficient end-to-end Vision-Language-Action model
460+
that leverages the Mamba state space model for robotic reasoning and manipulation
461+
with linear inference complexity. It integrates a vision encoder with Mamba, aligning
462+
visual tokens with language embeddings, and uses a lightweight policy head for
463+
SE(3) pose prediction. RoboMamba achieves 3x faster inference than existing VLA
464+
models while maintaining competitive reasoning and manipulation performance.
465+
description_ko: RoboMamba는 Mamba 상태 공간 모델을 활용하여 선형 추론 복잡도로 로봇 추론과 조작을 수행하는 효율적인
466+
엔드투엔드 VLA 모델입니다. 비전 인코더와 Mamba를 통합하여 시각 토큰을 언어 임베딩과 정렬하고, 경량 정책 헤드로 SE(3) 포즈 예측을
467+
수행합니다. 기존 VLA 모델 대비 3배 빠른 추론 속도를 달성하면서도 경쟁력 있는 추론 및 조작 성능을 보여줍니다.
468+
github_url: https://github.com/lmzpai/roboMamba
469+
paper_url: https://arxiv.org/abs/2406.04339
470+
hf_url: ''
471+
project_url: https://sites.google.com/view/robomamba-web
472+
categories:
473+
- manipulation
474+
hardware:
475+
- manipulator
476+
learning:
477+
- VLA
478+
- IL
479+
framework:
480+
- pytorch
481+
communication:
482+
- other
483+
stats:
484+
github_stars: 0
485+
github_forks: 0
486+
hf_downloads: 0
487+
last_updated: '2026-06-29'
488+
added_date: '2026-06-29'
489+
tags:
490+
- VLA
491+
- mamba
492+
- state-space-model

docs/data.json

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"metadata": {
33
"last_updated": "2026-06-29",
4-
"total_models": 14,
4+
"total_models": 15,
55
"total_datasets": 11,
66
"total_tools": 9,
7-
"total_orgs": 30
7+
"total_orgs": 31
88
},
99
"models": [
1010
{
@@ -554,6 +554,46 @@
554554
"diffusion",
555555
"foundation-model"
556556
]
557+
},
558+
{
559+
"id": "robomamba",
560+
"name": "RoboMamba",
561+
"org": "Peking University / AI2Robotics",
562+
"year": 2024,
563+
"description_en": "RoboMamba is an efficient end-to-end Vision-Language-Action model that leverages the Mamba state space model for robotic reasoning and manipulation with linear inference complexity. It integrates a vision encoder with Mamba, aligning visual tokens with language embeddings, and uses a lightweight policy head for SE(3) pose prediction. RoboMamba achieves 3x faster inference than existing VLA models while maintaining competitive reasoning and manipulation performance.",
564+
"description_ko": "RoboMamba는 Mamba 상태 공간 모델을 활용하여 선형 추론 복잡도로 로봇 추론과 조작을 수행하는 효율적인 엔드투엔드 VLA 모델입니다. 비전 인코더와 Mamba를 통합하여 시각 토큰을 언어 임베딩과 정렬하고, 경량 정책 헤드로 SE(3) 포즈 예측을 수행합니다. 기존 VLA 모델 대비 3배 빠른 추론 속도를 달성하면서도 경쟁력 있는 추론 및 조작 성능을 보여줍니다.",
565+
"github_url": "https://github.com/lmzpai/roboMamba",
566+
"paper_url": "https://arxiv.org/abs/2406.04339",
567+
"hf_url": "",
568+
"project_url": "https://sites.google.com/view/robomamba-web",
569+
"categories": [
570+
"manipulation"
571+
],
572+
"hardware": [
573+
"manipulator"
574+
],
575+
"learning": [
576+
"VLA",
577+
"IL"
578+
],
579+
"framework": [
580+
"pytorch"
581+
],
582+
"communication": [
583+
"other"
584+
],
585+
"stats": {
586+
"github_stars": 0,
587+
"github_forks": 0,
588+
"hf_downloads": 0,
589+
"last_updated": "2026-06-29"
590+
},
591+
"added_date": "2026-06-29",
592+
"tags": [
593+
"VLA",
594+
"mamba",
595+
"state-space-model"
596+
]
557597
}
558598
],
559599
"datasets": [

docs/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)