Update README.md
Browse files
README.md
CHANGED
|
@@ -10,11 +10,11 @@ dataset_info:
|
|
| 10 |
- name: properties_json
|
| 11 |
dtype: string
|
| 12 |
- name: valid_from
|
| 13 |
-
dtype: timestamp[
|
| 14 |
- name: valid_to
|
| 15 |
-
dtype: timestamp[
|
| 16 |
- name: created_at
|
| 17 |
-
dtype: timestamp[
|
| 18 |
splits:
|
| 19 |
- name: train
|
| 20 |
num_bytes: 615
|
|
@@ -40,9 +40,9 @@ Stores the edges (relationships) between nodes in the crisis prediction graph, r
|
|
| 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[
|
| 44 |
-
| valid_to | timestamp[
|
| 45 |
-
| created_at | timestamp[
|
| 46 |
|
| 47 |
**Example Entry**
|
| 48 |
```python
|
|
|
|
| 10 |
- name: properties_json
|
| 11 |
dtype: string
|
| 12 |
- name: valid_from
|
| 13 |
+
dtype: timestamp[ms]
|
| 14 |
- name: valid_to
|
| 15 |
+
dtype: timestamp[ms]
|
| 16 |
- name: created_at
|
| 17 |
+
dtype: timestamp[ms]
|
| 18 |
splits:
|
| 19 |
- name: train
|
| 20 |
num_bytes: 615
|
|
|
|
| 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
|