Datasets:
v1.0: dataset card with full metadata, precision info, coverage sparsity, croissant alignment
Browse files- README.md +172 -28
- croissant.json +6 -2
README.md
CHANGED
|
@@ -14,6 +14,7 @@ tags:
|
|
| 14 |
size_categories:
|
| 15 |
- 1K<n<10K
|
| 16 |
pretty_name: AgentPerfBench
|
|
|
|
| 17 |
configs:
|
| 18 |
- config_name: trace_replay
|
| 19 |
data_files:
|
|
@@ -23,37 +24,172 @@ configs:
|
|
| 23 |
data_files:
|
| 24 |
- split: summary
|
| 25 |
path: distributional/summary.parquet
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
---
|
| 27 |
|
| 28 |
# AgentPerfBench
|
| 29 |
|
| 30 |
-
LLM inference benchmark measuring TTFT, TPOT, ITL, and throughput across 9 models, up to 14 GPU configurations, 2 engines,
|
| 31 |
|
| 32 |
## Dataset configurations
|
| 33 |
|
| 34 |
-
|
| 35 |
|
| 36 |
### trace_replay (3,147 rows)
|
| 37 |
|
| 38 |
-
Replays exact ISL/OSL sequences from recorded agent sessions (SWE-Bench, TerminalBench, OSWorld, ShareGPT).
|
| 39 |
|
| 40 |
17 profiles: `chat-medium`, `chat-multiturn-long`, `chat-multiturn-medium`, `chat-multiturn-short`, `chat-short`, `chat-singleturn`, `coding-singleturn`, `decode-heavy`, `osworld-multiturn-long`, `osworld-multiturn-medium`, `osworld-multiturn-short`, `prefill-heavy`, `random-1k`, `swebench-multiturn-medium`, `swebench-multiturn-short`, `terminalbench-multiturn-medium`, `terminalbench-multiturn-short`
|
| 41 |
|
| 42 |
### distributional (245 rows)
|
| 43 |
|
| 44 |
-
Samples ISL/OSL from
|
| 45 |
-
|
| 46 |
-
8 of 9 models covered (`gpt-oss-120b` excluded). 12 of 14 hardware configs (`3090x8`, `A100-40GBx8` excluded).
|
| 47 |
|
| 48 |
6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
|
| 49 |
|
| 50 |
-
### Why two configurations?
|
| 51 |
-
|
| 52 |
-
trace_replay uses exact sequences from recorded sessions; distributional samples from fitted distributions for broader coverage with shorter runs.
|
| 53 |
-
|
| 54 |
### Concurrency filtering
|
| 55 |
|
| 56 |
-
The benchmark harness capped actual concurrent connections at the session pool size. Rows where declared concurrency exceeded the pool were excluded
|
| 57 |
|
| 58 |
- trace_replay: concurrency > 100 removed (session pool was 100). Remaining values: {1, 5, 10, 20, 40, 80}.
|
| 59 |
- distributional (pre-fix): concurrency > 10 removed (session pool was 10). Post-fix data has no cap. Remaining values: {1, 5, 10, 40, 80, 200, 320}.
|
|
@@ -66,34 +202,38 @@ The benchmark harness capped actual concurrent connections at the session pool s
|
|
| 66 |
|
| 67 |
### Failed requests
|
| 68 |
|
| 69 |
-
Some
|
| 70 |
|
| 71 |
## Coverage
|
| 72 |
|
| 73 |
### Hardware
|
| 74 |
|
|
|
|
|
|
|
| 75 |
| GPU | VRAM | HBM bandwidth | Peak half-precision TFLOPS |
|
| 76 |
-
|-----|------|---------------|------------------|
|
| 77 |
| NVIDIA H100 SXM | 80 GB | 3.35 TB/s | 989 |
|
| 78 |
| NVIDIA A100 SXM4 | 40 GB | 1.56 TB/s | 312 |
|
| 79 |
| NVIDIA RTX 3090 | 24 GB | 936 GB/s | 71 |
|
| 80 |
| NVIDIA RTX 2080 Ti | 11 GB | 616 GB/s | 27 |
|
| 81 |
|
| 82 |
-
Multi-GPU configurations: 1, 2, 4, or 8 GPUs with tensor parallelism
|
| 83 |
|
| 84 |
### Models
|
| 85 |
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
|
| 89 |
-
|
|
| 90 |
-
| Llama-3.
|
| 91 |
-
|
|
| 92 |
-
|
|
| 93 |
-
|
|
| 94 |
-
|
|
| 95 |
-
|
|
| 96 |
-
|
|
|
|
|
|
|
|
| 97 |
|
| 98 |
Model names in this table match the `model` column in the parquet files.
|
| 99 |
|
|
@@ -145,11 +285,14 @@ ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
|
|
| 145 |
- 3-request warmup before each configuration.
|
| 146 |
- Metrics: TTFT, TPOT, ITL, E2EL, request throughput, token throughput.
|
| 147 |
- Summary statistics: mean, median, p90, p99.
|
|
|
|
|
|
|
| 148 |
|
| 149 |
## Future releases
|
| 150 |
|
| 151 |
-
- Per-request and multi-turn granularity data (pending raw JSON availability).
|
| 152 |
- Per-kernel CUDA roofline profiles (PyTorch profiler, 2-layer forward passes, batch sizes 1/4/8/32/64).
|
|
|
|
| 153 |
|
| 154 |
## Intended uses
|
| 155 |
|
|
@@ -159,10 +302,11 @@ ds = load_dataset("agent-perf-bench/AgentPerfBench", "trace_replay")
|
|
| 159 |
|
| 160 |
## Limitations
|
| 161 |
|
| 162 |
-
- Results are specific to tested hardware and software versions (vLLM 0.19.0, SGLang 0.5.9).
|
| 163 |
- Distributional profiles approximate but do not replicate production traffic patterns.
|
| 164 |
- No consumer GPUs beyond RTX 3090; no non-NVIDIA accelerators.
|
| 165 |
- Closed-loop concurrency only; no open-loop (Poisson) arrivals.
|
|
|
|
| 166 |
- No model quality metrics. This is a systems benchmark.
|
| 167 |
|
| 168 |
## Ethical considerations
|
|
@@ -171,7 +315,7 @@ No PII. Trace-replay profiles derive from open benchmarks (SWE-Bench MIT, Termin
|
|
| 171 |
|
| 172 |
## License
|
| 173 |
|
| 174 |
-
|
| 175 |
|
| 176 |
## Source datasets
|
| 177 |
|
|
|
|
| 14 |
size_categories:
|
| 15 |
- 1K<n<10K
|
| 16 |
pretty_name: AgentPerfBench
|
| 17 |
+
version: "1.0"
|
| 18 |
configs:
|
| 19 |
- config_name: trace_replay
|
| 20 |
data_files:
|
|
|
|
| 24 |
data_files:
|
| 25 |
- split: summary
|
| 26 |
path: distributional/summary.parquet
|
| 27 |
+
dataset_info:
|
| 28 |
+
- config_name: trace_replay
|
| 29 |
+
features:
|
| 30 |
+
- name: run_id
|
| 31 |
+
dtype: string
|
| 32 |
+
- name: model
|
| 33 |
+
dtype: string
|
| 34 |
+
- name: model_family
|
| 35 |
+
dtype: string
|
| 36 |
+
- name: hardware
|
| 37 |
+
dtype: string
|
| 38 |
+
- name: engine
|
| 39 |
+
dtype: string
|
| 40 |
+
- name: tensor_parallelism
|
| 41 |
+
dtype: int64
|
| 42 |
+
- name: profile
|
| 43 |
+
dtype: string
|
| 44 |
+
- name: concurrency
|
| 45 |
+
dtype: int64
|
| 46 |
+
- name: num_requests
|
| 47 |
+
dtype: int64
|
| 48 |
+
- name: duration_s
|
| 49 |
+
dtype: float64
|
| 50 |
+
- name: successful_requests
|
| 51 |
+
dtype: int64
|
| 52 |
+
- name: failed_requests
|
| 53 |
+
dtype: int64
|
| 54 |
+
- name: request_throughput
|
| 55 |
+
dtype: float64
|
| 56 |
+
- name: input_token_throughput
|
| 57 |
+
dtype: float64
|
| 58 |
+
- name: output_token_throughput
|
| 59 |
+
dtype: float64
|
| 60 |
+
- name: total_token_throughput
|
| 61 |
+
dtype: float64
|
| 62 |
+
- name: mean_ttft_ms
|
| 63 |
+
dtype: float64
|
| 64 |
+
- name: median_ttft_ms
|
| 65 |
+
dtype: float64
|
| 66 |
+
- name: p90_ttft_ms
|
| 67 |
+
dtype: float64
|
| 68 |
+
- name: p99_ttft_ms
|
| 69 |
+
dtype: float64
|
| 70 |
+
- name: mean_tpot_ms
|
| 71 |
+
dtype: float64
|
| 72 |
+
- name: median_tpot_ms
|
| 73 |
+
dtype: float64
|
| 74 |
+
- name: p90_tpot_ms
|
| 75 |
+
dtype: float64
|
| 76 |
+
- name: p99_tpot_ms
|
| 77 |
+
dtype: float64
|
| 78 |
+
- name: mean_itl_ms
|
| 79 |
+
dtype: float64
|
| 80 |
+
- name: median_itl_ms
|
| 81 |
+
dtype: float64
|
| 82 |
+
- name: p90_itl_ms
|
| 83 |
+
dtype: float64
|
| 84 |
+
- name: p99_itl_ms
|
| 85 |
+
dtype: float64
|
| 86 |
+
- name: mean_e2el_ms
|
| 87 |
+
dtype: float64
|
| 88 |
+
- name: median_e2el_ms
|
| 89 |
+
dtype: float64
|
| 90 |
+
- name: p90_e2el_ms
|
| 91 |
+
dtype: float64
|
| 92 |
+
- name: p99_e2el_ms
|
| 93 |
+
dtype: float64
|
| 94 |
+
splits:
|
| 95 |
+
- name: summary
|
| 96 |
+
num_rows: 3147
|
| 97 |
+
num_bytes: 694254
|
| 98 |
+
- config_name: distributional
|
| 99 |
+
features:
|
| 100 |
+
- name: run_id
|
| 101 |
+
dtype: string
|
| 102 |
+
- name: model
|
| 103 |
+
dtype: string
|
| 104 |
+
- name: model_family
|
| 105 |
+
dtype: string
|
| 106 |
+
- name: hardware
|
| 107 |
+
dtype: string
|
| 108 |
+
- name: engine
|
| 109 |
+
dtype: string
|
| 110 |
+
- name: tensor_parallelism
|
| 111 |
+
dtype: int64
|
| 112 |
+
- name: profile
|
| 113 |
+
dtype: string
|
| 114 |
+
- name: concurrency
|
| 115 |
+
dtype: int64
|
| 116 |
+
- name: num_requests
|
| 117 |
+
dtype: int64
|
| 118 |
+
- name: duration_s
|
| 119 |
+
dtype: float64
|
| 120 |
+
- name: successful_requests
|
| 121 |
+
dtype: int64
|
| 122 |
+
- name: failed_requests
|
| 123 |
+
dtype: int64
|
| 124 |
+
- name: request_throughput
|
| 125 |
+
dtype: float64
|
| 126 |
+
- name: input_token_throughput
|
| 127 |
+
dtype: float64
|
| 128 |
+
- name: output_token_throughput
|
| 129 |
+
dtype: float64
|
| 130 |
+
- name: total_token_throughput
|
| 131 |
+
dtype: float64
|
| 132 |
+
- name: mean_ttft_ms
|
| 133 |
+
dtype: float64
|
| 134 |
+
- name: median_ttft_ms
|
| 135 |
+
dtype: float64
|
| 136 |
+
- name: p90_ttft_ms
|
| 137 |
+
dtype: float64
|
| 138 |
+
- name: p99_ttft_ms
|
| 139 |
+
dtype: float64
|
| 140 |
+
- name: mean_tpot_ms
|
| 141 |
+
dtype: float64
|
| 142 |
+
- name: median_tpot_ms
|
| 143 |
+
dtype: float64
|
| 144 |
+
- name: p90_tpot_ms
|
| 145 |
+
dtype: float64
|
| 146 |
+
- name: p99_tpot_ms
|
| 147 |
+
dtype: float64
|
| 148 |
+
- name: mean_itl_ms
|
| 149 |
+
dtype: float64
|
| 150 |
+
- name: median_itl_ms
|
| 151 |
+
dtype: float64
|
| 152 |
+
- name: p90_itl_ms
|
| 153 |
+
dtype: float64
|
| 154 |
+
- name: p99_itl_ms
|
| 155 |
+
dtype: float64
|
| 156 |
+
- name: mean_e2el_ms
|
| 157 |
+
dtype: float64
|
| 158 |
+
- name: median_e2el_ms
|
| 159 |
+
dtype: float64
|
| 160 |
+
- name: p90_e2el_ms
|
| 161 |
+
dtype: float64
|
| 162 |
+
- name: p99_e2el_ms
|
| 163 |
+
dtype: float64
|
| 164 |
+
splits:
|
| 165 |
+
- name: summary
|
| 166 |
+
num_rows: 245
|
| 167 |
+
num_bytes: 70836
|
| 168 |
---
|
| 169 |
|
| 170 |
# AgentPerfBench
|
| 171 |
|
| 172 |
+
LLM inference benchmark: 3,392 runs measuring TTFT, TPOT, ITL, and throughput across 9 models, up to 14 GPU configurations, and 2 serving engines (vLLM 0.19.0, SGLang 0.5.9). All models served in BF16 except gpt-oss, which uses mxfp4 for projection weights.
|
| 173 |
|
| 174 |
## Dataset configurations
|
| 175 |
|
| 176 |
+
The dataset provides two configurations. *trace_replay* replays exact input/output sequences from recorded agent sessions. *distributional* samples from statistical distributions fitted to those same workloads, trading fidelity for faster sweeps across the hardware matrix.
|
| 177 |
|
| 178 |
### trace_replay (3,147 rows)
|
| 179 |
|
| 180 |
+
Replays exact ISL/OSL sequences from recorded agent sessions (SWE-Bench, TerminalBench, OSWorld, ShareGPT). Covers 77 unique (model, hardware, engine) combinations across 17 profiles and 6 concurrency levels. The full 5-dimensional matrix is 12.2% filled; not all models run on all hardware.
|
| 181 |
|
| 182 |
17 profiles: `chat-medium`, `chat-multiturn-long`, `chat-multiturn-medium`, `chat-multiturn-short`, `chat-short`, `chat-singleturn`, `coding-singleturn`, `decode-heavy`, `osworld-multiturn-long`, `osworld-multiturn-medium`, `osworld-multiturn-short`, `prefill-heavy`, `random-1k`, `swebench-multiturn-medium`, `swebench-multiturn-short`, `terminalbench-multiturn-medium`, `terminalbench-multiturn-short`
|
| 183 |
|
| 184 |
### distributional (245 rows)
|
| 185 |
|
| 186 |
+
Samples ISL/OSL from lognormal distributions fitted to real workload statistics. Covers 42 unique (model, hardware, engine) combinations across 6 profiles and 7 concurrency levels (3.0% matrix fill). `gpt-oss-120b`, `3090x8`, and `A100-40GBx8` are excluded from this configuration.
|
|
|
|
|
|
|
| 187 |
|
| 188 |
6 profiles: `chat-multiturn`, `chat-singleturn`, `coding-singleturn`, `osworld-multiturn`, `swebench-multiturn`, `terminalbench-multiturn`
|
| 189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 190 |
### Concurrency filtering
|
| 191 |
|
| 192 |
+
The benchmark harness capped actual concurrent connections at the session pool size. Rows where declared concurrency exceeded the pool were excluded:
|
| 193 |
|
| 194 |
- trace_replay: concurrency > 100 removed (session pool was 100). Remaining values: {1, 5, 10, 20, 40, 80}.
|
| 195 |
- distributional (pre-fix): concurrency > 10 removed (session pool was 10). Post-fix data has no cap. Remaining values: {1, 5, 10, 40, 80, 200, 320}.
|
|
|
|
| 202 |
|
| 203 |
### Failed requests
|
| 204 |
|
| 205 |
+
Some runs produce request failures, typically at high concurrency where the engine hits memory or timeout limits. 30.8% of trace_replay rows and 42% of distributional rows have `failed_requests > 0`. Summary metrics (TTFT, TPOT, throughput) are computed from successful requests only.
|
| 206 |
|
| 207 |
## Coverage
|
| 208 |
|
| 209 |
### Hardware
|
| 210 |
|
| 211 |
+
All benchmarks collected on CUDA 12.4.
|
| 212 |
+
|
| 213 |
| GPU | VRAM | HBM bandwidth | Peak half-precision TFLOPS |
|
| 214 |
+
|-----|------|---------------|---------------------------|
|
| 215 |
| NVIDIA H100 SXM | 80 GB | 3.35 TB/s | 989 |
|
| 216 |
| NVIDIA A100 SXM4 | 40 GB | 1.56 TB/s | 312 |
|
| 217 |
| NVIDIA RTX 3090 | 24 GB | 936 GB/s | 71 |
|
| 218 |
| NVIDIA RTX 2080 Ti | 11 GB | 616 GB/s | 27 |
|
| 219 |
|
| 220 |
+
Multi-GPU configurations: 1, 2, 4, or 8 GPUs with tensor parallelism. TP degree depends on model size and available GPUs.
|
| 221 |
|
| 222 |
### Models
|
| 223 |
|
| 224 |
+
All models served in BF16 unless noted.
|
| 225 |
+
|
| 226 |
+
| Model | Family | Parameters | Architecture | Notes |
|
| 227 |
+
|-------|--------|-----------|--------------|-------|
|
| 228 |
+
| Llama-3.1-8B | Llama | 8B | Dense | |
|
| 229 |
+
| Llama-3.1-70B | Llama | 70B | Dense | |
|
| 230 |
+
| Llama-3.3-70B | Llama | 70B | Dense | |
|
| 231 |
+
| Qwen2.5-72B | Qwen | 72B | Dense | |
|
| 232 |
+
| Qwen3.5-9B | Qwen | 9B | Dense | |
|
| 233 |
+
| Qwen3.5-27B | Qwen | 27B | Dense | |
|
| 234 |
+
| Mixtral-8x7B | Mixtral | 46.7B (12.9B active) | MoE | |
|
| 235 |
+
| gpt-oss-20b | GPT-OSS | 21B (3.6B active) | MoE | mxfp4 projections |
|
| 236 |
+
| gpt-oss-120b | GPT-OSS | 117B (5.1B active) | MoE | mxfp4 projections |
|
| 237 |
|
| 238 |
Model names in this table match the `model` column in the parquet files.
|
| 239 |
|
|
|
|
| 285 |
- 3-request warmup before each configuration.
|
| 286 |
- Metrics: TTFT, TPOT, ITL, E2EL, request throughput, token throughput.
|
| 287 |
- Summary statistics: mean, median, p90, p99.
|
| 288 |
+
- Collection period: March 2026 onwards.
|
| 289 |
+
- CUDA 12.4 on all machines. All models served in BF16 (gpt-oss: mxfp4 projection weights).
|
| 290 |
|
| 291 |
## Future releases
|
| 292 |
|
| 293 |
+
- Per-request and multi-turn granularity data (pending raw JSON availability from collection infrastructure).
|
| 294 |
- Per-kernel CUDA roofline profiles (PyTorch profiler, 2-layer forward passes, batch sizes 1/4/8/32/64).
|
| 295 |
+
- This is version 1.0. Updates will be tagged with semantic versions.
|
| 296 |
|
| 297 |
## Intended uses
|
| 298 |
|
|
|
|
| 302 |
|
| 303 |
## Limitations
|
| 304 |
|
| 305 |
+
- Results are specific to tested hardware and software versions (vLLM 0.19.0, SGLang 0.5.9, CUDA 12.4).
|
| 306 |
- Distributional profiles approximate but do not replicate production traffic patterns.
|
| 307 |
- No consumer GPUs beyond RTX 3090; no non-NVIDIA accelerators.
|
| 308 |
- Closed-loop concurrency only; no open-loop (Poisson) arrivals.
|
| 309 |
+
- The model-hardware-concurrency matrix is sparse (12.2% fill for trace_replay, 3.0% for distributional). Not all model-hardware combinations are represented.
|
| 310 |
- No model quality metrics. This is a systems benchmark.
|
| 311 |
|
| 312 |
## Ethical considerations
|
|
|
|
| 315 |
|
| 316 |
## License
|
| 317 |
|
| 318 |
+
Benchmark data released under Apache-2.0. Source datasets retain their original licenses.
|
| 319 |
|
| 320 |
## Source datasets
|
| 321 |
|
croissant.json
CHANGED
|
@@ -54,7 +54,7 @@
|
|
| 54 |
"license": "https://spdx.org/licenses/Apache-2.0.html",
|
| 55 |
"conformsTo": "http://mlcommons.org/croissant/1.1",
|
| 56 |
"datePublished": "2026-05-04",
|
| 57 |
-
"version": "
|
| 58 |
"citeAs": "@inproceedings{agentperfbench2026, title={AgentPerfBench: A Benchmarking and Evaluation Suite for Inference Performance of Agentic LLMs}, author={Anonymous}, booktitle={NeurIPS 2026 Evaluations and Datasets Track}, year={2026}}",
|
| 59 |
"creator": {
|
| 60 |
"@type": "sc:Organization",
|
|
@@ -217,7 +217,7 @@
|
|
| 217 |
"@type": "cr:RecordSet",
|
| 218 |
"@id": "distributional-summary",
|
| 219 |
"name": "Distributional Summary",
|
| 220 |
-
"description": "One row per benchmark configuration from distributional runs (statistical sampling
|
| 221 |
"field": [
|
| 222 |
{
|
| 223 |
"@type": "cr:Field",
|
|
@@ -366,6 +366,10 @@
|
|
| 366 |
{
|
| 367 |
"@id": "https://github.com/xlang-ai/OSWorld",
|
| 368 |
"name": "OSWorld"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 369 |
}
|
| 370 |
],
|
| 371 |
"prov:wasGeneratedBy": {
|
|
|
|
| 54 |
"license": "https://spdx.org/licenses/Apache-2.0.html",
|
| 55 |
"conformsTo": "http://mlcommons.org/croissant/1.1",
|
| 56 |
"datePublished": "2026-05-04",
|
| 57 |
+
"version": "1.0",
|
| 58 |
"citeAs": "@inproceedings{agentperfbench2026, title={AgentPerfBench: A Benchmarking and Evaluation Suite for Inference Performance of Agentic LLMs}, author={Anonymous}, booktitle={NeurIPS 2026 Evaluations and Datasets Track}, year={2026}}",
|
| 59 |
"creator": {
|
| 60 |
"@type": "sc:Organization",
|
|
|
|
| 217 |
"@type": "cr:RecordSet",
|
| 218 |
"@id": "distributional-summary",
|
| 219 |
"name": "Distributional Summary",
|
| 220 |
+
"description": "One row per benchmark configuration from distributional runs (statistical sampling from lognormal fits to recorded workload statistics).",
|
| 221 |
"field": [
|
| 222 |
{
|
| 223 |
"@type": "cr:Field",
|
|
|
|
| 366 |
{
|
| 367 |
"@id": "https://github.com/xlang-ai/OSWorld",
|
| 368 |
"name": "OSWorld"
|
| 369 |
+
},
|
| 370 |
+
{
|
| 371 |
+
"@id": "https://huggingface.co/datasets/Aeala/ShareGPT_Vicuna_unfiltered",
|
| 372 |
+
"name": "ShareGPT"
|
| 373 |
}
|
| 374 |
],
|
| 375 |
"prov:wasGeneratedBy": {
|