Add model card, robotics pipeline tag, and links to paper/code
Browse filesThis PR improves the model card for **EventVLA**:
- Adds `pipeline_tag: robotics` to the YAML metadata.
- Links to the paper ([arXiv:2606.20092](https://huggingface.co/papers/2606.20092)), project page, and the official GitHub repository.
- Provides a description of the model and repository structure to make it easier for users to navigate the checkpoints.
- Adds the official BibTeX citation.
Please let me know if you would like any changes!
README.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
pipeline_tag: robotics
|
| 4 |
---
|
| 5 |
+
|
| 6 |
+
# EventVLA: Event-Driven Visual Evidence Memory for Long-Horizon Vision-Language-Action Policies
|
| 7 |
+
|
| 8 |
+
EventVLA is an end-to-end vision-language-action framework designed for long-horizon robotic manipulation tasks. It introduces an event-driven visual evidence memory mechanism to address memory bottlenecks when task-relevant cues become occluded or unobservable over time.
|
| 9 |
+
|
| 10 |
+
- **Project Page:** [ganlin-yang.github.io/EventVLA.github.io](https://ganlin-yang.github.io/EventVLA.github.io/)
|
| 11 |
+
- **Repository:** [GitHub - InternRobotics/EventVLA](https://github.com/InternRobotics/EventVLA)
|
| 12 |
+
- **Paper:** [EventVLA: Event-Driven Visual Evidence Memory for Long-Horizon Vision-Language-Action Policies](https://huggingface.co/papers/2606.20092)
|
| 13 |
+
- **Dataset:** [RoboTwin-MeM on Hugging Face](https://huggingface.co/datasets/ganlinyang/RoboTwin-MeM)
|
| 14 |
+
|
| 15 |
+
## Model Description
|
| 16 |
+
|
| 17 |
+
EventVLA addresses the memory constraints of standard Vision-Language-Action (VLA) policies by employing a dynamic Keyframe Evidence Memory (KEM) module alongside foundational visual anchors. KEM predicts future keyframe probabilities from latent embeddings to store sparse, task-critical visual events, preserving visual evidence before it is lost or obscured.
|
| 18 |
+
|
| 19 |
+
This repository contains the trained weights evaluated on two benchmarks:
|
| 20 |
+
* **RoboTwin-MeM**: Checkpoints for evaluation on the eight RoboTwin-MeM tasks.
|
| 21 |
+
* **RMBench**: Checkpoints for evaluation on the RMBench benchmark.
|
| 22 |
+
|
| 23 |
+
Each release directory contains:
|
| 24 |
+
- `pytorch_model.pt`
|
| 25 |
+
- `config.yaml`
|
| 26 |
+
- `dataset_statistics.json`
|
| 27 |
+
- `summary.jsonl`
|
| 28 |
+
|
| 29 |
+
Please refer to the [official GitHub repository](https://github.com/InternRobotics/EventVLA) for instructions on installation, training, and evaluation.
|
| 30 |
+
|
| 31 |
+
## Citation
|
| 32 |
+
|
| 33 |
+
If you find this work useful, please cite:
|
| 34 |
+
|
| 35 |
+
```bibtex
|
| 36 |
+
@article{yang2026eventvla,
|
| 37 |
+
title={EventVLA: Event-Driven Visual Evidence Memory for Long-Horizon Vision-Language-Action Policies},
|
| 38 |
+
author={Yang, Ganlin and Tu, Zhangzheng and Yang, Yuqiang and Mao, Sitong and Dong, Junyi and Chen, Tianxing and Peng, Jiaqi and Xiong, Jing and Cao, Jiafei and Dai, Jifeng and others},
|
| 39 |
+
journal={arXiv preprint arXiv:2606.20092},
|
| 40 |
+
year={2026}
|
| 41 |
+
}
|
| 42 |
+
```
|