Kossisoroyce commited on
Commit
b5cad70
·
verified ·
1 Parent(s): ad7d2eb

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +145 -40
README.md CHANGED
@@ -1,44 +1,149 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
- features:
4
- - name: organisation_accronyme
5
- dtype: string
6
- - name: nom_organisation
7
- dtype: string
8
- - name: type_organisation
9
- dtype: string
10
- - name: admin1pcod
11
- dtype: string
12
- - name: region
13
- dtype: string
14
- - name: admin2pcod
15
- dtype: string
16
- - name: cercle
17
- dtype: string
18
- - name: admin3pcod
19
- dtype: string
20
- - name: commune
21
- dtype: string
22
- - name: cluster
23
- dtype: string
24
- - name: esa_source
25
- dtype: string
26
- - name: esa_processed
27
- dtype: string
28
  splits:
29
- - name: train
30
- num_bytes: 515996
31
- num_examples: 3339
32
- - name: test
33
- num_bytes: 129310
34
- num_examples: 835
35
- download_size: 93974
36
- dataset_size: 645306
37
- configs:
38
- - config_name: default
39
- data_files:
40
- - split: train
41
- path: data/train-*
42
- - split: test
43
- path: data/test-*
44
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license: cc-by-4.0
9
+ multilinguality:
10
+ - monolingual
11
+ size_categories:
12
+ - 1K<n<10K
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - other
17
+ task_ids: []
18
+ tags:
19
+ - africa
20
+ - humanitarian
21
+ - hdx
22
+ - electric-sheep-africa
23
+ - hxl
24
+ - operational-capacity
25
+ - operational-presence
26
+ - who-is-doing-what-and-where-3w-4w-5w
27
+ - mli
28
+ pretty_name: "Mali: Operational Presence"
29
  dataset_info:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  splits:
31
+ - name: train
32
+ num_examples: 3339
33
+ - name: test
34
+ num_examples: 834
 
 
 
 
 
 
 
 
 
 
 
35
  ---
