dwb2023 commited on
Commit
4059b9f
·
verified ·
1 Parent(s): b4e5eb2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md CHANGED
@@ -27,3 +27,32 @@ configs:
27
  - split: train
28
  path: data/train-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  - split: train
28
  path: data/train-*
29
  ---
30
+
31
+ #### Dataset Card for dwb2023/crisis_prediction_edges
32
+
33
+ **Purpose**
34
+ Stores the edges (relationships) between nodes in the crisis prediction graph, representing connections like routes, impacts, and dependencies.
35
+
36
+ **Schema Description**
37
+ | Field Name | Data Type | Description |
38
+ |------------|-----------|-------------|
39
+ | source_node_id | string | ID of the source node |
40
+ | target_node_id | string | ID of the target node |
41
+ | relationship_type | string | Type of relationship (e.g., "IMPACTS", "ROUTED_THROUGH") |
42
+ | properties_json | string | JSON string containing edge properties |
43
+ | valid_from | timestamp[ms] | When the relationship became valid |
44
+ | valid_to | timestamp[ms] | When the relationship expired/will expire |
45
+ | created_at | timestamp[ms] | When the edge was created |
46
+
47
+ **Example Entry**
48
+ ```python
49
+ {
50
+ "source_node_id": "HKG_AIRPORT",
51
+ "target_node_id": "FRA_AIRPORT",
52
+ "relationship_type": "ROUTED_THROUGH",
53
+ "properties_json": {"capacity": "500t", "frequency": "daily"},
54
+ "valid_from": 1706745600000,
55
+ "valid_to": 1709251200000,
56
+ "created_at": 1706745600000
57
+ }
58
+ ```