CoolFace
20 results

helpful

HuggingFaceH4 /helpful-instructions Dataset Card for Helpful Instructions Dataset Summary Helpful Instructions is a dataset of (instruction, demonstration) pairs that are derived from public datasets. As the name suggests, it focuses on instructions that are "helpful", i.e. the kind of questions or tasks a human user might instruct an AI assistant to perform. You can load the dataset as follows: from datasets import load_dataset # Load all subsets helpful_instructions =… See the full description on the dataset page: https://huggingface.co/datasets/HuggingFaceH4/helpful-instructions.text100K<n<1M24 likes3.5k downloads4y agoHugging FaceRLHFlow /HH-RLHF-Helpful-standardWe process the helpful subset of Anthropic-HH into the standard format. The filtering script is as follows. def filter_example(example): if len(example['chosen']) != len(example['rejected']): return False if len(example['chosen']) % 2 != 0: return False n_rounds = len(example['chosen']) for i in range(len(example['chosen'])): if example['chosen'][i]['role'] != ['user', 'assistant'][i % 2]: return False if… See the full description on the dataset page: https://huggingface.co/datasets/RLHFlow/HH-RLHF-Helpful-standard.text100K<n<1M4 likes529 downloads2y agoHugging Facetrl-internal-testing /hh-rlhf-helpful-base-trl-style TRL's Anthropic HH Dataset We preprocess the dataset using our standard prompt, chosen, rejected format. Reproduce this dataset Download the anthropic_hh.py from the https://huggingface.co/datasets/trl-internal-testing/hh-rlhf-helpful-base-trl-style/tree/0.1.0. Run python examples/datasets/anthropic_hh.py --push_to_hub --hf_entity trl-internal-testing text10K<n<100K14 likes483 downloads2y agoHugging FaceHuggingFaceH4 /helpful_instructionsHelpful Instructions is a dataset of (prompt, completion) pairs that are derived from a variety of public datasets. As the name suggests, it focuses on instructions that are "helpful", i.e. the kind of questions or tasks a human user might instruct an AI assistant to perform.texttext-generation100K<n<1M16 likes258 downloads3y agoHugging Facetrl-lib /hh-rlhf-helpful-base HH-RLHF-Helpful-Base Dataset Summary The HH-RLHF-Helpful-Base dataset is a processed version of Anthropic's HH-RLHF dataset, specifically curated to train models using the TRL library for preference learning and alignment tasks. It contains pairs of text samples, each labeled as either "chosen" or "rejected," based on human preferences regarding the helpfulness of the responses. This dataset enables models to learn human preferences in generating helpful responses… See the full description on the dataset page: https://huggingface.co/datasets/trl-lib/hh-rlhf-helpful-base.text10K<n<100K3 likes241 downloads2y agoHugging FaceHuggingFaceH4 /helpful_instructions_splitsThis splits the original helpful_instructions dataset into train and test splits. text10K<n<100K3 likes142 downloads3y agoHugging Face