Kossisoroyce commited on
Commit
6f30767
·
verified ·
1 Parent(s): 539c15a

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +141 -24
README.md CHANGED
@@ -1,28 +1,145 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
- features:
4
- - name: admin1_name
5
- dtype: string
6
- - name: personnes_affectées
7
- dtype: float64
8
- - name: esa_source
9
- dtype: string
10
- - name: esa_processed
11
- dtype: string
12
  splits:
13
- - name: train
14
- num_bytes: 628
15
- num_examples: 16
16
- - name: test
17
- num_bytes: 203
18
- num_examples: 5
19
- download_size: 4275
20
- dataset_size: 831
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: train
25
- path: data/train-*
26
- - split: test
27
- path: data/test-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - n<1K
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - tabular-classification
17
+ - other
18
+ task_ids: []
19
+ tags:
20
+ - africa
21
+ - humanitarian
22
+ - hdx
23
+ - electric-sheep-africa
24
+ - affected-population
25
+ - climate-weather
26
+ - damage-assessment
27
+ - flooding
28
+ - hxl
29
+ - migration
30
+ - population
31
+ - mli
32
+ pretty_name: "Mali: Suivi des Inondations"
33
  dataset_info:
 
 
 
 
 
 
 
 
 
34
  splits:
35
+ - name: train
36
+ num_examples: 16
37
+ - name: test
38
+ num_examples: 4
 
 
 
 
 
 
 
 
 
 
 
39
  ---
40
+
41
+ # Mali: Suivi des Inondations
42
+
43
+ **Publisher:** OCHA Mali · **Source:** [HDX](https://data.humdata.org/dataset/mali-suivi-des-inondations) · **License:** `cc-by` · **Updated:** 2025-05-05
44
+
45
+ ---
46
+
47
+ ## Abstract
48
+
49
+ Les données contiennent les impacts causés par les inondations et les fortes pluies au Mali.
50
+
51
+ Each row in this dataset represents first-level administrative unit observations. Data was last updated on HDX on 2025-05-05. Geographic scope: **MLI**.
52
+
53
+ *Curated into ML-ready Parquet format by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica).*
54
+
55
+ ---
56
+
57
+ ## Dataset Characteristics
58
+
59
+ | | |
60
+ |---|---|
61
+ | **Domain** | Climate and environment |
62
+ | **Unit of observation** | First-level administrative unit observations |
63
+ | **Rows (total)** | 21 |
64
+ | **Columns** | 4 (1 numeric, 3 categorical, 0 datetime) |
65
+ | **Train split** | 16 rows |
66
+ | **Test split** | 4 rows |
67
+ | **Geographic scope** | MLI |
68
+ | **Publisher** | OCHA Mali |
69
+ | **HDX last updated** | 2025-05-05 |
70
+
71
+ ---
72
+
73
+ ## Variables
74
+
75
+ **Geographic** — `admin1_name` (#adm1+name, Kayes, Nara).
76
+
77
+ **Demographic** — `personnes_affectées` (range 717.0–84458.0).
78
+
79
+ **Identifier / Metadata** — `esa_source` (HDX), `esa_processed` (2026-04-18).
80
+
81
+ ---
82
+
83
+ ## Quick Start
84
+
85
+ ```python
86
+ from datasets import load_dataset
87
+
88
+ ds = load_dataset("electricsheepafrica/africa-mali-suivi-des-inondations")
89
+ train = ds["train"].to_pandas()
90
+ test = ds["test"].to_pandas()
91
+
92
+ print(train.shape)
93
+ train.head()
94
+ ```
95
+
96
+ ---
97
+
98
+ ## Schema
99
+
100
+ | Column | Type | Null % | Range / Sample Values |
101
+ |---|---|---|---|
102
+ | `admin1_name` | object | 0.0% | #adm1+name, Kayes, Nara |
103
+ | `personnes_affectées` | float64 | 4.8% | 717.0 – 84458.0 (mean 18472.1) |
104
+ | `esa_source` | object | 0.0% | HDX |
105
+ | `esa_processed` | object | 0.0% | 2026-04-18 |
106
+
107
+ ---
108
+
109
+ ## Numeric Summary
110
+
111
+ | Column | Min | Max | Mean | Median |
112
+ |---|---|---|---|---|
113
+ | `personnes_affectées` | 717.0 | 84458.0 | 18472.1 | 7373.5 |
114
+
115
+ ---
116
+
117
+ ## Curation
118
+
119
+ 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 column(s) were cast from string to numeric or datetime based on parse-success rate (>85% threshold). The dataset was split 80/20 into train and test partitions using a fixed random seed (42) and saved as Snappy-compressed Parquet.
120
+
121
+ ---
122
+
123
+ ## Limitations
124
+
125
+ - Data originates from OCHA Mali and has not been independently validated by ESA.
126
+ - Automated cleaning cannot correct for misreported values, definitional inconsistencies, or sampling bias in the original collection.
127
+ - Refer to the [original HDX dataset page](https://data.humdata.org/dataset/mali-suivi-des-inondations) for the publisher's own methodology notes and caveats.
128
+
129
+ ---
130
+
131
+ ## Citation
132
+
133
+ ```bibtex
134
+ @dataset{hdx_africa_mali_suivi_des_inondations,
135
+ title = {Mali: Suivi des Inondations},
136
+ author = {OCHA Mali},
137
+ year = {2025},
138
+ url = {https://data.humdata.org/dataset/mali-suivi-des-inondations},
139
+ note = {Repackaged for machine learning by Electric Sheep Africa (https://huggingface.co/electricsheepafrica)}
140
+ }
141
+ ```
142
+
143
+ ---
144
+
145
+ *[Electric Sheep Africa](https://huggingface.co/electricsheepafrica) — Africa's ML dataset infrastructure. Lagos, Nigeria.*