datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
livecodebench-plus
LiveCodeBench-v6-Plus
A curated coding benchmark of 91 problems selected by hardness/discrimination
(lcb-v6-plus). It combines two sources, all in one clean schema:
64 evolved problems — mutated/evolved variants from LiveCodeBench-v6
(each carries its seed_problem).
27 original problems — un-evolved AtCoder problems taken directly from
livecodebench/code_generation_lite
release v6 (seed_problem is null).
About BenchEvolver
The evolved problems were produced by… See the full description on the dataset page: https://huggingface.co/datasets/BenchEvolver/livecodebench-plus.LiveCodeBench-CodeGenerationlivecodebench
LiveCodeBench for Code-LLaVA
This dataset contains the LiveCodeBench code generation benchmark prepared for
Code-LLaVA evaluation.
Source
Paper: LiveCodeBench: Holistic and Contamination Free Evaluation of Large Language Models for Code
Repository: https://github.com/LiveCodeBench/LiveCodeBench
Version: release_v6 (May 2023 - Apr 2025, 1055 problems)
Dataset Structure
Two configurations are available:
memwrap: Problems with <|memory_start|> /… See the full description on the dataset page: https://huggingface.co/datasets/tonychenxyz/livecodebench.livecodebench-merging-leaderboard
LiveCodeBench v6 Evaluation Leaderboard
Evaluation results for cross-capability merging of OLMo-3 and OLMo-3.1 RL-Zero models on 454 coding problems.
Evaluation
We followed the evaluation guidelines and prompts from OLMo 3. Best effort was made to ensure reported numbers are as accurate as possible.
Code: pmahdavi/modal-eval
Leaderboard
Model
pass@4
pass@1
Loop Rate
Qwen/Qwen3-4B-Thinking-2507
54.6%
45.4%
0.4%
pmahdavi/Olmo-3-7B-Think-Math-Code… See the full description on the dataset page: https://huggingface.co/datasets/pmahdavi/livecodebench-merging-leaderboard.ATX-Swift-Qwen3.8-27B-Uncensored-IQ4_XS-M-LiveCodeBench-v6
LiveCodeBench v6 — ATX Swift Qwen3.8-27B Uncensored IQ4_XS-M
Public reproducibility package for a four-seed direct code-generation evaluation of
jakeatx/ATX-Swift-Qwen3.8-27B-Uncensored-IQ4_XS-M-GGUF.
Result
357/400 = 89.25% pass@1 across four 100-task seeds. The arithmetic mean of the four seed rates is also 89.25%.
Qwen's published BF16 LiveCodeBench v6 figure is 90.3%; this run is 1.05 percentage points lower.
seed
passed
pass rate
0
90/100
90.00%… See the full description on the dataset page: https://huggingface.co/datasets/jakeatx/ATX-Swift-Qwen3.8-27B-Uncensored-IQ4_XS-M-LiveCodeBench-v6.LiveCodeBench-EvoSyn
EvoSyn-LiveCodeBench: Evolutionary Synthesized Coding Problems
Dataset Description
This dataset contains 231 high-quality coding problems synthesized and filtered using the EvoSyn framework.
Each problem includes diverse and reliable unit tests, specifically designed for reinforcement learning with verifiable rewards (RLVR).
Data Fields
We've adapted the original LiveCodeBench dataset structure, placing all unit tests into the public_test_cases field. This… See the full description on the dataset page: https://huggingface.co/datasets/Elynden/LiveCodeBench-EvoSyn.LiveCodeBench-v6-R182
LiveCodeBench-v6-R182
The 182 problems obtained by taking the release_v6 slice of livecodebench/code_generation_lite and keeping only those with contest_date >= 2025-01-01 (contest dates span 2025-01-04 to 2025-04-06).
Usage
from datasets import load_dataset
ds = load_dataset("jwu323/LiveCodeBench-v6-R182", split="test")
print(ds[0]["question_title"], ds[0]["contest_date"])
