MapleBi commited on
Commit
6352b51
·
verified ·
1 Parent(s): 8783169

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +69 -8
README.md CHANGED
@@ -1,15 +1,53 @@
1
- # Zero-Shot Hierarchical Text Classification Dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- This dataset is prepared from the consolidated climate change solution extraction results.
4
 
5
- ## Task
6
 
7
- Zero-shot hierarchical multi-label text classification. Each example contains:
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
  - `text`: classification input text built from solution details and document context.
10
- - `label_paths`: one or more hierarchical labels, e.g. `Long-term -> Mitigation and clean energy -> Pollution control and clean energy promotion`.
11
  - `solution_detail_items`: normalized `solution_details` items with their mapped label paths.
12
- - `labels`: flattened labels for models that do not consume paths directly.
13
  - `metadata`: city, country, text type, actor, climate event, source URL, and raw labels.
14
 
15
  ## Files
@@ -21,7 +59,7 @@ Zero-shot hierarchical multi-label text classification. Each example contains:
21
  - `candidate_labels.txt`: flat candidate label list.
22
  - `stats.json`: dataset statistics and unmapped source labels.
23
 
24
- ## Statistics
25
 
26
  - Source file: `consolidated_results_1022_events.csv`
27
  - Total examples: `2083`
@@ -29,6 +67,29 @@ Zero-shot hierarchical multi-label text classification. Each example contains:
29
  - Domain labels: `8`
30
  - Leaf labels: `50`
31
 
32
- ## Suggested Zero-Shot Usage
33
 
34
  Use `taxonomy.json` as the candidate label space. For hierarchical prediction, first predict the phase (`Long-term` or `Short-term`), then the solution domain, then restrict final category candidates to that branch. For models that support multi-label classification directly, evaluate against `label_paths` or the flattened `labels` field.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ pretty_name: CoastAdapt-KB Zero-Shot Hierarchical Events Dataset
6
+ size_categories:
7
+ - 1K<n<10K
8
+ task_categories:
9
+ - text-classification
10
+ task_ids:
11
+ - multi-label-classification
12
+ - zero-shot-classification
13
+ tags:
14
+ - climate-change
15
+ - climate-adaptation
16
+ - climate-mitigation
17
+ - hierarchical-classification
18
+ - multi-label-classification
19
+ - zero-shot-classification
20
+ - event-extraction
21
+ configs:
22
+ - config_name: default
23
+ data_files:
24
+ - split: test
25
+ path: test.jsonl
26
+ ---
27
 
28
+ # CoastAdapt-KB Zero-Shot Hierarchical Events Dataset
29
 
30
+ ## Dataset Summary
31
 
32
+ This dataset is prepared from consolidated climate change solution extraction results. It is designed for zero-shot hierarchical multi-label text classification over climate adaptation and mitigation event records.
33
+
34
+ Each example contains a natural-language input text plus one or more hierarchical label paths. The labels organize climate-related solution details into a taxonomy with phase, domain, and category levels, such as `Long-term -> Mitigation and clean energy -> Pollution control and clean energy promotion`.
35
+
36
+ ## Supported Tasks
37
+
38
+ - Zero-shot text classification
39
+ - Hierarchical text classification
40
+ - Multi-label classification
41
+ - Climate adaptation and mitigation solution analysis
42
+
43
+ ## Dataset Structure
44
+
45
+ Each JSONL row contains:
46
 
47
  - `text`: classification input text built from solution details and document context.
48
+ - `label_paths`: one or more hierarchical labels.
49
  - `solution_detail_items`: normalized `solution_details` items with their mapped label paths.
50
+ - `labels`: flattened labels for models that do not consume hierarchical paths directly.
51
  - `metadata`: city, country, text type, actor, climate event, source URL, and raw labels.
52
 
53
  ## Files
 
59
  - `candidate_labels.txt`: flat candidate label list.
60
  - `stats.json`: dataset statistics and unmapped source labels.
61
 
62
+ ## Dataset Statistics
63
 
64
  - Source file: `consolidated_results_1022_events.csv`
65
  - Total examples: `2083`
 
67
  - Domain labels: `8`
68
  - Leaf labels: `50`
69
 
70
+ ## Suggested Usage
71
 
72
  Use `taxonomy.json` as the candidate label space. For hierarchical prediction, first predict the phase (`Long-term` or `Short-term`), then the solution domain, then restrict final category candidates to that branch. For models that support multi-label classification directly, evaluate against `label_paths` or the flattened `labels` field.
73
+
74
+ Example loading code:
75
+
76
+ ```python
77
+ from datasets import load_dataset
78
+
79
+ dataset = load_dataset("MapleBi/CoastAdapt-KB")
80
+ test_data = dataset["test"]
81
+ ```
82
+
83
+ ## Intended Use
84
+
85
+ This dataset is intended for research and benchmarking of zero-shot, hierarchical, and multi-label classification methods in the climate adaptation and mitigation domain. It can also be used to study how language models map climate event descriptions to structured solution taxonomies.
86
+
87
+ ## Limitations and Biases
88
+
89
+ The dataset reflects the coverage, wording, and geographic distribution of the underlying source records. Some regions, actors, or climate solution types may be overrepresented or underrepresented. Labels are derived from a normalized taxonomy and source annotations, so ambiguous or emerging climate actions may not always fit cleanly into a single category.
90
+
91
+ Users should avoid treating the labels as exhaustive ground truth for policy evaluation or real-world climate impact assessment. Model predictions trained or evaluated on this dataset should be reviewed by domain experts before being used in decision-making workflows.
92
+
93
+ ## License
94
+
95
+ This dataset is released under the MIT license.