AI Habitat · Schema

TaskConfig

Habitat-Lab task configuration

Artificial IntelligenceSimulationEmbodied AIRoboticsComputer VisionReinforcement LearningMachine LearningOpen SourceResearch

Properties

Name Type Description
type string Task type string identifier
max_episode_steps integer Maximum steps per episode
measurements array List of measurement names to compute
actions object Available action space configuration
goal_sensor_uuid string UUID of the goal sensor
View JSON Schema on GitHub

JSON Schema

ai-habitat-task-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ai-habitat/refs/heads/main/json-schema/ai-habitat-task-config-schema.json",
  "title": "TaskConfig",
  "description": "Habitat-Lab task configuration",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Task type string identifier",
      "example": "ObjectNav-v1"
    },
    "max_episode_steps": {
      "type": "integer",
      "description": "Maximum steps per episode",
      "example": 500
    },
    "measurements": {
      "type": "array",
      "description": "List of measurement names to compute",
      "items": {
        "type": "string"
      }
    },
    "actions": {
      "type": "object",
      "description": "Available action space configuration"
    },
    "goal_sensor_uuid": {
      "type": "string",
      "description": "UUID of the goal sensor",
      "example": "pointgoal"
    }
  }
}