superglue_wsc_raw / README.md
ianporada's picture
Upload dataset
067eb64 verified
|
raw
history blame
No virus
2.56 kB
metadata
license: unknown
dataset_info:
  config_name: wsc
  features:
    - name: text
      dtype: string
    - name: span1_index
      dtype: int32
    - name: span2_index
      dtype: int32
    - name: span1_text
      dtype: string
    - name: span2_text
      dtype: string
    - name: idx
      dtype: int32
    - name: label
      dtype:
        class_label:
          names:
            - 'False'
            - 'True'
  splits:
    - name: train
      num_bytes: 89311
      num_examples: 554
    - name: validation
      num_bytes: 21521
      num_examples: 104
    - name: test
      num_bytes: 31408
      num_examples: 146
  download_size: 49592
  dataset_size: 142240
configs:
  - config_name: wsc
    data_files:
      - split: train
        path: wsc/train-*
      - split: validation
        path: wsc/validation-*
      - split: test
        path: wsc/test-*

Winograd Schema Challenge examples included in the SuperGLUE Benchmark

Specifically: The wsc and wsc.fixed datasets from the HuggingFace "super_glue" repository.

Data Fields

  • text (str): The text of the schema.
  • span1_index (int): Starting word index of first entity.
  • span2_index (int): Starting word index of second entity.
  • span1_text (str): Textual representation of first entity.
  • span2_text (str): Textual representation of second entity.
  • idx (int): Index of the example in the dataset.
  • label (bool): True if the two spans corefer.

"""The primary SuperGLUE tasks are built on and derived from existing datasets. We refer users to the original licenses accompanying each dataset, but it is our understanding that these licenses allow for their use and redistribution in a research context."""

@inproceedings{NEURIPS2019_4496bf24,
 author = {Wang, Alex and Pruksachatkun, Yada and Nangia, Nikita and Singh, Amanpreet and Michael, Julian and Hill, Felix and Levy, Omer and Bowman, Samuel},
 booktitle = {Advances in Neural Information Processing Systems},
 editor = {H. Wallach and H. Larochelle and A. Beygelzimer and F. d\textquotesingle Alch\'{e}-Buc and E. Fox and R. Garnett},
 pages = {},
 publisher = {Curran Associates, Inc.},
 title = {SuperGLUE: A Stickier Benchmark for General-Purpose Language Understanding Systems},
 url = {https://proceedings.neurips.cc/paper_files/paper/2019/file/4496bf24afe7fab6f046bf4923da8de6-Paper.pdf},
 volume = {32},
 year = {2019}
}

Contributions

Thanks to @thomwolf, @lewtun, @patrickvonplaten for adding this dataset.