File size: 1,292 Bytes
624cf6e
 
 
 
 
 
 
 
 
 
 
 
c85a58d
624cf6e
 
e730044
 
 
 
624cf6e
 
 
 
 
 
1a07fff
 
 
 
 
 
 
 
 
 
 
 
 
c85a58d
1a07fff
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
dataset_info:
  features:
  - name: node_id
    dtype: string
  - name: node_type
    dtype: string
  - name: name
    dtype: string
  - name: attributes_json
    dtype: string
  - name: created_at
    dtype: timestamp[ms]
  splits:
  - name: train
    num_bytes: 1013
    num_examples: 9
  download_size: 3670
  dataset_size: 1013
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

#### Dataset Card for dwb2023/crisis_prediction_nodes

**Purpose**  
Stores the nodes (vertices) of the crisis prediction graph, representing entities like airports, organizations, and policies.

**Schema Description**
| Field Name | Data Type | Description |
|------------|-----------|-------------|
| node_id | string | Unique identifier for the node |
| node_type | string | Type of entity (e.g., "Airport", "Organization") |
| name | string | Human-readable name of the entity |
| attributes_json | string | JSON string containing node properties |
| created_at | timestamp[ms] | When the node was created |

**Example Entry**
```python
{
    "node_id": "HKG_AIRPORT",
    "node_type": "Airport",
    "name": "Hong Kong International Airport",
    "attributes_json": {"iata": "HKG", "capacity": "1000t", "region": "Asia"},
    "created_at": 1706745600000
}
```