pszemraj commited on
Commit
3e4cf01
1 Parent(s): 9e0d43b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -1
README.md CHANGED
@@ -12,4 +12,40 @@ a "stacked" version of `xsum`
12
  ## updates
13
 
14
  - dec 3: upload initial version
15
- - dec 4: upload v2 with basic data quality fixes (i.e. the `is_stacked` column)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ## updates
13
 
14
  - dec 3: upload initial version
15
+ - dec 4: upload v2 with basic data quality fixes (i.e. the `is_stacked` column)
16
+
17
+ ## dataset details
18
+
19
+ see the repo `.log` file for more details.
20
+
21
+ train input
22
+
23
+ ```python
24
+ [2022-12-05 01:05:17] INFO:root:INPUTS - basic stats - train
25
+ [2022-12-05 01:05:17] INFO:root:{'num_columns': 5,
26
+ 'num_rows': 204045,
27
+ 'num_unique_target': 203107,
28
+ 'num_unique_text': 203846,
29
+ 'summary - average chars': 125.46,
30
+ 'summary - average tokens': 30.383719277610332,
31
+ 'text input - average chars': 2202.42,
32
+ 'text input - average tokens': 523.9222230390355}
33
+
34
+ ```
35
+
36
+ stacked train:
37
+
38
+ ```python
39
+ [2022-12-05 04:47:01] INFO:root:stacked 181719 rows, 22326 rows were ineligible
40
+ [2022-12-05 04:47:02] INFO:root:dropped 64825 duplicate rows, 320939 rows remain
41
+ [2022-12-05 04:47:02] INFO:root:shuffling output with seed 323
42
+ [2022-12-05 04:47:03] INFO:root:STACKED - basic stats - train
43
+ [2022-12-05 04:47:04] INFO:root:{'num_columns': 6,
44
+ 'num_rows': 320939,
45
+ 'num_unique_chapters': 320840,
46
+ 'num_unique_summaries': 320101,
47
+ 'summary - average chars': 199.89,
48
+ 'summary - average tokens': 46.29925001324239,
49
+ 'text input - average chars': 2629.19,
50
+ 'text input - average tokens': 621.541532814647}
51
+ ```