David Wadden commited on
Commit
b825ec1
1 Parent(s): ee551b1

Progress on card.

Browse files
Files changed (1) hide show
  1. card.md +25 -4
card.md CHANGED
@@ -1,6 +1,27 @@
1
  # SciRIFF
2
 
3
- The SciRIFF dataset includes 137K instruction-following demonstrations for 54 scientific literature understanding tasks. The tasks cover five essential scientific literature categories and span five domains.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
  ## License
6
 
@@ -8,10 +29,10 @@ SciRIFF is licensed under `ODC-By`.
8
 
9
  ## Task provenance
10
 
11
- SciRIFF was created by repurposing existing scientific literature understanding datasets. Below we provide information on the source data for each SciRIFF task, including license information on individual datasets where available.
12
 
13
- | SciRIFF Name | Paper Link | License | Website / Download Link |
14
- | :---------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------- | :----------------------------------------------------------------------------------------- |
15
  | `acl_arc_intent_classification` | [ACL ARC](https://aclanthology.org/L08-1005/) | - | <https://github.com/allenai/scicite/> |
16
  | `anat_em_ner` | [AnatEM](https://academic.oup.com/bioinformatics/article/30/6/868/285282) | CC BY | <https://nactem.ac.uk/anatomytagger/#AnatEM> |
17
  | `annotated_materials_syntheses_events` | [Materials Science Procedural Text Corpus](https://aclanthology.org/W19-4007/) | MIT | <https://github.com/olivettigroup/annotated-materials-syntheses> |
 
1
  # SciRIFF
2
 
3
+ The SciRIFF dataset includes 137K instruction-following demonstrations for 54 scientific literature understanding tasks. The tasks cover five essential scientific literature categories and span five domains. The dataset is described in our paper [SciRIFF: A Resource to Enhance Language Model Instruction-Following over Scientific Literature](link.todo).
4
+
5
+ There are three dataset configurations with different max context lengths: 4096, 8192, and 16384. All experiments in the paper are performed with the 4096 context window. You can load the dataset like:
6
+
7
+ ```python
8
+ import datasets
9
+ ds = datasets.load_dataset("allenai/SciRIFF", "4096")
10
+ ```
11
+
12
+ ## Dataset details
13
+
14
+ Each instance in SciRIFF has the following fields:
15
+
16
+ - `input`: Task input (i.e. user message).
17
+ - `output`: Task output (i.e. expected model response).
18
+ - `_instance_id`: A unique id for the instance, formatted like `{task_name}:{split}:{instance_id}`. For instance, `qasa_abstractive_qa:test:182`.
19
+ - `metadata`: Metadata on the task that this particular demonstration is an instance of. More information on the schema for task metadata can be found in the [SciRIFF GitHub repo](https://github.com/allenai/SciRIFF).
20
+ - `domains`: Scientific field(s) that the task covers. Options include: `clinical_medicine`, `biomedicine`, `chemistry`, `artificial_intelligence`, `materials_science`, and `misc`.
21
+ - `input_context`: Whether the input is a paragraph, full text, etc. Options include: `sentence`, `paragraph`, `multiple_paragraphs` (including full paper text), and `structured` (e.g. code for a LaTex table).
22
+ - `source_type`: Indicates whether the input comes from a single paper or multiple. Options include `single_source`, `multiple_source`.
23
+ - `output_context`: Options include: `label`, `sentence`, `paragraph`, `multiple_paragraphs`, `json`, `jsonlines`.
24
+ - `task_family`: The category to which this task belongs. Options include `summarization`, `ie`, `qa`, `entailment`, and `classification`. Some categories have sub-categories which are largely self-explanatory; see the [repo](https://github.com/allenai/SciRIFF) for more information.
25
 
26
  ## License
27
 
 
29
 
30
  ## Task provenance
31
 
32
+ SciRIFF was created by repurposing existing scientific literature understanding datasets. Below we provide information on the source data for each SciRIFF task, including license information on individual datasets where available. Where possible, we leveraged the excellent [BigBIO](https://github.com/bigscience-workshop/biomedical) collection as a starting point, rather than reprocessing datasets from scratch. In the table below, we include the name of the BigBio subset for all tasks included in BigBio; these can be loaded like `datasets.load_dataset(bigbio/{bigbio_subset})`.
33
 
34
+ | SciRIFF Name | Paper Link | License | Website / Download Link | BigBio Subset |
35
+ | :---------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------- | :----------------------------------------------------------------------------------------- | :-------------|
36
  | `acl_arc_intent_classification` | [ACL ARC](https://aclanthology.org/L08-1005/) | - | <https://github.com/allenai/scicite/> |
37
  | `anat_em_ner` | [AnatEM](https://academic.oup.com/bioinformatics/article/30/6/868/285282) | CC BY | <https://nactem.ac.uk/anatomytagger/#AnatEM> |
38
  | `annotated_materials_syntheses_events` | [Materials Science Procedural Text Corpus](https://aclanthology.org/W19-4007/) | MIT | <https://github.com/olivettigroup/annotated-materials-syntheses> |