BICORP's picture
Upload README.md with huggingface_hub
7584d65 verified
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: 32005
      num_examples: 95
  download_size: 20675
  dataset_size: 32005
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*
tags:
  - synthetic
  - distilabel
  - rlaif
  - datacraft

Built with Distilabel

Dataset Card for my-distiset-a49e40b2

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-a49e40b2/raw/main/pipeline.yaml"

or explore the configuration:

distilabel pipeline info --config "https://huggingface.co/datasets/BICORP/my-distiset-a49e40b2/raw/main/pipeline.yaml"

Dataset structure

The examples have the following structure per configuration:

Configuration: default
{
    "label": 2,
    "text": "While exploring the world of art, I stumbled upon a fascinating expression of human emotion through abstract painting. The use of vibrant colors and bold brushstrokes evokes a sense of freedom and creativity, much like a symphony of colors on canvas."
}

This subset can be loaded as:

from datasets import load_dataset

ds = load_dataset("BICORP/my-distiset-a49e40b2", "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-a49e40b2")