Update README.md
Browse files
README.md
CHANGED
@@ -34,4 +34,159 @@ tags:
|
|
34 |
pretty_name: Climate Guard Toxic Agent
|
35 |
size_categories:
|
36 |
- 10K<n<100K
|
37 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
pretty_name: Climate Guard Toxic Agent
|
35 |
size_categories:
|
36 |
- 10K<n<100K
|
37 |
+
---
|
38 |
+
|
39 |
+
# Consolidated Climate Disinformation Dataset
|
40 |
+
|
41 |
+
## Dataset Description
|
42 |
+
|
43 |
+
This dataset is a comprehensive consolidation of multiple climate-related datasets, focusing on climate disinformation and factual climate information. It combines and standardizes data from various high-quality sources to create a robust resource for climate-related text classification tasks.
|
44 |
+
|
45 |
+
### Dataset Sources
|
46 |
+
|
47 |
+
The dataset incorporates data from the following sources:
|
48 |
+
- Tonic Climate Guard Series:
|
49 |
+
- climate-guard-thinking_data_nocomment_qwen_toxic_agent
|
50 |
+
- climate-guard-synthetic_data_qwen_toxic_agent
|
51 |
+
- climate-guard-thinking_data_nocomment_intern_toxic_agent
|
52 |
+
- climate-guard-thinking_data_nocomment_phi4_toxic_agent
|
53 |
+
- climate-guard-thinking_data_nocomment_yi_toxic_agent
|
54 |
+
- climate-guard-synthetic_data_yi_toxic_agent
|
55 |
+
- QuotaClimat/frugalaichallenge-text-train
|
56 |
+
- Climate FEVER dataset
|
57 |
+
- Quota Climat dataset (12% random sample)
|
58 |
+
|
59 |
+
## Data Processing
|
60 |
+
|
61 |
+
The dataset underwent several processing steps to ensure quality and consistency:
|
62 |
+
|
63 |
+
1. **Text Cleaning**:
|
64 |
+
- Removed responses starting with apology phrases ("I'm sorry", "I am sorry", "I apologize", "Given the directive")
|
65 |
+
- Cleaned text between "---" markers
|
66 |
+
- Standardized text formatting
|
67 |
+
|
68 |
+
2. **Label Standardization**:
|
69 |
+
- Maintained consistent label format across all sources
|
70 |
+
- Special handling for '0_not_relevant' labels from specific sources
|
71 |
+
|
72 |
+
3. **Source Tracking**:
|
73 |
+
- Added source identifiers to track data origin
|
74 |
+
- Preserved dataset provenance information
|
75 |
+
|
76 |
+
## Dataset Structure
|
77 |
+
|
78 |
+
The dataset is split into training and testing sets with the following features:
|
79 |
+
|
80 |
+
```python
|
81 |
+
DatasetDict({
|
82 |
+
'train': Dataset({
|
83 |
+
features: ['identifier', 'text', 'label'],
|
84 |
+
num_examples: <num_examples>
|
85 |
+
}),
|
86 |
+
'test': Dataset({
|
87 |
+
features: ['identifier', 'text', 'label'],
|
88 |
+
num_examples: <num_examples>
|
89 |
+
})
|
90 |
+
})
|
91 |
+
```
|
92 |
+
|
93 |
+
### Features:
|
94 |
+
|
95 |
+
- **identifier**: String identifying the source dataset
|
96 |
+
- **text**: The main text content
|
97 |
+
- **label**: Classification label
|
98 |
+
|
99 |
+
### Labels:
|
100 |
+
|
101 |
+
- `0_not_relevant`
|
102 |
+
- `1_not_happening`
|
103 |
+
- `2_not_human`
|
104 |
+
- `3_not_bad`
|
105 |
+
- `4_solutions_harmful_unnecessary`
|
106 |
+
- `5_science_is_unreliable`
|
107 |
+
- `6_proponents_biased`
|
108 |
+
- `7_fossil_fuels_needed`
|
109 |
+
|
110 |
+
## Usage
|
111 |
+
|
112 |
+
```python
|
113 |
+
from datasets import load_dataset
|
114 |
+
|
115 |
+
# Load the dataset
|
116 |
+
dataset = load_dataset("your-username/consolidated-climate-dataset")
|
117 |
+
|
118 |
+
# Access training data
|
119 |
+
train_data = dataset['train']
|
120 |
+
|
121 |
+
# Access test data
|
122 |
+
test_data = dataset['test']
|
123 |
+
```
|
124 |
+
|
125 |
+
## Dataset Statistics
|
126 |
+
|
127 |
+
```python
|
128 |
+
# Example statistics (to be filled with actual numbers)
|
129 |
+
Total examples: XXX
|
130 |
+
Training examples: XXX
|
131 |
+
Test examples: XXX
|
132 |
+
Label distribution: {
|
133 |
+
"0_not_relevant": XXX,
|
134 |
+
"1_not_happening": XXX,
|
135 |
+
...
|
136 |
+
}
|
137 |
+
```
|
138 |
+
|
139 |
+
## Intended Uses
|
140 |
+
|
141 |
+
This dataset is designed for:
|
142 |
+
- Training climate disinformation detection models
|
143 |
+
- Developing fact-checking systems
|
144 |
+
- Analyzing climate-related discourse patterns
|
145 |
+
- Research in climate communication
|
146 |
+
|
147 |
+
## Limitations
|
148 |
+
|
149 |
+
- The dataset may contain some inherent biases from source datasets
|
150 |
+
- Some sources are synthetic or AI-generated data
|
151 |
+
- Language is primarily English
|
152 |
+
- Coverage may vary across different types of climate disinformation
|
153 |
+
|
154 |
+
## Citation
|
155 |
+
|
156 |
+
If you use this dataset, please cite both this consolidated version and the original source datasets:
|
157 |
+
|
158 |
+
```bibtex
|
159 |
+
@dataset{consolidated_climate_dataset,
|
160 |
+
author = {Your Name},
|
161 |
+
title = {Consolidated Climate Disinformation Dataset},
|
162 |
+
year = {2024},
|
163 |
+
publisher = {Hugging Face},
|
164 |
+
url = {https://huggingface.co/datasets/your-username/consolidated-climate-dataset}
|
165 |
+
}
|
166 |
+
```
|
167 |
+
|
168 |
+
## License
|
169 |
+
|
170 |
+
This dataset is released under the same licenses as its source datasets. Please refer to individual source datasets for specific license information.
|
171 |
+
|
172 |
+
## Contact
|
173 |
+
|
174 |
+
For questions or issues regarding this dataset, please open an issue on the dataset's GitHub repository or contact the maintainers through Hugging Face.
|
175 |
+
|
176 |
+
## Acknowledgments
|
177 |
+
|
178 |
+
We thank the creators and maintainers of all source datasets used in this consolidation:
|
179 |
+
- The Tonic AI team
|
180 |
+
- QuotaClimat team
|
181 |
+
- Climate FEVER dataset creators
|
182 |
+
- All other contributors to the source datasets
|
183 |
+
|
184 |
+
## Updates and Maintenance
|
185 |
+
|
186 |
+
This dataset will be periodically updated to:
|
187 |
+
- Fix any identified issues
|
188 |
+
- Include new relevant source datasets
|
189 |
+
- Improve data quality and consistency
|
190 |
+
|
191 |
+
Last updated: [Current Date]
|
192 |
+
Version: 1.0.0
|