Object-Goal-Navigation
Object-Goal-Navigation copied to clipboard
Does the FMMPlanner work without a ground truth map?
https://github.com/devendrachaplot/Object-Goal-Navigation/blob/5d76902fe9be821926a1de32557ca9a8dc21d0f5/envs/habitat/objectgoal_env.py#L122 The FMMPlanner is initialized with a ground truth map here. Does it mean this work can't work without a ground truth map?
From my understanding, the project constructs two types of FMMPlanner instances. One is used during the generation of start points and getting the metric, utilizing the ground truth map. The other is for training, based on the generated obstacle map(in sem_exp.py ,the function _get_stg). Therefore, the project can operate without the ground truth map, as the start points are predefined.