Update README.md
Browse files
README.md
CHANGED
|
@@ -2,21 +2,19 @@
|
|
| 2 |
title: RoboMME Oracle Planner
|
| 3 |
sdk: docker
|
| 4 |
app_port: 7860
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
-
|
| 8 |
|
|
|
|
| 9 |
The container entrypoint is defined by the root `Dockerfile` and launches:
|
| 10 |
-
|
| 11 |
```bash
|
| 12 |
python3 gradio-web/main.py
|
| 13 |
```
|
| 14 |
-
|
| 15 |
`app_file` is intentionally not set here because this is a Docker Space; the application entrypoint comes from Docker `CMD`, while `app_port: 7860` is the external port published by the Space.
|
| 16 |
-
|
| 17 |
Local GPU Docker run:
|
| 18 |
-
|
| 19 |
```bash
|
| 20 |
docker build -t robomme-gradio:gpu .
|
| 21 |
docker run --rm --gpus all -p 7860:7860 robomme-gradio:gpu
|
| 22 |
-
```
|
|
|
|
| 2 |
title: RoboMME Oracle Planner
|
| 3 |
sdk: docker
|
| 4 |
app_port: 7860
|
| 5 |
+
arxiv: "2603.04639"
|
| 6 |
---
|
| 7 |
|
| 8 |
+
[Arxiv Paper](https://arxiv.org/abs/2603.04639) | [HF Paper](https://huggingface.co/papers/2603.04639) | [Website](https://robomme.github.io/) | [Benchmark Code](https://github.com/RoboMME/robomme_benchmark) | [Policy Learning Code](https://github.com/RoboMME/robomme_policy_learning)
|
| 9 |
|
| 10 |
+
This Space runs the RoboMME Gradio interface with the Docker SDK.
|
| 11 |
The container entrypoint is defined by the root `Dockerfile` and launches:
|
|
|
|
| 12 |
```bash
|
| 13 |
python3 gradio-web/main.py
|
| 14 |
```
|
|
|
|
| 15 |
`app_file` is intentionally not set here because this is a Docker Space; the application entrypoint comes from Docker `CMD`, while `app_port: 7860` is the external port published by the Space.
|
|
|
|
| 16 |
Local GPU Docker run:
|
|
|
|
| 17 |
```bash
|
| 18 |
docker build -t robomme-gradio:gpu .
|
| 19 |
docker run --rm --gpus all -p 7860:7860 robomme-gradio:gpu
|
| 20 |
+
```
|