CoolFace
30 shown

datasets

Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.

Clear all
01google-research-datasets /mbpp Dataset Card for Mostly Basic Python Problems (mbpp) Dataset Summary The benchmark consists of around 1,000 crowd-sourced Python programming problems, designed to be solvable by entry level programmers, covering programming fundamentals, standard library functionality, and so on. Each problem consists of a task description, code solution and 3 automated test cases. As described in the paper, a subset of the data has been hand-verified by us. Released here as part of… See the full description on the dataset page: https://huggingface.co/datasets/google-research-datasets/mbpp.text1K<n<10K258 likes488k downloads3y agoHugging Face02evalplus /mbppplustextn<1K19 likes68k downloads2y agoHugging Face03Muennighoff /mbppThe MBPP (Mostly Basic Python Problems) dataset consists of around 1,000 crowd-sourced Python programming problems, designed to be solvable by entry level programmers, covering programming fundamentals, standard library functionality, and so on. Each problem consists of a task description, code solution and 3 automated test cases.text1K<n<10K29 likes7.3k downloads4y agoHugging Face04allenai /multilingual_mbppMBPP translated to 15 programming languages using o4-mini-medium. source_language = "python" target_languages = [ "cpp", "c", "javascript", "java", "php", "csharp", "typescript", "bash", "swift", "go", "rust", "ruby", "r", "matlab", "scala", "haskell" ] effort = "medium" dataset_name = "google-research-datasets/mbpp" model = "o4-mini" text10K<n<100K2 likes3k downloads1y agoHugging Face05chrisjcundy /mbpp-synthetic-v3text1K<n<10K0 likes2.9k downloads11mo agoHugging Face06taufeeque /mbpp-hardcodetextn<1K0 likes1.7k downloads11mo agoHugging Face07ellamind /mbpp-multilingualtextn<1K0 likes1.2k downloads7mo agoHugging Face08redwoodresearch /mbpp_extended Dataset Card for "mbpp_extended" More Information needed text10K<n<100K2 likes1.1k downloads3y agoHugging Face09PRHW /loom-benchmark-mbpp0 likes954 downloads3mo agoHugging Face10OllieStanley /humaneval-mbpp-codegen-qa Dataset Card for "humaneval-mbpp-codegen-qa" This dataset contains prompt-reply (question-answer) pairs where the prompt is to create a Python function which satisfies the functionality described in a specified docstring. The responses are then the generated functions. textn<1K4 likes882 downloads4y agoHugging Face11nlile /mbpp Dataset Card for Mostly Basic Python Problems (mbpp) Dataset Summary The benchmark consists of around 1,000 crowd-sourced Python programming problems, designed to be solvable by entry level programmers, covering programming fundamentals, standard library functionality, and so on. Each problem consists of a task description, code solution and 3 automated test cases. As described in the paper, a subset of the data has been hand-verified by us. Released here as part of… See the full description on the dataset page: https://huggingface.co/datasets/nlile/mbpp.text1K<n<10K0 likes661 downloads1y agoHugging Face12lmarena-ai /PPE-MBPP-Plus-Best-of-K Overview This contains the MBPP-Plus correctness preference evaluation set for Preference Proxy Evaluations. The prompts are sampled from MBPP-Plus. This dataset is meant for benchmarking and evaluation, not for training. Paper Code License User prompts are licensed under Apache-2.0, and model outputs are governed by the terms of use set by the respective model providers. Citation @misc{frick2024evaluaterewardmodelsrlhf, title={How to Evaluate… See the full description on the dataset page: https://huggingface.co/datasets/lmarena-ai/PPE-MBPP-Plus-Best-of-K.tabularn<1K1 likes624 downloads2y agoHugging Face13embedding-benchmark /MBPPThe MBPP dataset consists of around 1,000 crowd-sourced Python programming problems, designed to be solvable by entry level programmers, covering programming fundamentals, standard library functionality, and so on. Each problem consists of a task description, code solution and 3 automated test cases. As described in the paper, a subset of the data has been hand-verified by the dataset authors to ensure quality. Usage import datasets # Download the dataset queries =… See the full description on the dataset page: https://huggingface.co/datasets/embedding-benchmark/MBPP.texttext-retrieval1K<n<10K0 likes614 downloads1y agoHugging Face14BlazingCustoms /pybytecode-mbpp-3.12 Data card — MBPP held-out decompilation benchmark 383 MBPP reference solutions compiled to Python 3.12 bytecode and paired with their source, with the original task_id restored on every row. Built 2026-08-04 by tools/build_mbpp_ood.py. Redistributable under CC-BY-4.0, provided NOTICES.md ships alongside. The set Rows 383 (400 candidates − 17 contaminated) Source google-research-datasets/mbpp, config full Licence CC-BY-4.0 task_id restored 383 /… See the full description on the dataset page: https://huggingface.co/datasets/BlazingCustoms/pybytecode-mbpp-3.12.tabulartext-generationn<1K0 likes482 downloads2mo agoHugging Face15gabeorlanski /bc-mbppThe MBPP dataset in BabelCode format.text-generation1K<n<10K1 likes362 downloads3y agoHugging Face16nus-yam /mbpp Information This is a reformatted version of the HumanEval dataset textn<1K1 likes259 downloads3y agoHugging Face17zaydzuhri /OpenCodeInstruct-MBPP-Texttext1M<n<10M0 likes199 downloads9mo agoHugging Face18sharkchill-xy /HumanEval_mbpp_format Dataset Card for "HumanEval_mbpp_format" More Information needed textn<1K0 likes193 downloads3y agoHugging Face19determined-ai /mbpp_short Dataset Card for "mbpp_short" More Information needed textn<1K0 likes179 downloads3y agoHugging Face20oliverdk /impossible_mbpp_natural_diversetextn<1K0 likes174 downloads4mo agoHugging Face21llm-jp /mbpp-ja mbpp-ja This repository provides a mbpp dataset translated from English into Japanese by LLM-jp, a collaborative project launched in Japan. For English to Japanese translation, DeepL was used. The links of the original mbpp dataset are here(HuggingFace) or here(GitHub). Send Questions to llm-jp(at)nii.ac.jp Model Card Authors The names are listed in alphabetical order. Namgi Han, Masatoshi Otake, Shintaro Ozaki, Yusuke Miyao. textn<1K3 likes166 downloads2y agoHugging Face22arjunguha /mbppThis is the MBPP dataset. Downloaded from here and constructed as follows: import datasets ds = datasets.load_dataset("json", data_files="mbpp.jsonl", split="train") test = ds.filter(lambda item: item['task_id'] >= 11 and item['task_id'] <= 510) few_shot = ds.filter(lambda item: item['task_id'] >= 1 and item['task_id'] <= 10) validation = ds.filter(lambda item: item['task_id'] >= 511 and item['task_id'] <= 600) train = ds.filter(lambda item: item['task_id'] >= 601 and item['task_id'] <= 974)… See the full description on the dataset page: https://huggingface.co/datasets/arjunguha/mbpp.textn<1K0 likes162 downloads1y agoHugging Face23nuprl /mbpp-agnostic-translationA dataset developed during the Agnostics project. See the Agnostics framework repository for code which dynamically generates the Ag-MBPP-X datasets from this underlying dataset. Also see the HF collection grouping datasets from the project. text1K<n<10K1 likes142 downloads6mo agoHugging Face24reshinthadith /dfg_augmented_mbpp Dataset Card for "dfg_augmented_mbpp" More Information needed textn<1K0 likes124 downloads4y agoHugging Face25firatmio /mbpp-tr MBPP-TR MBPP (Mostly Basic Python Problems) veri setinin Türkçe çevirisi. Orijinal veri setindeki gibi iki config içerir: sanitized ve full. Her satırda görev açıklamasının İngilizce aslı ve Türkçe çevirisi birlikte yer alır; kod ve testler orijinal veri setinden değiştirilmeden aktarılmıştır. A Turkish translation of MBPP with both the sanitized and full configs. Each row contains the original English task description and its Turkish translation; code and tests are copied… See the full description on the dataset page: https://huggingface.co/datasets/firatmio/mbpp-tr.texttext-generation1K<n<10K1 likes122 downloads6d agoHugging Face26gonglinyuan /mbpp_with_prompttextn<1K0 likes117 downloads3y agoHugging Face27RL-Forgetting-Experiments-3 /mbpp-code-rl MBPP for code RL (deduplicated against MBPP+) MBPP prepared for RLVR training in verl, with two independent hold-outs so both MBPP+ and MBPP's own canonical test split stay reportable after training on this data. split rows contents train 320 MBPP canonical train + validation + prompt, minus everything in MBPP+ test 378 exactly the problems in evalplus/mbppplus heldout_mbpp_test 276 MBPP's canonical test split (task_id 11-510) that is not in MBPP+… See the full description on the dataset page: https://huggingface.co/datasets/RL-Forgetting-Experiments-3/mbpp-code-rl.texttext-generationn<1K0 likes110 downloads12d agoHugging Face28CodeEval-Pro /mbpp-proEvaluation dataset for umanEval Pro and MBPP Pro: Evaluating Large Language Models on Self-invoking Code Generation Task (arxiv.org/abs/2412.21199). textn<1K2 likes102 downloads2y agoHugging Face29jannalu /mbpp-longcontext MBPP Long-Context Dataset Overview MBPP Long-Context is a benchmark dataset that combines coding problems from the MBPP (Mostly Basic Python Problems) dataset with long-context distractors from BABILong. This dataset evaluates code generation performance under long-context conditions, testing whether models can maintain coding ability with stuffed context. Dataset Structure Data Fields Each sample contains: Original MBPP Fields… See the full description on the dataset page: https://huggingface.co/datasets/jannalu/mbpp-longcontext.tabulartext-generation10K<n<100K0 likes91 downloads11mo agoHugging Face30RLAIF /mbpp Dataset Card for Mostly Basic Python Problems (mbpp) Dataset Summary The benchmark consists of around 1,000 crowd-sourced Python programming problems, designed to be solvable by entry level programmers, covering programming fundamentals, standard library functionality, and so on. Each problem consists of a task description, code solution and 3 automated test cases. As described in the paper, a subset of the data has been hand-verified by us. Released here as part of… See the full description on the dataset page: https://huggingface.co/datasets/RLAIF/mbpp.text1K<n<10K0 likes85 downloads1y agoHugging Face

Listings come live from the Hugging Face Hub API. CoolFace does not host these files.