rafmacalaba commited on
Commit
bfec16c
·
verified ·
1 Parent(s): ff60c4f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language: [en]
4
+ tags:
5
+ - data-use
6
+ - provenance
7
+ - usage-impact
8
+ - world-bank
9
+ - fcv
10
+ - named-entity-recognition
11
+ configs:
12
+ - config_name: default
13
+ data_files:
14
+ - split: train
15
+ path: train.jsonl
16
+ ---
17
+
18
+ # fcv-extractions-meta-reliefweb
19
+
20
+ Data-use mention extractions from the World Bank Fragility, Conflict and Violence (FCV) document corpus, enriched by the fine-tuned `rafmacalaba/lfm2.5-350M-datause-multitask` model (a LoRA SFT of `LiquidAI/LFM2.5-350M`).
21
+
22
+ ## Shape
23
+
24
+ long — one row per mention; `provenance` and `usage_impact` are flattened to top-level columns (`data_type`, `usage_action`, `impact_label`, `usage_summary`, `producer`, `year`, `geography`, `acronym`).
25
+
26
+ ## Configs
27
+
28
+ | config | rows |
29
+ | --- | --- |
30
+ | default | 33,328 |
31
+
32
+ ## Fields
33
+
34
+ - **Document trace**: `corpus_id`, `config`, `pdf_url`, `title`, `page`, `chunk`.
35
+ - **Mention span**: `mention` (long) or `entities[].text` (nested), `label` (`NAMED_DATA` / `DESCRIPTIVE_DATA` / `VAGUE_DATA`), `score`, `start`, `end`.
36
+ - **Document metadata** (when built with `--with-metadata`): `project_id`, `doc_id`, `document_type`, `country`, `sector`, `language`, `disclosure_status`, `document_date`, `region`, `topics`, `themes`, `authors`, `abstract`, and more, joined from `rafmacalaba/fcv-corpus`.
37
+
38
+ ### provenance
39
+
40
+ `producer`, `year`, `geography`, `acronym` — verbatim substrings of the source text; keys are omitted when the model finds nothing.
41
+
42
+ ### usage_impact
43
+
44
+ - `data_type`: survey, administrative, indicator, database, geospatial, report, other
45
+ - `usage_action`: source, analyze, curate, validate, inform
46
+ - `impact_label`: none, evidence-base, policy, uptake
47
+ - `usage_summary`: one-sentence free text describing how the author uses the data.
48
+
49
+ ## Attribution coverage
50
+
51
+ 33,328 of 33,328 extracted entities matched an inference row (100.0%). Entities without a match carry only the raw extraction fields (no `provenance` / `usage_impact`).
52
+
53
+ ## How it was built
54
+
55
+ 1. `data_use/run.py` — GLiNER extraction of data mentions over chunked document pages.
56
+ 2. `data_use/infer_multitask.py` — LFM2.5-350M multitask model predicts provenance + usage/impact per mention.
57
+ 3. `data_use/attribute.py` — joins the inference back onto the extraction chunks on `(corpus_id, page, chunk, start, end)` and attaches corpus document labels.
58
+