David Wadden commited on
Commit
d450c49
1 Parent(s): a8997fc

Small tweaks.

Browse files
Files changed (2) hide show
  1. README.md +5 -3
  2. card.md +5 -3
README.md CHANGED
@@ -144,6 +144,8 @@ import datasets
144
  ds = datasets.load_dataset("allenai/SciRIFF", "4096")
145
  ```
146
 
 
 
147
  ## Dataset details
148
 
149
  Each instance in SciRIFF has the following fields:
@@ -151,7 +153,7 @@ Each instance in SciRIFF has the following fields:
151
  - `input`: Task input (i.e. user message).
152
  - `output`: Task output (i.e. expected model response).
153
  - `_instance_id`: A unique id for the instance, formatted like `{task_name}:{split}:{instance_id}`. For instance, `qasa_abstractive_qa:test:182`.
154
- - `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).
155
  - `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.
156
  - `domains`: Scientific field(s) that the task covers. Options include: `clinical_medicine`, `biomedicine`, `chemistry`, `artificial_intelligence`, `materials_science`, and `misc`.
157
  - `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).
@@ -160,11 +162,11 @@ Each instance in SciRIFF has the following fields:
160
 
161
  ## License
162
 
163
- SciRIFF is licensed under `ODC-By`.
164
 
165
  ## Task provenance
166
 
167
- 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})`.
168
 
169
  | SciRIFF Name | Paper Link | License | Website / Download Link | BigBio Subset |
170
  | :---------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------- | :----------------------------------------------------------------------------------------- | :----------------- |
 
144
  ds = datasets.load_dataset("allenai/SciRIFF", "4096")
145
  ```
146
 
147
+ Code to create the dataset, train models on SciRIFF, and perform evaluation is available at our GitHub repo: https://github.com/allenai/SciRIFF.
148
+
149
  ## Dataset details
150
 
151
  Each instance in SciRIFF has the following fields:
 
153
  - `input`: Task input (i.e. user message).
154
  - `output`: Task output (i.e. expected model response).
155
  - `_instance_id`: A unique id for the instance, formatted like `{task_name}:{split}:{instance_id}`. For instance, `qasa_abstractive_qa:test:182`.
156
+ - `metadata`: Task metadata. More information on the schema for task metadata can be found in the [SciRIFF GitHub repo](https://github.com/allenai/SciRIFF).
157
  - `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.
158
  - `domains`: Scientific field(s) that the task covers. Options include: `clinical_medicine`, `biomedicine`, `chemistry`, `artificial_intelligence`, `materials_science`, and `misc`.
159
  - `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).
 
162
 
163
  ## License
164
 
165
+ SciRIFF is licensed under `ODC-By`. Licenses of the datasets from which SciRIFF is derived are listed [below](#task-provenance).
166
 
167
  ## Task provenance
168
 
169
+ 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 [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 available in BigBio; these can be loaded like `datasets.load_dataset(bigbio/{bigbio_subset})`.
170
 
171
  | SciRIFF Name | Paper Link | License | Website / Download Link | BigBio Subset |
172
  | :---------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------- | :----------------------------------------------------------------------------------------- | :----------------- |
card.md CHANGED
@@ -9,6 +9,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:
@@ -16,7 +18,7 @@ Each instance in SciRIFF has the following fields:
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
  - `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.
21
  - `domains`: Scientific field(s) that the task covers. Options include: `clinical_medicine`, `biomedicine`, `chemistry`, `artificial_intelligence`, `materials_science`, and `misc`.
22
  - `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).
@@ -25,11 +27,11 @@ Each instance in SciRIFF has the following fields:
25
 
26
  ## License
27
 
28
- SciRIFF is licensed under `ODC-By`.
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
  | :---------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------- | :----------------------------------------------------------------------------------------- | :----------------- |
 
9
  ds = datasets.load_dataset("allenai/SciRIFF", "4096")
10
  ```
11
 
12
+ Code to create the dataset, train models on SciRIFF, and perform evaluation is available at our GitHub repo: https://github.com/allenai/SciRIFF.
13
+
14
  ## Dataset details
15
 
16
  Each instance in SciRIFF has the following fields:
 
18
  - `input`: Task input (i.e. user message).
19
  - `output`: Task output (i.e. expected model response).
20
  - `_instance_id`: A unique id for the instance, formatted like `{task_name}:{split}:{instance_id}`. For instance, `qasa_abstractive_qa:test:182`.
21
+ - `metadata`: Task metadata. More information on the schema for task metadata can be found in the [SciRIFF GitHub repo](https://github.com/allenai/SciRIFF).
22
  - `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.
23
  - `domains`: Scientific field(s) that the task covers. Options include: `clinical_medicine`, `biomedicine`, `chemistry`, `artificial_intelligence`, `materials_science`, and `misc`.
24
  - `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).
 
27
 
28
  ## License
29
 
30
+ SciRIFF is licensed under `ODC-By`. Licenses of the datasets from which SciRIFF is derived are listed [below](#task-provenance).
31
 
32
  ## Task provenance
33
 
34
+ 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 [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 available in BigBio; these can be loaded like `datasets.load_dataset(bigbio/{bigbio_subset})`.
35
 
36
  | SciRIFF Name | Paper Link | License | Website / Download Link | BigBio Subset |
37
  | :---------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------- | :----------------------------------------------------------------------------------------- | :----------------- |