36
+
37
+ # Mali: Operational Presence
38
+
39
+ **Publisher:** OCHA Mali · **Source:** [HDX](https://data.humdata.org/dataset/mali-operational-presence) · **License:** `cc-by-igo` · **Updated:** 2025-08-06
40
+
41
+ ---
42
+
43
+ ## Abstract
44
+
45
+ The Who does What Where (3W) is a core humanitarian coordination dataset. It is critical to know where humanitarian organizations are working and what they are doing in order to identify gaps and plan for future humanitarian response. This dataset includes a list of humanitarian organizations operating in Mali at Admin 3.
46
+
47
+ Each row in this dataset represents subnational administrative unit observations. Data was last updated on HDX on 2025-08-06. Geographic scope: **MLI**.
48
+
49
+ *Curated into ML-ready Parquet format by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica).*
50
+
51
+ ---
52
+
53
+ ## Dataset Characteristics
54
+
55
+ | | |
56
+ |---|---|
57
+ | **Domain** | Humanitarian and development data |
58
+ | **Unit of observation** | Subnational administrative unit observations |
59
+ | **Rows (total)** | 4,174 |
60
+ | **Columns** | 12 (0 numeric, 12 categorical, 0 datetime) |
61
+ | **Train split** | 3,339 rows |
62
+ | **Test split** | 834 rows |
63
+ | **Geographic scope** | MLI |
64
+ | **Publisher** | OCHA Mali |
65
+ | **HDX last updated** | 2025-08-06 |
66
+
67
+ ---
68
+
69
+ ## Variables
70
+
71
+ **Geographic** — `organisation_accronyme` (UNICEF, OMS, USAID), `type_organisation` (ONG int, Agence UN, ONG Nat), `admin1pcod` (ML05, ML04, ML03), `region` (Mopti, Segou, Sikasso), `admin2pcod` (ML0502, ML0305, ML0506) and 1 others.
72
+
73
+ **Identifier / Metadata** — `esa_source`, `esa_processed`.
74
+
75
+ **Other** — `nom_organisation` (Fonds des Nations Unies pour l'Enfance, Organisation mondiale de la santé, U.S. Agency for International Development), `cercle` (Bankass, Sikasso, Mopti), `commune` (Gao, Ansongo, Koro), `cluster` (Santé, Protection, Secal*).
76
+
77
+ ---
78
+
79
+ ## Quick Start
80
+
81
+ ```python
82
+ from datasets import load_dataset
83
+
84
+ ds = load_dataset("electricsheepafrica/africa-mali-operational-presence")
85
+ train = ds["train"].to_pandas()
86
+ test = ds["test"].to_pandas()
87
+
88
+ print(train.shape)
89
+ train.head()
90
+ ```
91
+
92
+ ---
93
+
94
+ ## Schema
95
+
96
+ | Column | Type | Null % | Range / Sample Values |
97
+ |---|---|---|---|
98
+ | `organisation_accronyme` | object | 0.0% | UNICEF, OMS, USAID |
99
+ | `nom_organisation` | object | 0.0% | Fonds des Nations Unies pour l'Enfance, Organisation mondiale de la santé, U.S. Agency for International Development |
100
+ | `type_organisation` | object | 0.0% | ONG int, Agence UN, ONG Nat |
101
+ | `admin1pcod` | object | 0.0% | ML05, ML04, ML03 |
102
+ | `region` | object | 0.0% | Mopti, Segou, Sikasso |
103
+ | `admin2pcod` | object | 0.0% | ML0502, ML0305, ML0506 |
104
+ | `cercle` | object | 0.0% | Bankass, Sikasso, Mopti |
105
+ | `admin3pcod` | object | 0.0% | ML070303, ML060506, ML050609 |
106
+ | `commune` | object | 0.0% | Gao, Ansongo, Koro |
107
+ | `cluster` | object | 0.0% | Santé, Protection, Secal* |
108
+ | `esa_source` | object | 0.0% | |
109
+ | `esa_processed` | object | 0.0% | |
110
+
111
+ ---
112
+
113
+ ## Numeric Summary
114
+
115
+ | Column | Min | Max | Mean | Median |
116
+ |---|---|---|---|---|
117
+ _No numeric columns._
118
+
119
+ ---
120
+
121
+ ## Curation
122
+
123
+ Raw data was downloaded from HDX via the CKAN API and converted to Parquet. Column names were lowercased and standardised to snake_case. Common missing-value markers (`N/A`, `null`, `none`, `-`, `unknown`, `no data`, `#N/A`) were unified to `NaN`. 1,287 exact duplicate rows were removed. The dataset was split 80/20 into train and test partitions using a fixed random seed (42) and saved as Snappy-compressed Parquet.
124
+
125
+ ---
126
+
127
+ ## Limitations
128
+
129
+ - Data originates from OCHA Mali and has not been independently validated by ESA.
130
+ - Automated cleaning cannot correct for misreported values, definitional inconsistencies, or sampling bias in the original collection.
131
+ - Refer to the [original HDX dataset page](https://data.humdata.org/dataset/mali-operational-presence) for the publisher's own methodology notes and caveats.
132
+
133
+ ---
134
+
135
+ ## Citation
136
+
137
+ ```bibtex
138
+ @dataset{hdx_africa_mali_operational_presence,
139
+ title = {Mali: Operational Presence},
140
+ author = {OCHA Mali},
141
+ year = {2025},
142
+ url = {https://data.humdata.org/dataset/mali-operational-presence},
143
+ note = {Repackaged for machine learning by Electric Sheep Africa (https://huggingface.co/electricsheepafrica)}
144
+ }
145
+ ```
146
+
147
+ ---
148
+
149
+ *[Electric Sheep Africa](https://huggingface.co/electricsheepafrica) — Africa's ML dataset infrastructure. Lagos, Nigeria.*