UTMISTChatbot2025's picture
Upload README.md with huggingface_hub
6423d3a verified
metadata
size_categories: n<1K
task_categories:
  - text-classification
dataset_info:
  features:
    - name: text
      dtype: string
    - name: labels
      sequence:
        class_label:
          names:
            '0': provide preference
            '1': reject recommendation
            '2': inquire
            '3': accept recommendation
  splits:
    - name: train
      num_bytes: 1332
      num_examples: 10
  download_size: 2577
  dataset_size: 1332
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*
tags:
  - synthetic
  - distilabel
  - rlaif
  - datacraft

Built with Distilabel

Dataset Card for my-distiset-859d4555

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/UTMISTChatbot2025/my-distiset-859d4555/raw/main/pipeline.yaml"

or explore the configuration:

distilabel pipeline info --config "https://huggingface.co/datasets/UTMISTChatbot2025/my-distiset-859d4555/raw/main/pipeline.yaml"

Dataset structure

The examples have the following structure per configuration:

Configuration: default
{
    "labels": [
        0,
        2
    ],
    "text": "I\u0027m looking for resources on machine learning models for natural language processing to improve my text analysis skills."
}

This subset can be loaded as:

from datasets import load_dataset

ds = load_dataset("UTMISTChatbot2025/my-distiset-859d4555", "default")

Or simply as it follows, since there's only one configuration and is named default:

from datasets import load_dataset

ds = load_dataset("UTMISTChatbot2025/my-distiset-859d4555")