---
title: RPC-Bench Leaderboard
emoji: ๐
colorFrom: blue
colorTo: gray
sdk: gradio
sdk_version: 5.0.0
python_version: 3.11
app_file: app.py
pinned: false
license: apache-2.0
---
# RPC-Bench Leaderboard Space
๐ Project Page ยท
๐ Paper ยท
๐ค Hugging Face ยท
๐งญ ModelScope
## How to Submit
Fork the RPC-Bench dataset repository, create a branch, add one submission folder, and open a Pull Request:
```text
submissions/
____/
metadata.yaml
predictions.jsonl
generation_config.json # optional
artifacts/ # optional logs, prompts, run notes
```
Use URL-safe directory names. Replace spaces, slashes, and special characters with hyphens; keep `input_config` as `TEXT` or `VISUAL`.
## `metadata.yaml`
```yaml
model_name: "My Model"
organization: "My Org"
model_url: https://... # optional work link: paper, GitHub, model card, etc.
date: "2026-06-17" # model release date, not submission date
split: test
input_config: TEXT # TEXT or VISUAL
```
## `predictions.jsonl`
Each line must be one JSON object:
```json
{
"id": "paper-id",
"part_idx": 1,
"question": "question text",
"category": "category",
"gen_answer": "model answer"
}
```
`part_idx` is the question index in the current paper's `qa_pairs` list (`1` for the first item). `category` must match the corresponding item in `test.json`.