File size: 1,738 Bytes
7576c3b
e9313f3
 
 
 
7576c3b
e9313f3
 
7576c3b
 
e9313f3
7576c3b
 
e9313f3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
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

<p align="center">
  馃寪 <a href="https://rpc-bench.github.io/" target="_blank">Project Page</a> 路
  馃摉 <a href="https://arxiv.org/abs/2601.14289" target="_blank">Paper</a> 路
  馃 <a href="https://huggingface.co/datasets/zai-org/RPC-Bench" target="_blank">Hugging Face</a> 路
  馃Л <a href="https://modelscope.cn/datasets/ZhipuAI/RPC-Bench" target="_blank">ModelScope</a>
</p>


## How to Submit

Fork the RPC-Bench dataset repository, create a branch, add one submission folder, and open a Pull Request:

```text
submissions/
  <organization>__<model>__<input_config>/
    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`.