rafmacalaba commited on
Commit
2def799
·
verified ·
1 Parent(s): 7e40042

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -16
README.md CHANGED
@@ -1,25 +1,58 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
3
  configs:
4
- - config_name: fcv_pads_east_asia
5
  data_files:
6
  - split: train
7
- path: fcv_pads_east_asia.jsonl
8
- - config_name: jdc_operational
9
- data_files:
10
- - split: train
11
- path: jdc_operational.jsonl
12
- - config_name: refugee_pads
13
- data_files:
14
- - split: train
15
- path: refugee_pads.jsonl
16
- - config_name: reliefweb
17
- data_files:
18
- - split: train
19
- path: reliefweb.jsonl
20
  ---
 
21
  # fcv-extractions-meta
22
 
23
- Per-chunk data-use extractions enriched by the LFM2.5-350M multitask model. Shape: nested (per chunk). One file per source corpus config.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
- `{"rows": {"refugee_pads": 45046, "jdc_operational": 12372, "fcv_pads_east_asia": 92757, "reliefweb": 10991}, "entities_matched": 7177, "entities_total": 16756}`
 
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
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 | 16,756 |
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
+ 16,756 of 16,756 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