|
| 1 | +--- |
| 2 | +title: Challenge |
| 3 | +description: Submit your EBench results to the online challenge leaderboard. |
| 4 | +--- |
| 5 | + |
| 6 | +The EBench Challenge supports online submission for benchmark results. Follow the steps below to prepare a valid run and submit it to the leaderboard service. |
| 7 | + |
| 8 | +## Baseline and Getting Started |
| 9 | + |
| 10 | +Before submitting online, make sure you can run the benchmark locally: |
| 11 | + |
| 12 | +- Set up the server and client environments in [Environment Setup](/getting-started/environment/). |
| 13 | +- Prepare the required benchmark assets from [Asset & Dataset](/getting-started/assets/). |
| 14 | +- Run a local benchmark first with [Run Evaluation](/evaluation/run-benchmark/). |
| 15 | +- If you use your own policy, follow [Integrate Your Own Model](/evaluation/custom-model/). |
| 16 | + |
| 17 | +You should verify that your local run finishes normally and produces a complete result directory before attempting online submission. |
| 18 | + |
| 19 | +## Online Submit Steps |
| 20 | + |
| 21 | +The online workflow has three stages: create an online task, wait for the evaluation endpoint, and run evaluation workers against that endpoint. |
| 22 | + |
| 23 | +### 1. Get your token |
| 24 | + |
| 25 | +Open the platform landing page: |
| 26 | + |
| 27 | +```text |
| 28 | +https://internrobotics-staging.shlab.org.cn/eval/landing-page |
| 29 | +``` |
| 30 | + |
| 31 | +Then: |
| 32 | + |
| 33 | +1. Sign in to the platform. |
| 34 | +2. Open the API key or secret management page. |
| 35 | +3. Create a new API key and copy the token value. |
| 36 | + |
| 37 | +### 2. Prepare the client environment |
| 38 | + |
| 39 | +```bash |
| 40 | +git clone https://gitee.pjlab.org.cn/L2/MultimodalVLA/GenManip-Client.git |
| 41 | +cd GenManip-Client |
| 42 | +conda create -n client python=3.11 -y |
| 43 | +conda activate client |
| 44 | +pip install -e . |
| 45 | +``` |
| 46 | + |
| 47 | +### 3. Create an online evaluation task |
| 48 | + |
| 49 | +Use `gmp online submit` to request a remote evaluation job: |
| 50 | + |
| 51 | +```bash |
| 52 | +gmp online submit \ |
| 53 | + --base_url https://internrobotics-staging.shlab.org.cn/eval \ |
| 54 | + --token "$EBENCH_SUBMIT_TOKEN" \ |
| 55 | + --benchmark_set EBench \ |
| 56 | + --model_name internVLA \ |
| 57 | + --model_type VLA |
| 58 | +``` |
| 59 | + |
| 60 | +After the backend task is ready, the command returns fields like: |
| 61 | + |
| 62 | +```json |
| 63 | +{ |
| 64 | + "task_id": "9ea5fb6ae980430da626958c4433ea18", |
| 65 | + "endpoint": "https://internrobotics-staging.shlab.org.cn/evalserver/9391d9e8/api/predict/embodied_eval.genmanip_eas_1_master" |
| 66 | +} |
| 67 | +``` |
| 68 | + |
| 69 | +Record both values: |
| 70 | + |
| 71 | +- `task_id`: use this as the `run_id` when running evaluation. |
| 72 | +- `endpoint`: use this as the remote evaluation URL. |
| 73 | + |
| 74 | +### 4. Start evaluation workers |
| 75 | + |
| 76 | +Run the evaluator against the returned endpoint. |
| 77 | + |
| 78 | +```bash |
| 79 | +gmp eval \ |
| 80 | + --url "$EBENCH_ONLINE_ENDPOINT" \ |
| 81 | + --token "$EBENCH_SUBMIT_TOKEN" \ |
| 82 | + --run_id "$EBENCH_TASK_ID" \ |
| 83 | + -a r5a \ |
| 84 | + -g lift2 \ |
| 85 | + -chunk_size 40 \ |
| 86 | + --worker_id 0 |
| 87 | +``` |
| 88 | + |
| 89 | +If you want to use the second backend worker, open another terminal and start: |
| 90 | + |
| 91 | +```bash |
| 92 | +gmp eval \ |
| 93 | + --url "$EBENCH_ONLINE_ENDPOINT" \ |
| 94 | + --token "$EBENCH_SUBMIT_TOKEN" \ |
| 95 | + --run_id "$EBENCH_TASK_ID" \ |
| 96 | + -a r5a \ |
| 97 | + -g lift2 \ |
| 98 | + -chunk_size 40 \ |
| 99 | + --worker_id 1 |
| 100 | +``` |
| 101 | + |
| 102 | +### 5. Monitor the task |
| 103 | + |
| 104 | +After the online task is created, the platform page will show the corresponding task. The final evaluation outputs are written to the same remote task record. |
| 105 | + |
| 106 | + |
| 107 | +## Online Submit URL |
| 108 | + |
| 109 | +Create tasks through the official platform base URL: |
| 110 | + |
| 111 | +```text |
| 112 | +https://internrobotics-staging.shlab.org.cn/eval |
| 113 | +``` |
| 114 | + |
| 115 | +After `gmp online submit`, use the returned per-task endpoint for evaluation: |
| 116 | + |
| 117 | +```text |
| 118 | +https://internrobotics-staging.shlab.org.cn/evalserver/<task-endpoint> |
| 119 | +``` |
| 120 | + |
| 121 | +## Scoring Rules |
| 122 | + |
| 123 | +- Each evaluated episode produces a task score between `0.0` and `1.0`. |
| 124 | +- A task receives full score when the required goal condition is completed within the episode; otherwise it receives `0.0`. |
| 125 | +- The leaderboard score is the average task score across the evaluated episodes in the submitted benchmark set. |
| 126 | +- For task-specific success semantics, see [Task Showcase](/evaluation/task-showcase/), where each task includes its `Location`, `Instruction`, and `Score` description. |
| 127 | + |
| 128 | +## Example Checklist |
| 129 | + |
| 130 | +- Baseline or custom model runs locally |
| 131 | +- Correct benchmark track and split selected |
| 132 | +- Submission token configured |
| 133 | +- Online submit URL confirmed |
| 134 | +- Result files ready for upload |
0 commit comments