oscarqjh/HAZARD_easi
HAZARD for EASI Preprocessed HAZARD benchmark (ICLR 2024) for the EASI evaluation suite. HAZARD evaluates embodied agents in dynamically changing disaster environments built on the ThreeDWorld (TDW) simulator. Agents must rescue target objects from fire, flood, or wind hazards. Scenarios Scenario (Subset) Train Test Total Max Steps Hazard fire 76 25 101 1500 Spreading flames destroy objects flood 76 25 101 1500 Rising water damages non-waterproof… See the full description on the dataset page: https://huggingface.co/datasets/oscarqjh/HAZARD_easi.
HAZARD for EASI
Preprocessed HAZARD benchmark (ICLR 2024) for the EASI evaluation suite.
HAZARD evaluates embodied agents in dynamically changing disaster environments built on the ThreeDWorld (TDW) simulator. Agents must rescue target objects from fire, flood, or wind hazards.
Scenarios
Usage
from datasets import load_dataset
# Load fire scenario, train split
ds = load_dataset("oscarqjh/HAZARD_easi", "fire", split="train")
# Load wind scenario, test split
ds = load_dataset("oscarqjh/HAZARD_easi", "wind", split="test")Schema
Hazard Parameters
Fire: {"fire_positions": [[x, y, z], ...]}
Flood: {"source": [[x, y, z]], "direction": [[dx, dy, dz]], "speed": [float], "flood_source_from": "x_max|x_min|z_max|z_min"}
Wind: {"wind_direction": [x, y, z], "wind_resistance": {"obj_id": 0|1|2}}
Simulator Data
The simulator_data.zip file contains the raw episode data needed by the TDW bridge:
room_setup_fire/— Episode directories withinfo.json,log.txt,flood.jsonroom_setup_wind/— Episode directories withinfo.json,log.txtmeta_data/— Object value and temperature metadata
The log.txt files contain TDW command sequences that define scene layouts and object placements.
Source
- Paper: HAZARD Challenge: Embodied Decision Making in Dynamically Changing Environments (ICLR 2024)
- Code: UMass-Foundation-Model/HAZARD
- Simulator: ThreeDWorld (TDW)
License
Please refer to the HAZARD repository for license information.
