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
01RLHFlow /UltraFeedback-preference-standardWe include all the possible comparisons following the Instruct-GPT. We use the fine-grained_score. import os import matplotlib.pyplot as plt import numpy as np import pandas as pd from datasets import load_dataset, DatasetDict from transformers import AutoTokenizer from tqdm import tqdm from transformers import AutoTokenizer ds = load_dataset("openbmb/UltraFeedback", split="train") import itertools data = [] for example in ds: prompt = example['instruction'] responses = {}… See the full description on the dataset page: https://huggingface.co/datasets/RLHFlow/UltraFeedback-preference-standard.tabular100K<n<1M15 likes434 downloads2y agoHugging Face02nvidia /Nemotron-RLHF-GenRM-v1 Dataset Description: This dataset is designed to train Generative Reward Models (GenRMs). It leverages reinforcement learning at scale to train accurate and robust GenRMs that generalize better than traditional Bradley-Terry models and reduce the risk of reward hacking. The dataset is composed of: Preference data focused on diverse domains A synthetic safety blend The data follows a "meta-prompt" structure where the model is instructed to act as an expert evaluation judge. For… See the full description on the dataset page: https://huggingface.co/datasets/nvidia/Nemotron-RLHF-GenRM-v1.tabularreinforcement-learning100K<n<1M5 likes179 downloads7mo agoHugging Face03RLHFlow /Helpsteer-preference-standardtabular10K<n<100K6 likes175 downloads2y agoHugging Face04liyucheng /zhihu_rlhf_3ktabular1K<n<10K100 likes173 downloads3y agoHugging Face05OpenMOSS-Team /hh-rlhf-strength-cleaned Dataset Card for hh-rlhf-strength-cleaned Other Language Versions: English, 中文. Dataset Description In the paper titled "Secrets of RLHF in Large Language Models Part II: Reward Modeling" we measured the preference strength of each preference pair in the hh-rlhf dataset through model ensemble and annotated the valid set with GPT-4. In this repository, we provide: Metadata of preference strength for both the training and valid sets. GPT-4 annotations on the valid set. We… See the full description on the dataset page: https://huggingface.co/datasets/OpenMOSS-Team/hh-rlhf-strength-cleaned.tabular100K<n<1M25 likes135 downloads3y agoHugging Face06RLHFlow /Argilla-Math-DPO-standardtabular1K<n<10K3 likes134 downloads2y agoHugging Face07rlhf-and-friends /proofwriter-source ProofWriter (The Source) An unmodified copy of AI2's ProofWriter dataset (release V2020.12.3), re-hosted as datasets configs for convenient loading. The records are faithful to the upstream release — the id-keyed JSON is preserved as-is; typing and reasoning-graph extraction happen in later stages. Each config is a {world}-depth-{n} shelf of the synthetic core (OWA/CWA × depths 0/1/2/3/5), split train/dev/test (dev kept as the corpus names it). Source:… See the full description on the dataset page: https://huggingface.co/datasets/rlhf-and-friends/proofwriter-source.tabular100K<n<1M0 likes125 downloads1mo agoHugging Face08polinaeterna /hh-rlhf Dataset Card for HH-RLHF Dataset Summary This repository provides access to two different kinds of data: Human preference data about helpfulness and harmlessness from Training a Helpful and Harmless Assistant with Reinforcement Learning from Human Feedback. These data are meant to train preference (or reward) models for subsequent RLHF training. These data are not meant for supervised training of dialogue agents. Training dialogue agents on these data is likely to lead… See the full description on the dataset page: https://huggingface.co/datasets/polinaeterna/hh-rlhf.tabular100K<n<1M1 likes114 downloads3y agoHugging Face09RLHFlow /Capybara-distibalel-Filter-standardFrom argilla/Capybara-Preferences-Filtered. We process it into the standard format. tabular10K<n<100K0 likes113 downloads2y agoHugging Face10RLHFlow /Orca-distibalel-standardFrom argilla/distilabel-intel-orca-dpo-pairs. We delete the pairs with the same score. def process_example(example): prompt = example['input'] chosen_response = example['chosen'] rejected_response = example['rejected'] if example['rating'] is None: chosen_rating = None rejected_rating = None else: if example['order'][0] == 'chosen': chosen_rating = example['rating'][0] rejected_rating = example['rating'][1] elif… See the full description on the dataset page: https://huggingface.co/datasets/RLHFlow/Orca-distibalel-standard.tabular1K<n<10K1 likes106 downloads2y agoHugging Face11rlhf-and-friends /proofwriter-mirror ProofWriter (The Mirror) A typed, content-faithful mirror of AI2's ProofWriter dataset (release V2020.12.3), derived from proofwriter-source. The JSON encoding is cleaned up: the id-keyed dicts (triple1, Q3, …) become lists of structs that keep their id, every atom representation is parsed into a typed {subject, relation, object, polarity} triple, and the closed enums (answer, strategy) are typed. The content stays faithful — nothing renamed, no rows dropped — and the recursive… See the full description on the dataset page: https://huggingface.co/datasets/rlhf-and-friends/proofwriter-mirror.tabular100K<n<1M0 likes95 downloads23d agoHugging Face12RLHFlow /SHP-standardThe original dataset is the train set of stanfordnlp/SHP. We only keep the pair with ratio > 2.0 and take at most 5 pairs per prompt. def filter_example(example): prompt = example['history'] if example['labels'] == 0: ratio = example['score_B'] * 1.0 / example['score_A'] elif example['labels'] == 1: ratio = example['score_A'] * 1.0 / example['score_B'] if ratio > 2.0: return True else: return False import itertools from collections… See the full description on the dataset page: https://huggingface.co/datasets/RLHFlow/SHP-standard.tabular10K<n<100K0 likes89 downloads2y agoHugging Face13andersonbcdefg /anthropic-hh-rlhf-conversations-with-toxicities Dataset Card for "anthropic-hh-rlhf-conversations-with-toxicities" More Information needed tabular100K<n<1M1 likes62 downloads3y agoHugging Face14nvidia /Nemotron-Cascade-RL-RLHF Dataset Description: The Nemotron-Cascade-RL-RLHF dataset is designed for Reinforcement Learning from Human Feedback (RLHF) training. It contains prompts and associated metadata to support the development of language model alignment. This dataset is ready for commercial use. The dataset contains the following subset: RLHF Training Data This data contains 45,882 samples used for RLHF training. It includes prompts, data sources, and category information. This dataset is a… See the full description on the dataset page: https://huggingface.co/datasets/nvidia/Nemotron-Cascade-RL-RLHF.tabular10K<n<100K11 likes61 downloads9mo agoHugging Face15jamesdborin /Nemotron-RLHF-GenRM-v1-prompt-only Nemotron-RLHF-GenRM-v1-prompt-only Prompt-only extraction from nvidia/Nemotron-RLHF-GenRM-v1. Files: prompts.csv: one prompt extraction record per source row. Records include prompt, separated system_prompt, and structured tools when the source row defines available tools. Nested values are JSON-encoded inside CSV cells. summary.md: source row counts, extracted row counts, count deltas, and failed prompt counts. null_or_empty_rows.md: row indexes where prompt extraction… See the full description on the dataset page: https://huggingface.co/datasets/jamesdborin/Nemotron-RLHF-GenRM-v1-prompt-only.tabular100K<n<1M0 likes53 downloads3mo agoHugging Face16alwaysgood /korean_rlhf_content_filtered Korean RLHF Content Filtered Dataset Summary This dataset is a cleaned, content-only derivative of: Source dataset: jojo0217/korean_rlhf_dataset Source URL: https://huggingface.co/datasets/jojo0217/korean_rlhf_dataset Each row has a single content field suitable for LM pretraining/SFT-style text modeling. Construction Content construction rule For each source row: If input is empty: content = instruction + "\n" + output If input is not empty:… See the full description on the dataset page: https://huggingface.co/datasets/alwaysgood/korean_rlhf_content_filtered.tabulartext-generation100K<n<1M0 likes51 downloads6mo agoHugging Face17MWilinski /rlhf-irltabular10K<n<100K0 likes49 downloads5mo agoHugging Face18NordosoftOy /innoduel-rlhf-real-world-human-preferences-sample Real-World Human Pairwise Preferences — Public Sample 📦 This is a free, public sample of a commercial dataset. It contains 1,350 rows curated for inspection. The full dataset has 1.5 million human pairwise-preference decisions. Full dataset: https://huggingface.co/datasets/NordosoftOy/innoduel-rlhf Request access / licensing: see § Access to the full dataset — contact kari.nieminen@nordo.fi. Use this sample to evaluate the data's quality, structure and… See the full description on the dataset page: https://huggingface.co/datasets/NordosoftOy/innoduel-rlhf-real-world-human-preferences-sample.tabulartext-generation1K<n<10K0 likes43 downloads1mo agoHugging Face19At-Tawheed /Anis-RLHFtabular10M<n<100M0 likes42 downloads4mo agoHugging Face20abidinesen /Kusursuz_Ajan_Turkish_RLHF Kusursuz Ajan (Flawless Agent) - Turkish RLHF Dataset (50-Sample Preview) 🌍 (English below / İngilizce metin aşağıdadır) Bu repository, Türkçe yapay zeka eğitimleri için hazırlanan devasa ve ultra yüksek kaliteli Kusursuz Ajan veri setinin 50 kayıtlık bir vitrin örneğidir. Örnek veri setini indirerek, modellerinizde RLHF/DPO ince ayarlarını test edebilir, veri setimizin barındırdığı zengin metadata (Intent, Tone, Subtext) yapısını inceleyebilirsiniz. 1518 kayıtlık… See the full description on the dataset page: https://huggingface.co/datasets/abidinesen/Kusursuz_Ajan_Turkish_RLHF.tabularn<1K0 likes41 downloads5d agoHugging Face21Columbia-NLP /DPO-hh-rlhf Dataset Card for DPO-hh-rlhf Reformatted from Anthropic/hh-rlhf dataset. The LION-series are trained using an empirically optimized pipeline that consists of three stages: SFT, DPO, and online preference learning (online DPO). We find simple techniques such as sequence packing, loss masking in SFT, increasing the preference dataset size in DPO, and online DPO training can significantly improve the performance of language models. Our best models (the LION-series) exceed the… See the full description on the dataset page: https://huggingface.co/datasets/Columbia-NLP/DPO-hh-rlhf.tabular100K<n<1M0 likes38 downloads2y agoHugging Face22utk6 /anthropic-rlhf-human-values-dpotabular10K<n<100K0 likes37 downloads1y agoHugging Face23germank /hh-rlhf_with_features_flan_t5_large Dataset Card for "hh-rlhf_with_features_flan_t5_large" More Information needed tabular10K<n<100K0 likes36 downloads3y agoHugging Face24tomekkorbak /hh-rlhf_with_features Dataset Card for "hh-rlhf_with_features" More Information needed tabular10K<n<100K1 likes33 downloads3y agoHugging Face25germank /hh-rlhf_with_features_flan_t5_large-no_eos Dataset Card for "hh-rlhf_with_features_flan_t5_large" More Information needed tabular10K<n<100K0 likes30 downloads3y agoHugging Face26douwmarx /hh-rlhf-constitutional-sensitivities-of-pms Constitutional-Sensitivities of HH-RLHF dataset Description A subset of query-response pairs from the Anthropic hh-rlhf dataset including: Original query and response Perturbed response using gpt-40-mini according a given constitutional principle from a Collective constitutional AI dataset using a critique and revision step. Resources for this project are available here: https://github.com/DouwMarx/constitutional_sensitivities_of_preference_models tabular10K<n<100K0 likes27 downloads2y agoHugging Face27pheonix-delta /WiredBrain-RLHF WiredBrain-RLHF: Production-Grade Data for High-Integrity AI Alignment Overview WiredBrain-RLHF transforms the foundational Anthropic HH-RLHF dataset (148K conversations) into a production-grade training resource through systematic data enrichment. Engineered by Shubham Dev (Department of Computer Science, Jaypee University of Information Technology, India), this dataset powers high-stakes AI alignment research requiring factual integrity and entity preservation.… See the full description on the dataset page: https://huggingface.co/datasets/pheonix-delta/WiredBrain-RLHF.tabularreinforcement-learning100K<n<1M1 likes26 downloads7mo agoHugging Face28RLHFlow /ArmoRM-Multi-Objective-Data-v0.1tabular100K<n<1M3 likes24 downloads2y agoHugging Face29TheRealPilot638 /Qwen3-8B-BS16-RLHF-PRM-GPQAtabularn<1K0 likes24 downloads1y agoHugging Face30Neuronovo /rlhf_synthetic_generalizedtabularn<1K0 likes23 downloads2y agoHugging Face

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