simple_wikipedia_LM / README.md
pszemraj's picture
Upload README.md with huggingface_hub
d04e233
metadata
language:
  - en
license: apache-2.0
size_categories:
  - 100K<n<1M
source_datasets: pszemraj/simple_wikipedia
task_categories:
  - text-generation
  - fill-mask
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*
      - split: validation
        path: data/validation-*
      - split: test
        path: data/test-*
  - config_name: original
    data_files:
      - split: train
        path: original/train-*
      - split: validation
        path: original/validation-*
      - split: test
        path: original/test-*
dataset_info:
  - config_name: default
    features:
      - name: id
        dtype: string
      - name: url
        dtype: string
      - name: title
        dtype: string
      - name: text
        dtype: string
    splits:
      - name: train
        num_bytes: 226591788.10427773
        num_examples: 225984
      - name: validation
        num_bytes: 6317396.37117904
        num_examples: 5949
      - name: test
        num_bytes: 5759121.344138394
        num_examples: 5943
    download_size: 138897596
    dataset_size: 238668305.81959516
  - config_name: original
    features:
      - name: id
        dtype: string
      - name: url
        dtype: string
      - name: title
        dtype: string
      - name: text
        dtype: string
    splits:
      - name: train
        num_bytes: 248051733
        num_examples: 226242
      - name: validation
        num_bytes: 6910685
        num_examples: 5954
      - name: test
        num_bytes: 6359625
        num_examples: 5954
    download_size: 152618788
    dataset_size: 261322043

Dataset Card for "simple_wikipedia_LM"

A filtered/edited version of pszemraj/simple_wikipedia that removes headings/contents that appear in the text column without any relevant text for them (at least in the simple split).

import re


def split_on_headings(text):
    headings = ["References", "Related pages", "Other websites", "Further reading"]

    for heading in headings:

        parts = re.split(
            r"^\s*" + re.escape(heading) + r".*$", text, flags=re.MULTILINE
        )

        if len(parts) > 1:
            return parts[0].strip()

    return text


text = """
Central Zazaki is a dialect of the Zazaki language. It is spoken in Eastern Anatolia Region of Turkey. 
Related pages
Zazaki
Central Anatolia Region
Other websites
example.com
"""

print(split_on_headings(text))