Object-Goal-Navigation icon indicating copy to clipboard operation
Object-Goal-Navigation copied to clipboard

Does the FMMPlanner work without a ground truth map?

Open lihzh233 opened this issue 1 year ago • 1 comments

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?

lihzh233 avatar Jan 23 '24 13:01 lihzh233

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.

ytx0323 avatar Jan 25 '24 04:01 ytx0323