dwb2023's picture
Update README.md
c85a58d verified
metadata
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

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