Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 769 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 769 Bytes

ProcTHOR Models

Model weights for ProcTHOR experiments. The full list of models is available in models.json.

Example

To load the models, use the prior package:

import prior
model_path = prior.load_model(project="procthor-models", model="object-nav-pretraining")

import torch
torch.load(model_path)

More information about how to use them will be available soon!

Models

Habitat Baseline

Warning For the Habitat baseline, the order of the objects for the GoalObjectTypeThorSensor is not sorted (as it typically is in AllenAct), and is as follows:

{
    "Chair": 0,
    "Bed": 1,
    "HousePlant": 2,
    "Toilet": 3,
    "Television": 4,
    "Sofa": 5,
}