Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
100K<n<1M
Language Creators:
found
Annotations Creators:
found
Source Datasets:
extended|gigaword_2003
ArXiv:
Tags:
headline-generation
License:
albertvillanova HF staff commited on
Commit
e45e01b
1 Parent(s): 85823cb

Host source data (#5)

Browse files

- Add source data file (1aa097ed010b3e6d1237602a220db4bd72403496)
- Update loading script (2a8f4904b886ea21058fcd7dfc7f6fb85f4d811e)
- Update dataset card (9c3ad04409aef2079f1785977dba2cadb507b009)

Files changed (3) hide show
  1. README.md +17 -18
  2. data/ggw_data.zip +3 -0
  3. gigaword.py +2 -1
README.md CHANGED
@@ -16,21 +16,7 @@ source_datasets:
16
  task_categories:
17
  - summarization
18
  task_ids: []
19
- paperswithcode_id: null
20
  pretty_name: Gigaword
21
- train-eval-index:
22
- - config: default
23
- task: summarization
24
- task_id: summarization
25
- splits:
26
- train_split: train
27
- eval_split: test
28
- col_mapping:
29
- document: text
30
- summary: target
31
- metrics:
32
- - type: rouge
33
- name: Rouge
34
  tags:
35
  - headline-generation
36
  dataset_info:
@@ -41,16 +27,29 @@ dataset_info:
41
  dtype: string
42
  splits:
43
  - name: train
44
- num_bytes: 915249388
45
  num_examples: 3803957
46
  - name: validation
47
- num_bytes: 45767096
48
  num_examples: 189651
49
  - name: test
50
- num_bytes: 450782
51
  num_examples: 1951
52
  download_size: 578402958
53
- dataset_size: 961467266
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  ---
55
 
56
  # Dataset Card for Gigaword
16
  task_categories:
17
  - summarization
18
  task_ids: []
 
19
  pretty_name: Gigaword
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  tags:
21
  - headline-generation
22
  dataset_info:
27
  dtype: string
28
  splits:
29
  - name: train
30
+ num_bytes: 915246340
31
  num_examples: 3803957
32
  - name: validation
33
+ num_bytes: 45766944
34
  num_examples: 189651
35
  - name: test
36
+ num_bytes: 450774
37
  num_examples: 1951
38
  download_size: 578402958
39
+ dataset_size: 961464058
40
+ train-eval-index:
41
+ - config: default
42
+ task: summarization
43
+ task_id: summarization
44
+ splits:
45
+ train_split: train
46
+ eval_split: test
47
+ col_mapping:
48
+ document: text
49
+ summary: target
50
+ metrics:
51
+ - type: rouge
52
+ name: Rouge
53
  ---
54
 
55
  # Dataset Card for Gigaword
data/ggw_data.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc0c4a2e1aa19cf2123688b87bc2d778c0d8fc24a4090e3c10a27c5faa1b898b
3
+ size 578402958
gigaword.py CHANGED
@@ -56,7 +56,8 @@ There are two features:
56
 
57
  """
58
 
59
- _URL = "https://drive.google.com/uc?export=download&id=1USoQ8lJgN8kAWnUnRrupMGrPMLlDVqlV"
 
60
 
61
  _DOCUMENT = "document"
62
  _SUMMARY = "summary"
56
 
57
  """
58
 
59
+ # Source: https://drive.google.com/uc?export=download&id=1USoQ8lJgN8kAWnUnRrupMGrPMLlDVqlV
60
+ _URL = "data/ggw_data.zip"
61
 
62
  _DOCUMENT = "document"
63
  _SUMMARY = "summary"