dwb2023's picture
Update README.md
7097c0b verified
metadata
dataset_info:
  features:
    - name: source_node_id
      dtype: string
    - name: target_node_id
      dtype: string
    - name: relationship_type
      dtype: string
    - name: properties_json
      dtype: string
    - name: valid_from
      dtype: timestamp[ms]
    - name: valid_to
      dtype: timestamp[ms]
    - name: created_at
      dtype: timestamp[ms]
  splits:
    - name: train
      num_bytes: 615
      num_examples: 6
  download_size: 4158
  dataset_size: 615
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*

Dataset Card for dwb2023/crisis_prediction_edges

Purpose
Stores the edges (relationships) between nodes in the crisis prediction graph, representing connections like routes, impacts, and dependencies.

Schema Description

Field Name Data Type Description
source_node_id string ID of the source node
target_node_id string ID of the target node
relationship_type string Type of relationship (e.g., "IMPACTS", "ROUTED_THROUGH")
properties_json string JSON string containing edge properties
valid_from timestamp[ms] When the relationship became valid
valid_to timestamp[ms] When the relationship expired/will expire
created_at timestamp[ms] When the edge was created

Example Entry

{
    "source_node_id": "HKG_AIRPORT",
    "target_node_id": "FRA_AIRPORT",
    "relationship_type": "ROUTED_THROUGH",
    "properties_json": {"capacity": "500t", "frequency": "daily"},
    "valid_from": 1706745600000,
    "valid_to": 1709251200000,
    "created_at": 1706745600000
}