Pclanglais commited on
Commit
67d7f92
·
verified ·
1 Parent(s): cf42c47

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -20
README.md CHANGED
@@ -4,6 +4,10 @@ configs:
4
  data_files:
5
  - split: train
6
  path: epo_patents/*.parquet
 
 
 
 
7
  - config_name: wikidata_seed
8
  data_files:
9
  - split: train
@@ -21,12 +25,16 @@ Volumes below describe what is available beyond these samples.
21
 
22
  | Config | Sample | Available |
23
  |---|---|---|
24
- | `epo_patents` | 5,000 patents / 72,662 sections / 102M tokens, with source PDFs | 1.08M patents processed (2020-2025); 8.25M-document full-text backfile 1978-2025 (5.49M with description/claims, ~48B words) |
 
25
  | `wikidata_seed` | 1.45M triples / 42k entities | 558M triples, ~34.5 GB |
26
  | `personas` | 100k personas / 108 countries | 57.3M personas |
27
 
28
- More configs to follow: financial regulation (24 regulators, 12+ jurisdictions), 3GPP
29
- specifications, European open science.
 
 
 
30
 
31
  ## epo_patents
32
 
@@ -36,25 +44,31 @@ document **section**, with document metadata repeated on each row (`document_id`
36
 
37
  Composition notes: bibliographic front pages, figure lists, and boilerplate disclaimers are
38
  removed; paragraphs are reassembled across column and page breaks; margin line-numbering is
39
- dropped. Citation lists are kept but flagged (`is_document_list`) rather than deleted, since
40
- they carry citation structure. Bibliographic fields come from the document itself (INID codes),
41
- so `identifier` is the publication number and supplementary fields sit in `metadata` as JSON
42
- (`application_number`, `filing_date`, `ipc`, `inventors`, `kind_code`, `grant_or_prior_date`,
43
- `source_file`).
44
 
45
  `date` is the publication year. Some documents are republications after opposition, where the
46
  original grant year differs — that year is preserved in `metadata`.
47
 
48
- ### Source PDFs
 
 
 
 
 
 
 
 
 
49
 
50
- `epo_patents/pdfs/epo_pdfs_<year>.tar` (6 files, 3.83 GB total) hold the original PDF for every
51
- patent in the config. Tar members are named by **publication number** — `2023/EP1343809B2.pdf`
52
- so they join directly to `document_id`, even though the files as distributed by the EPO are named
53
- by application number. `epo_patents/epo_5k_pdf_manifest.parquet` maps
54
- `document_id -> tar, member, source_file, bytes`.
55
 
56
- This pairs each processed text with the page images it came from, for evaluating extraction
57
- quality or for document-understanding training.
 
58
 
59
  ## wikidata_seed
60
 
@@ -77,10 +91,9 @@ Synthetic population personas across 108 countries, demographically grounded: na
77
  place (with coordinates and settlement tier), marital status, education, employment status,
78
  occupation, religion, monthly income in PPP dollars, and health conditions.
79
 
80
- Location is given as place name with coordinates and settlement tier (administrative subdivision
81
- codes are not included). This sample is drawn across the full corpus and shuffled; per-country
82
- counts stay proportional to the underlying population weighting. `persona_id` is globally unique
83
- (`country`-`id`).
84
 
85
  ## Licensing
86
 
 
4
  data_files:
5
  - split: train
6
  path: epo_patents/*.parquet
7
+ - config_name: eu_science
8
+ data_files:
9
+ - split: train
10
+ path: eu_science/*.parquet
11
  - config_name: wikidata_seed
12
  data_files:
13
  - split: train
 
25
 
26
  | Config | Sample | Available |
27
  |---|---|---|
28
+ | `epo_patents` | 5,000 patents / 72,662 sections / 102M tokens, with source PDFs | 1.08M patents processed (2020-2025); 8.25M-document full-text backfile 1978-2025 (~48B words) |
29
+ | `eu_science` | 4,704 papers / 69.5M tokens, with source PDFs | 1.43M documents, ~19B tokens, 204 languages |
30
  | `wikidata_seed` | 1.45M triples / 42k entities | 558M triples, ~34.5 GB |
31
  | `personas` | 100k personas / 108 countries | 57.3M personas |
32
 
33
+ More configs to follow: financial regulation (24 regulators, 12+ jurisdictions) and 3GPP
34
+ specifications.
35
+
36
+ Two configs ship the **source PDFs** alongside the processed text, so extraction quality can be
37
+ judged directly and the pairing can be used for document-understanding training.
38
 
39
  ## epo_patents
40
 
 
44
 
45
  Composition notes: bibliographic front pages, figure lists, and boilerplate disclaimers are
46
  removed; paragraphs are reassembled across column and page breaks; margin line-numbering is
47
+ dropped. Citation lists are kept but flagged (`is_document_list`). Bibliographic fields come
48
+ from the document itself (INID codes), so `identifier` is the publication number and
49
+ supplementary fields sit in `metadata` as JSON.
 
 
50
 
51
  `date` is the publication year. Some documents are republications after opposition, where the
52
  original grant year differs — that year is preserved in `metadata`.
53
 
54
+ **Source PDFs**: `epo_patents/pdfs/epo_pdfs_<year>.tar` (6 files, 3.83 GB). Members are named by
55
+ publication number — `2023/EP1343809B2.pdf` — so they join to `document_id`, even though the
56
+ files as distributed by the EPO are named by application number.
57
+ `epo_patents/epo_5k_pdf_manifest.parquet` maps `document_id -> tar, member, source_file, bytes`.
58
+
59
+ ## eu_science
60
+
61
+ Scientific literature processed from PDF at scale — open-access papers across many languages,
62
+ one row per document. 4,704 papers drawn evenly across the corpus so the language mix is
63
+ representative rather than clustered.
64
 
65
+ `language` is empty for ~22% of rows: those documents come from a source pile whose language
66
+ metadata was blank, and the shards they sit in predate language detection. Everything else
67
+ carries a resolved language name.
 
 
68
 
69
+ **Source PDFs**: `eu_science/pdfs/science_pdfs_<nn>.tar` (5 files, 5.27 GB). Members are named
70
+ `<openalex_id>.pdf`, joining directly to `identifier`.
71
+ `eu_science/science_5k_pdf_manifest.parquet` maps `identifier -> tar, member, bytes`.
72
 
73
  ## wikidata_seed
74
 
 
91
  place (with coordinates and settlement tier), marital status, education, employment status,
92
  occupation, religion, monthly income in PPP dollars, and health conditions.
93
 
94
+ Location is given as place name with coordinates and settlement tier. This sample is drawn
95
+ across the full corpus and shuffled; per-country counts stay proportional to the underlying
96
+ population weighting. `persona_id` is globally unique (`country`-`id`).
 
97
 
98
  ## Licensing
99