ianporada commited on
Commit
bd97593
1 Parent(s): 71754df

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md CHANGED
@@ -1,4 +1,5 @@
1
  ---
 
2
  dataset_info:
3
  features:
4
  - name: inputs
@@ -23,3 +24,49 @@ configs:
23
  - split: train
24
  path: data/train-*
25
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
  dataset_info:
4
  features:
5
  - name: inputs
 
24
  - split: train
25
  path: data/train-*
26
  ---
27
+
28
+ # Flan 2021 Coreference Tasks
29
+
30
+ - Project: https://github.com/google-research/FLAN/tree/main/flan/v2
31
+ - Data source: [DataProvenanceInitiative/flan2021_submix_original](https://huggingface.co/datasets/DataProvenanceInitiative/flan2021_submix_original)
32
+
33
+ ## Details
34
+
35
+ This dataset contains all coreference examples that were included in the [Flan 2022 collection](https://github.com/google-research/FLAN/tree/main/flan/v2) which were orignally included in Flan 2021.
36
+
37
+ The data is copied from the preprocessed Flan2021 dataset at [DataProvenanceInitiative/flan2021_submix_original](https://huggingface.co/datasets/DataProvenanceInitiative/flan2021_submix_original).
38
+
39
+ ```python
40
+ COREFERENCE_TASK_NAMES = {
41
+ 'definite_pronoun_resolution:1.1.0',
42
+ 'glue/wnli:2.0.0',
43
+ 'super_glue/wsc.fixed:1.0.2',
44
+ 'winogrande:1.1.0',
45
+ }
46
+ ```
47
+
48
+ This does not include tasks that are tangentially coreference, e.g. "quoref" tasks in "DataProvenanceInitiative/t0_submix_original" and "qrecc" tasks in "DataProvenanceInitiative/dialog_submix_original".
49
+
50
+ ### Fields
51
+
52
+ - `inputs`: a `string` feature.
53
+ - `targets`: a `string` feature.
54
+ - `task_source`: a `string` feature.
55
+ - `task_name`: a `string` feature.
56
+ - `template_type`: a `string` feature.
57
+
58
+ ## Citation
59
+ ```
60
+ @inproceedings{flan_2022_collection,
61
+ author = {Longpre, Shayne and Hou, Le and Vu, Tu and Webson, Albert and Chung, Hyung Won and Tay, Yi and Zhou, Denny and Le, Quoc V. and Zoph, Barret and Wei, Jason and Roberts, Adam},
62
+ title = {The flan collection: designing data and methods for effective instruction tuning},
63
+ year = {2023},
64
+ publisher = {JMLR.org},
65
+ abstract = {We study the design decisions of publicly available instruction tuning methods, by reproducing and breaking down the development of Flan 2022 (Chung et al., 2022). Through careful ablation studies on the Flan Collection of tasks and methods, we tease apart the effect of design decisions which enable Flan-T5 to outperform prior work by 3-17\%+ across evaluation settings. We find task balancing and enrichment techniques are overlooked but critical to effective instruction tuning, and in particular, training with mixed prompt settings (zero-shot, few-shot, chain-of-thought) actually yields equivalent or stronger (2\%+) performance in all settings. In further experiments, we show Flan-T5 requires less finetuning to converge higher and faster than T5 on single downstream tasks--motivating instruction-tuned models as more computationally-efficient starting checkpoints for new tasks. Finally, to accelerate research on instruction tuning, we make the Flan 2022 collection of datasets, templates, and methods publicly available.},
66
+ booktitle = {Proceedings of the 40th International Conference on Machine Learning},
67
+ articleno = {941},
68
+ numpages = {18},
69
+ location = {Honolulu, Hawaii, USA},
70
+ series = {ICML'23}
71
+ }
72
+ ```