raft / README.md
neelalex's picture
Updating with licensed information
e738bcb
metadata
YAML tags: null
annotations_creators:
  - expert-generated
  - crowdsourced
language_creators:
  - expert-generated
languages:
  - en-US
licenses:
  - other-individual-licenses
multilinguality:
  - monolingual
pretty_name: ''
size_categories:
  - unknown
source_datasets:
  - original
  - extended|ade_corpus_v2
  - extended|banking77
task_categories:
  - text-classification
task_ids:
  - multi-class-classification

Dataset Card for RAFT

Table of Contents

Dataset Description

Dataset Summary

The Real-world Annotation for Few-shot Tasks (RAFT) dataset is an aggregation of English-language datasets found in the real world. Associated with each dataset is a binary or multiclass classification task, intended to improve our understanding of how language models perform on tasks that have concrete, real-world value. Only 50 labeled examples are provided in each dataset.

Supported Tasks and Leaderboards

  • text-classification: Each subtask in RAFT is a text classification task, and the provided train and test sets can be used to submit to the RAFT Leaderboard To prevent overfitting and tuning on a held-out test set, the leaderboard is only evaluated once per week. Each task has its macro-f1 score calculated, then those scores are averaged to produce the overall leaderboard score.

Languages

RAFT is entirely in American English (en-US).

Dataset Structure

Data Instances

Dataset First Example
Ade Corpus V2
Sentence: No regional side effects were noted.
ID: 0
Label: 2
Banking 77
Query: Is it possible for me to change my PIN number?
ID: 0
Label: 23
Neurips Impact Statement Risks
Paper title: Auto-Panoptic: Cooperative Multi-Component Architecture Search for Panoptic Segmentation...
Paper link: https://proceedings.neurips.cc/paper/2020/file/ec1f764517b7ffb52057af6df18142b7-Paper.pdf...
Impact statement: This work makes the first attempt to search for all key components of panoptic pipeline and manages to accomplish this via the p...
ID: 0
Label: 1
One Stop English
Article: For 85 years, it was just a grey blob on classroom maps of the solar system. But, on 15 July, Pluto was seen in high resolution ...
ID: 0
Label: 3
Overruling
Sentence: in light of both our holding today and previous rulings in johnson, dueser, and gronroos, we now explicitly overrule dupree....
ID: 0
Label: 2
Semiconductor Org Types
Paper title: 3Gb/s AC-coupled chip-to-chip communication using a low-swing pulse receiver...
Organization name: North Carolina State Univ.,Raleigh,NC,USA
ID: 0
Label: 3
Systematic Review Inclusion
Title: Prototyping and transforming facial textures for perception research...
Abstract: Wavelet based methods for prototyping facial textures for artificially transforming the age of facial images were described. Pro...
Authors: Tiddeman, B.; Burt, M.; Perrett, D.
Journal: IEEE Comput Graphics Appl
ID: 0
Label: 2
Tai Safety Research
Title: Malign generalization without internal search
Abstract Note: In my last post, I challenged the idea that inner alignment failures should be explained by appealing to agents which perform ex...
Url: https://www.alignmentforum.org/posts/ynt9TD6PrYw6iT49m/malign-generalization-without-internal-search...
Publication Year: 2020
Item Type: blogPost
Author: Barnett, Matthew
Publication Title: AI Alignment Forum
ID: 0
Label: 1
Terms Of Service
Sentence: Crowdtangle may change these terms of service, as described above, notwithstanding any provision to the contrary in any agreemen...
ID: 0
Label: 2
Tweet Eval Hate
Tweet: New to Twitter-- any men on here know what the process is to get #verified?...
ID: 0
Label: 2
Twitter Complaints
Tweet text: @HMRCcustomers No this is my first job
ID: 0
Label: 2

Data Fields

The ID field is used for indexing data points. It will be used to match your submissions with the true test labels, so you must include it in your submission. All other columns contain textual data. Some contain links and URLs to websites on the internet.

All output fields are designated with the "Label" column header. The 0 value in this column indicates that the entry is unlabeled, and should only appear in the unlabeled test set. Other values in this column are various other labels. To get their textual value for a given dataset:

# Load the dataset
dataset = datasets.load_dataset("ought/raft", "ade_corpus_v2")
# First, get the object that holds information about the "Label" feature in the dataset.
label_info = dataset.features["Label"]
# Use the int2str method to access the textual labels.
print([label_info.int2str(i) for i in (0, 1, 2)])
# ['Unlabeled', 'ADE-related', 'not ADE-related']

Data Splits

There are two splits provided: train data and unlabeled test data.

The training examples were chosen at random. No attempt was made to ensure that classes were balanced or proportional in the training data -- indeed, the Banking 77 task with 77 different classes if used cannot fit all of its classes into the 50 training examples.

Dataset Train Size Test Size
Ade Corpus V2 50 5000
Banking 77 50 5000
Neurips Impact Statement Risks 50 150
One Stop English 50 518
Overruling 50 2350
Semiconductor Org Types 50 449
Systematic Review Inclusion 50 2244
TAI Safety Research 50 1639
Terms Of Service 50 5000
Tweet Eval Hate 50 2966
Twitter Complaints 50 3399
Total 550 28715

Dataset Creation

Curation Rationale

[More Information Needed]

Source Data

Initial Data Collection and Normalization

[More Information Needed]

Who are the source language producers?

[More Information Needed]

Annotations

Annotation process

[More Information Needed]

Who are the annotators?

[More Information Needed]

Personal and Sensitive Information

[More Information Needed]

Considerations for Using the Data

Social Impact of Dataset

[More Information Needed]

Discussion of Biases

[More Information Needed]

Other Known Limitations

[More Information Needed]

Additional Information

Dataset Curators

[More Information Needed]

Licensing Information

RAFT aggregates many other datasets, each of which is provided under its own license. Generally, those licenses permit research and commercial use.

Dataset License
Ade Corpus V2 Unlicensed
Banking 77 CC BY 4.0
Neurips Impact Statement Risks MIT License/CC BY 4.0
One Stop English CC BY-SA 4.0
Overruling Unlicensed
Semiconductor Org Types CC BY-NC 4.0
Systematic Review Inclusion CC BY 4.0
Tai Safety Research CC BY-SA 4.0
Terms Of Service Unlicensed
Tweet Eval Hate Unlicensed
Twitter Complaints Unlicensed

Citation Information

[More Information Needed]

Contributions

Thanks to @neel-alex, @uvafan, and @lewtun for adding this dataset.