dwb2023 commited on
Commit
1a07fff
·
verified ·
1 Parent(s): 624cf6e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md CHANGED
@@ -23,3 +23,28 @@ configs:
23
  - split: train
24
  path: data/train-*
25
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  - split: train
24
  path: data/train-*
25
  ---
26
+
27
+ #### Dataset Card for dwb2023/crisis_prediction_nodes
28
+
29
+ **Purpose**
30
+ Stores the nodes (vertices) of the crisis prediction graph, representing entities like airports, organizations, and policies.
31
+
32
+ **Schema Description**
33
+ | Field Name | Data Type | Description |
34
+ |------------|-----------|-------------|
35
+ | node_id | string | Unique identifier for the node |
36
+ | node_type | string | Type of entity (e.g., "Airport", "Organization") |
37
+ | name | string | Human-readable name of the entity |
38
+ | attributes_json | string | JSON string containing node properties |
39
+ | created_at | timestamp[ms] | When the node was created |
40
+
41
+ **Example Entry**
42
+ ```python
43
+ {
44
+ "node_id": "HKG_AIRPORT",
45
+ "node_type": "Airport",
46
+ "name": "Hong Kong International Airport",
47
+ "attributes_json": {"iata": "HKG", "capacity": "1000t", "region": "Asia"},
48
+ "created_at": 1706745600000
49
+ }
50
+ ```