Datasets:
Upload 5 files
Browse files- README.md +39 -0
- dataset_info.json +72 -0
- test.csv +0 -0
- train.csv +0 -0
- validation.csv +0 -0
README.md
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# WX Impact Benchmark - Mixed Context Dataset
|
2 |
+
|
3 |
+
This dataset contains the Mixed Context Weather Impact Benchmark Dataset with multi-label impact classifications.
|
4 |
+
|
5 |
+
## Dataset Description
|
6 |
+
|
7 |
+
This is the MixedCTX_Dataset(1386) subset of the WX Impact Benchmark, containing weather-related articles with various context lengths and complexity levels.
|
8 |
+
|
9 |
+
- **Train set**: Training data for model development
|
10 |
+
- **Validation set**: Validation data for hyperparameter tuning
|
11 |
+
- **Test set**: Test data for final evaluation
|
12 |
+
|
13 |
+
## Features
|
14 |
+
|
15 |
+
- `id`: Unique identifier for each article
|
16 |
+
- `date`: Date of the article
|
17 |
+
- `time_period`: Historical period classification
|
18 |
+
- `weather_type`: Type of weather event
|
19 |
+
- `text`: Article text content
|
20 |
+
- `infrastructural_impact`: Binary label for infrastructural impact
|
21 |
+
- `political_impact`: Binary label for political impact
|
22 |
+
- `financial_impact`: Binary label for financial impact
|
23 |
+
- `ecological_impact`: Binary label for ecological impact
|
24 |
+
- `agricultural_impact`: Binary label for agricultural impact
|
25 |
+
- `human_health_impact`: Binary label for human health impact
|
26 |
+
|
27 |
+
## Usage
|
28 |
+
|
29 |
+
```python
|
30 |
+
from datasets import load_dataset
|
31 |
+
|
32 |
+
# Load the Mixed Context dataset
|
33 |
+
dataset = load_dataset("Michaelyya/wximpactbench")
|
34 |
+
|
35 |
+
# Access splits
|
36 |
+
train_data = dataset["train"]
|
37 |
+
val_data = dataset["validation"]
|
38 |
+
test_data = dataset["test"]
|
39 |
+
```
|
dataset_info.json
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"dataset_name": "wx-impact-bench-mixed-ctx",
|
3 |
+
"description": "Mixed Context Weather Impact Benchmark Dataset for Multi-label Classification",
|
4 |
+
"version": "1.0.0",
|
5 |
+
"created_date": "2025-08-22T22:30:09.072889",
|
6 |
+
"license": "CC BY 4.0",
|
7 |
+
"homepage": "https://github.com/your-repo/wx-impact-bench",
|
8 |
+
"citation": "@dataset{wx_impact_bench_mixed_ctx,\n title={WX Impact Benchmark: Mixed Context Dataset for Weather Impact Assessment},\n author={Your Name},\n year={2024},\n publisher={Hugging Face}\n }",
|
9 |
+
"features": {
|
10 |
+
"id": {
|
11 |
+
"dtype": "string",
|
12 |
+
"_type": "Value"
|
13 |
+
},
|
14 |
+
"date": {
|
15 |
+
"dtype": "string",
|
16 |
+
"_type": "Value"
|
17 |
+
},
|
18 |
+
"time_period": {
|
19 |
+
"dtype": "string",
|
20 |
+
"_type": "Value"
|
21 |
+
},
|
22 |
+
"weather_type": {
|
23 |
+
"dtype": "string",
|
24 |
+
"_type": "Value"
|
25 |
+
},
|
26 |
+
"text": {
|
27 |
+
"dtype": "string",
|
28 |
+
"_type": "Value"
|
29 |
+
},
|
30 |
+
"infrastructural_impact": {
|
31 |
+
"dtype": "int64",
|
32 |
+
"_type": "Value"
|
33 |
+
},
|
34 |
+
"political_impact": {
|
35 |
+
"dtype": "int64",
|
36 |
+
"_type": "Value"
|
37 |
+
},
|
38 |
+
"financial_impact": {
|
39 |
+
"dtype": "int64",
|
40 |
+
"_type": "Value"
|
41 |
+
},
|
42 |
+
"ecological_impact": {
|
43 |
+
"dtype": "int64",
|
44 |
+
"_type": "Value"
|
45 |
+
},
|
46 |
+
"agricultural_impact": {
|
47 |
+
"dtype": "int64",
|
48 |
+
"_type": "Value"
|
49 |
+
},
|
50 |
+
"human_health_impact": {
|
51 |
+
"dtype": "int64",
|
52 |
+
"_type": "Value"
|
53 |
+
}
|
54 |
+
},
|
55 |
+
"splits": {
|
56 |
+
"train": {
|
57 |
+
"name": "train",
|
58 |
+
"num_bytes": 0,
|
59 |
+
"num_examples": 970
|
60 |
+
},
|
61 |
+
"validation": {
|
62 |
+
"name": "validation",
|
63 |
+
"num_bytes": 0,
|
64 |
+
"num_examples": 208
|
65 |
+
},
|
66 |
+
"test": {
|
67 |
+
"name": "test",
|
68 |
+
"num_bytes": 0,
|
69 |
+
"num_examples": 208
|
70 |
+
}
|
71 |
+
}
|
72 |
+
}
|
test.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
train.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
validation.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|