myaddressdata / README.md
CoderJon's picture
Upload README.md with huggingface_hub
c9d0aba verified
|
raw
history blame
2.02 kB
metadata
size_categories: n<1K
task_categories:
  - text-classification
dataset_info:
  features:
    - name: text
      dtype: string
    - name: label
      dtype:
        class_label:
          names:
            '0': general delivery format
            '1': us postal service format
            '2': po box format
            '3': street address format
            '4': apo/fpo format
            '5': rural route format
  splits:
    - name: train
      num_bytes: 5220
      num_examples: 82
  download_size: 4200
  dataset_size: 5220
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*
tags:
  - synthetic
  - distilabel
  - rlaif
  - datacraft

Built with Distilabel

Dataset Card for myaddressdata

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

or explore the configuration:

distilabel pipeline info --config "https://huggingface.co/datasets/CoderJon/myaddressdata/raw/main/pipeline.yaml"

Dataset structure

The examples have the following structure per configuration:

Configuration: default
{
    "label": 4,
    "text": "APO CA 92134-1234 Box 1234"
}

This subset can be loaded as:

from datasets import load_dataset

ds = load_dataset("CoderJon/myaddressdata", "default")

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

from datasets import load_dataset

ds = load_dataset("CoderJon/myaddressdata")