Datasets:
metadata
size_categories: n<1K
task_categories:
- text-classification
dataset_info:
features:
- name: text
dtype: string
- name: label
dtype:
class_label:
names:
'0': description&reasoning
'1': question
'2': bestout
splits:
- name: train
num_bytes: 28800
num_examples: 97
download_size: 19398
dataset_size: 28800
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
tags:
- synthetic
- distilabel
- rlaif
- datacraft
Dataset Card for my-distiset-34a39c93
This dataset has been created with distilabel.
Dataset Summary
This dataset contains a pipeline.yaml
which can be used to reproduce the pipeline that generated it in distilabel using the distilabel
CLI:
distilabel pipeline run --config "https://huggingface.co/datasets/BICORP/my-distiset-34a39c93/raw/main/pipeline.yaml"
or explore the configuration:
distilabel pipeline info --config "https://huggingface.co/datasets/BICORP/my-distiset-34a39c93/raw/main/pipeline.yaml"
Dataset structure
The examples have the following structure per configuration:
Configuration: default
{
"label": 1,
"text": "The water cycle is the continuous process by which water circulates between the Earth\u0027s oceans, atmosphere, and land. It involves the movement of water in three phases: liquid, solid (ice), and gas (water vapor). The process begins with evaporation, where the sun heats the surface of the oceans and lakes, causing water to evaporate into the atmosphere. This water vapor rises into the air and forms clouds, which eventually condense into precipitation. The precipitation can be in the form of rain, snow, sleet, or hail. Once the precipitation reaches the ground, it can either soak into the soil or flow over the surface as runoff, eventually returning to the oceans."
}
This subset can be loaded as:
from datasets import load_dataset
ds = load_dataset("BICORP/my-distiset-34a39c93", "default")
Or simply as it follows, since there's only one configuration and is named default
:
from datasets import load_dataset
ds = load_dataset("BICORP/my-distiset-34a39c93")