habitat-sim
habitat-sim copied to clipboard
No Glob path result found for *.json so unable to load templates from that path.
Habitat-Sim version: v0.3.1
I've installed habitat-sim and habitat lab. I can run examples without issue.
I want to use hm3d dataset but I am have error when I try.
I am following the tutorial
I can download the dataset successfully:
python -m habitat_sim.utils.datasets_download --username <api-token-id> --password <api-token-secret> --uids hm3d_minival_v0.2
I am creating a test python file in examples folder to see scenes:
#examples/test.py import habitat_sim backend_cfg = habitat_sim.SimulatorConfiguration() backend_cfg.scene_id = "/habitat-sim/data/scene_datasets/hm3d/minival/00800-TEEsavR23oF/TEEsavR23oF.basis.glb" backend_cfg.scene_dataset_config_file = "/habitat-sim/data/scene_datasets/hm3d/hm3d_annotated_basis.scene_dataset_config.json" sem_cfg = habitat_sim.CameraSensorSpec() sem_cfg.uuid = "semantic" sem_cfg.sensor_type = habitat_sim.SensorType.SEMANTIC agent_cfg = habitat_sim.agent.AgentConfiguration() agent_cfg.sensor_specifications = [sem_cfg] sim_cfg = habitat_sim.Configuration(backend_cfg, [agent_cfg]) sim = habitat_sim.Simulator(sim_cfg)
When I try to run I got following error:
. . [13:07:07:929709]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for
/habitat-sim/data/scene_datasets/hm3d/val/00891-cvZr5TUy5C5/*.basis.scene_instance.jsonso unable to load templates from that path. [13:07:07:929722]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for/habitat-sim/data/scene_datasets/hm3d/val/00894-HY1NcmCgn3n/*.basis.scene_instance.jsonso unable to load templates from that path. [13:07:10:986678]:[Warning]:[Metadata] SceneDatasetAttributes.cpp(107)::addNewSceneInstanceToDataset : Dataset : 'hm3d_annotated_basis' : Lighting Layout Attributes 'no_lights' specified in Scene Attributes but does not exist in dataset, so creating default.
When I check dataset folder I can not find any *basis.scene_instance.json file. In the tutorial it says:
Most importantly, ensure that the hm3d_annotated_*, *.semantic.glb, and *.semantic.txt files are present.
When I check all mentioned files represent.
So do you have a further documentation or tutorial to use hm3d with habitat on hand ?
Habitat-Sim version: v0.3.1
I've installed habitat-sim and habitat lab. I can run examples without issue. I want to use hm3d dataset but I am have error when I try. I am following the tutorial I can download the dataset successfully:
python -m habitat_sim.utils.datasets_download --username <api-token-id> --password <api-token-secret> --uids hm3d_minival_v0.2I am creating a test python file in examples folder to see scenes:#examples/test.py import habitat_sim backend_cfg = habitat_sim.SimulatorConfiguration() backend_cfg.scene_id = "/habitat-sim/data/scene_datasets/hm3d/minival/00800-TEEsavR23oF/TEEsavR23oF.basis.glb" backend_cfg.scene_dataset_config_file = "/habitat-sim/data/scene_datasets/hm3d/hm3d_annotated_basis.scene_dataset_config.json" sem_cfg = habitat_sim.CameraSensorSpec() sem_cfg.uuid = "semantic" sem_cfg.sensor_type = habitat_sim.SensorType.SEMANTIC agent_cfg = habitat_sim.agent.AgentConfiguration() agent_cfg.sensor_specifications = [sem_cfg] sim_cfg = habitat_sim.Configuration(backend_cfg, [agent_cfg]) sim = habitat_sim.Simulator(sim_cfg)
When I try to run I got following error:
. . [13:07:07:929709]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : : No Glob path result found for
/habitat-sim/data/scene_datasets/hm3d/val/00891-cvZr5TUy5C5/*.basis.scene_instance.jsonso unable to load templates from that path. [13:07:07:929722]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : : No Glob path result found for/habitat-sim/data/scene_datasets/hm3d/val/00894-HY1NcmCgn3n/*.basis.scene_instance.jsonso unable to load templates from that path. [13:07:10:986678]:[Warning]:[Metadata] SceneDatasetAttributes.cpp(107)::addNewSceneInstanceToDataset : Dataset : 'hm3d_annotated_basis' : Lighting Layout Attributes 'no_lights' specified in Scene Attributes but does not exist in dataset, so creating default.When I check dataset folder I can not find any *basis.scene_instance.json file. In the tutorial it says:
Most importantly, ensure that the hm3d_annotated_*, *.semantic.glb, and *.semantic.txt files are present.
When I check all mentioned files represent.
So do you have a further documentation or tutorial to use hm3d with habitat on hand ?
I have met the same problem, any solutions?
i have the same problem, too
[19:29:32:458830]:[Warning]:[Metadata] AbstractAttributesManager.h(531)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for ./data/scene_datasets/hm3d_v0.2/val/00894-HY1NcmCgn3n/*.basis.scene_instance.json so unable to load templates from that path.
I came across the same issue, does anyone know a solution? I am using the demo code, with all data downloaded
import habitat_sim
PATH_TO_HM3D = "./data/scene_datasets/hm3d"
backend_cfg = habitat_sim.SimulatorConfiguration()
backend_cfg.scene_id = f"{PATH_TO_HM3D}/minival/00800-TEEsavR23oF/TEEsavR23oF.basis.glb"
backend_cfg.scene_dataset_config_file = f"{PATH_TO_HM3D}/hm3d_annotated_basis.scene_dataset_config.json"
sem_cfg = habitat_sim.CameraSensorSpec()
sem_cfg.uuid = "semantic"
sem_cfg.sensor_type = habitat_sim.SensorType.SEMANTIC
agent_cfg = habitat_sim.agent.AgentConfiguration()
agent_cfg.sensor_specifications = [sem_cfg]
sim_cfg = habitat_sim.Configuration(backend_cfg, [agent_cfg])
sim = habitat_sim.Simulator(sim_cfg)
and I got error:
(habitat) marmot@Temari:~/Boyang/pvlm$ python pretrain_data_collection/load_hm3d.py
[23:36:52:598459]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/example/00861-GLAQ4DNUx5U/*.basis.glb` so unable to load templates from that path.
[23:36:52:598735]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00900-XRJ2muKkwAV/*.basis.glb` so unable to load templates from that path.
[23:36:52:598749]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00901-aJoC8Qw6xQ5/*.basis.glb` so unable to load templates from that path.
[23:36:52:598759]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00904-S9CUp5RsFY9/*.basis.glb` so unable to load templates from that path.
[23:36:52:598767]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00905-9v5HzFAB1cm/*.basis.glb` so unable to load templates from that path.
[23:36:52:598776]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00907-WGxjrSp71zX/*.basis.glb` so unable to load templates from that path.
[23:36:52:598785]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00909-MrKys1cv4jD/*.basis.glb` so unable to load templates from that path.
[23:36:52:598793]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00910-jE7Qzu3FyJD/*.basis.glb` so unable to load templates from that path.
[23:36:52:598801]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00911-a8h4mZT8buN/*.basis.glb` so unable to load templates from that path.
[23:36:52:598810]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00913-URu5ybF8PrH/*.basis.glb` so unable to load templates from that path.
[23:36:52:598818]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00914-TxyEAAVD4iD/*.basis.glb` so unable to load templates from that path.
[23:36:52:598827]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00915-ieavb8rbmA9/*.basis.glb` so unable to load templates from that path.
[23:36:52:598836]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00918-NQX2SZD1TMJ/*.basis.glb` so unable to load templates from that path.
[23:36:52:598844]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00921-nhtTwUrWv7v/*.basis.glb` so unable to load templates from that path.
[23:36:52:598853]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00925-4QUpJVDQ1DN/*.basis.glb` so unable to load templates from that path.
[23:36:52:598861]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00926-egVUByjgpHU/*.basis.glb` so unable to load templates from that path.
[23:36:52:598871]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00927-kucQY8TbKkz/*.basis.glb` so unable to load templates from that path.
[23:36:52:598879]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00929-azb2LDaMrGZ/*.basis.glb` so unable to load templates from that path.
[23:36:52:598887]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00939-VedHjk858Vu/*.basis.glb` so unable to load templates from that path.
[23:36:52:598895]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00940-oHcTqmvveM7/*.basis.glb` so unable to load templates from that path.
[23:36:52:598904]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00947-fyZC1Whhj9i/*.basis.glb` so unable to load templates from that path.
[23:36:52:598912]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00951-RGvKsZAErEk/*.basis.glb` so unable to load templates from that path.
[23:36:52:598921]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00952-ogAZhviACbN/*.basis.glb` so unable to load templates from that path.
[23:36:52:598929]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00955-5TxBa2qkcAh/*.basis.glb` so unable to load templates from that path.
[23:36:52:598936]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00956-oNiVkiFKkAr/*.basis.glb` so unable to load templates from that path.
[23:36:52:598943]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00957-DowRMDn4MVe/*.basis.glb` so unable to load templates from that path.
[23:36:52:598950]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00961-dU7KLdn2Kcd/*.basis.glb` so unable to load templates from that path.
[23:36:52:598957]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00963-awRQoguC7TN/*.basis.glb` so unable to load templates from that path.
[23:36:52:598992]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00967-XwXCfkthawu/*.basis.glb` so unable to load templates from that path.
[23:36:52:599001]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00970-kUmc6DP2tff/*.basis.glb` so unable to load templates from that path.
[23:36:52:599010]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00977-1cQ7WUQgXJ4/*.basis.glb` so unable to load templates from that path.
[23:36:52:599020]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00978-sZJ5zo6FrEe/*.basis.glb` so unable to load templates from that path.
[23:36:52:599029]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00981-Rp8JNfstaew/*.basis.glb` so unable to load templates from that path.
[23:36:52:599038]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00985-3ZJjFFjJKqZ/*.basis.glb` so unable to load templates from that path.
[23:36:52:599047]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00989-t9gvgFMoH4R/*.basis.glb` so unable to load templates from that path.
[23:36:52:599074]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Stage Template> : No Glob path result found for `./data/scene_datasets/hm3d/test/00992-G3AqUkGnykx/*.basis.glb` so unable to load templates from that path.
[23:36:52:610120]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/example/00861-GLAQ4DNUx5U/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610157]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/minival/00800-TEEsavR23oF/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610175]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/minival/00802-wcojb4TFT35/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610189]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/minival/00803-k1cupFYWXJ6/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610243]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/minival/00808-y9hTuugGdiq/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610253]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00900-XRJ2muKkwAV/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610261]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00901-aJoC8Qw6xQ5/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610268]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00904-S9CUp5RsFY9/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610298]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00905-9v5HzFAB1cm/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610305]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00907-WGxjrSp71zX/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610335]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00909-MrKys1cv4jD/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610344]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00910-jE7Qzu3FyJD/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610369]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00911-a8h4mZT8buN/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610377]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00913-URu5ybF8PrH/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610386]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00914-TxyEAAVD4iD/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610394]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00915-ieavb8rbmA9/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610403]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00918-NQX2SZD1TMJ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610411]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00921-nhtTwUrWv7v/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610420]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00925-4QUpJVDQ1DN/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610429]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00926-egVUByjgpHU/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610437]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00927-kucQY8TbKkz/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610445]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00929-azb2LDaMrGZ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610455]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00939-VedHjk858Vu/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610465]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00940-oHcTqmvveM7/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610474]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00947-fyZC1Whhj9i/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610501]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00951-RGvKsZAErEk/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610511]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00952-ogAZhviACbN/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610520]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00955-5TxBa2qkcAh/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610529]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00956-oNiVkiFKkAr/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610539]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00957-DowRMDn4MVe/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610548]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00961-dU7KLdn2Kcd/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610575]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00963-awRQoguC7TN/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610584]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00967-XwXCfkthawu/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610594]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00970-kUmc6DP2tff/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610603]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00977-1cQ7WUQgXJ4/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610613]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00978-sZJ5zo6FrEe/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610622]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00981-Rp8JNfstaew/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610631]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00985-3ZJjFFjJKqZ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610640]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00989-t9gvgFMoH4R/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610649]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/test/00992-G3AqUkGnykx/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610664]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00006-HkseAnWCgqk/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610679]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00009-vLpv2VX547B/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610693]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00016-qk9eeNeR4vw/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610707]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00017-oEPjPNSPmzL/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610721]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00020-XYyR54sxe6b/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610736]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00022-gmuS7Wgsbrx/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610750]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00023-zepmXAdrpjR/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610764]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00025-ixTj1aTMup2/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610796]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00031-Wo6kuutE9i7/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610812]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00033-oPj9qMxrDEa/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610826]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00034-6imZUJGRUq4/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610877]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00035-3XYAD64HpDr/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610891]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00043-Jfyvj3xn2aJ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610906]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00055-HxmXPBbFCkH/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610937]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00057-1UnKg1rAb8A/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610971]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00059-kJxT5qssH4H/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:610985]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00062-ACZZiU6BXLz/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611015]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00064-gQgtJ9Stk5s/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611029]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00081-5biL7VEkByM/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611044]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00087-YY8rqV6L6rf/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611058]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00096-6HRFAUDqpTb/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611073]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00099-226REUyJh2K/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611088]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00105-xWvSkKiWQpC/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611102]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00108-oStKKWkQ1id/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611116]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00109-GTV2Y73Sn5t/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611130]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00135-HeSYRw7eMtG/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611144]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00141-iigzG1rtanx/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611159]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00143-5Kw4nGdqYtS/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611174]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00149-UuwwmrTsfBN/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611188]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00150-LcAd9dhvVwh/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611202]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00155-iLDo95ZbDJq/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611216]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00164-XfUxBGTFQQb/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611230]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00166-RaYrxWt5pR1/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611244]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00168-bHKTDQFJxTw/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611257]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00172-bB6nKqfsb1z/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611271]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00173-qZ4B7U6XE5Y/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611286]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00177-VSxVP19Cdyw/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611300]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00179-MVVzj944atG/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611315]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00188-dQrLTxHvLXU/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611330]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00203-VoVGtfYrpuQ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611344]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00205-NEVASPhcrxR/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611358]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00207-FRQ75PjD278/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611372]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00210-j2EJhFEQGCL/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611387]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00217-qz3829g1Lzf/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611402]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00222-g8Xrdbe9fir/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611416]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00234-nACV8wLu1u5/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611430]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00238-j6fHrce9pHR/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611445]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00241-h6nwVLpAKQz/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611458]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00245-741Fdj7NLF9/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611473]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00250-U3oQjwTuMX8/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611487]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00251-wsAYBFtQaL7/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611501]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00254-YMNvYDhK8mB/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611515]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00255-NGyoyh91xXJ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611529]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00256-92vYG1q49FY/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611544]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00258-2Pc8W48bu21/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611559]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00261-fK2vEV32Lag/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611574]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00262-1xGrZPxG1Hz/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611588]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00263-GGBvSFddQgs/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611602]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00267-gQ3xxshDiCz/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611616]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00269-JNiWU5TZLtt/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611629]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00272-kA2nG18hCAr/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611643]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00294-PPTLa8SkUfo/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611658]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00299-bdp1XNEdvmW/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611672]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00304-X6Pct1msZv5/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611687]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00307-vDfkYo5VqEQ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611701]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00313-PE6kVEtrxtj/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611715]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00323-yHLr6bvWsVm/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611730]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00324-DoSbsoo4EAg/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611744]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00326-u9rPN5cHWBg/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611758]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00327-xgLmjqzoAzF/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611772]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00330-WhNyDTnd9g5/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611786]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00366-fxbzYAGkrtm/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611800]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00378-DqJKU7YU7dA/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611813]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00382-S7uMvxjBVZq/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611827]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00384-ceJTwFNjqCt/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611841]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00386-b3WpMbPFB6q/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611856]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00388-pcpn6mFqFCg/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611869]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00397-ZNanfzgCdm3/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611883]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00401-H8rQCnvBgo6/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611898]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00404-QN2dRqwd84J/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611911]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00407-NPHxDe6VeCc/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611925]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00410-v7DzfFFEpsD/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611939]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00414-77mMEyxhs44/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611953]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00417-nGhNxKrgBPb/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611968]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00422-8wJuSPJ9FXG/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611983]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00434-L5QEsaVqwrY/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:611996]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00440-wPLokgvCnuk/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612010]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00444-sX9xad6ULKc/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612024]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00463-URjpCob8MGw/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612039]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00466-xAHnY3QzFUN/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612053]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00475-g7hUFVNac26/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612068]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00476-NtnvZSMK3en/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612083]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00487-erXNfWVjqZ8/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612097]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00495-CQWES1bawee/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612111]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00506-QVAA6zecMHu/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612124]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00508-4vwGX7U38Ux/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612138]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00525-iKFn6fzyRqs/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612152]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00529-W9YAR9qcuvN/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612167]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00534-DBBESbk4Y3k/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612180]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00537-oahi4u45xMf/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612194]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00538-3CBBjsNkhqW/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612208]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00539-zUG6FL9TYeR/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612222]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00541-FnDDfrBZPhh/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612258]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00546-nS8T59Aw3sf/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612272]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00547-9h5JJxM6E5S/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612303]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00557-fRZhp6vWGw7/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612353]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00560-gjhYih4upQ9/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612366]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00567-KjZrPggnHm8/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612379]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00569-YJDUB7hWg9h/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612394]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00582-TYDavTf8oyy/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612408]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00590-qgZhhx1MpTi/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612442]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00591-JptJPosx1Z6/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612456]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00592-CthA7sQNTPK/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612471]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00598-mt9H8KcxRKD/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612484]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00606-W16Bm4ysK8v/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612515]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00612-GsQBY83r3hb/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612528]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00619-R9fYpvCUkV7/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612542]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00624-ooq3SnvC79d/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612556]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00626-XiJhRLvpKpX/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612570]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00638-iePHCSf119p/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612584]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00643-ggNAcMh8JPT/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612598]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00657-TSJmdttd2GV/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612612]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00662-aRKASs4e8j1/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612626]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00664-u5atqC7vRCY/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612640]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00668-6YtDG3FhNvx/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612654]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00669-DNWbUAJYsPy/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612667]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00680-YmWinf3mhb5/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612681]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00685-ENiCjXWB6aQ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612694]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00688-SgkmkWjjmDJ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612708]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00696-DsEJeNPcZtE/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612721]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00706-YHmAkqgwe2p/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612735]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00707-XVSZJAtHKdi/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612749]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00712-HZ2iMMBsBQ9/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612763]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00720-8B43pG641ff/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612776]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00723-hWDDQnSDMXb/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612790]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00732-Z2DQddYp1fn/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612804]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00733-GtM3JtRvvvR/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612819]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00738-GPyDUnjwZQy/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612833]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00741-w8GiikYuFRk/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612846]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00744-1S7LAXRdDqK/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612860]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00745-yX5efd48dLf/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612874]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00746-RTV2n6fXB2w/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612887]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00750-E1NrAhMoqvB/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612900]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00757-LVgQNuK8vtv/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612914]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/train/00758-HfMobPm86Xn/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612928]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00800-TEEsavR23oF/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612941]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00802-wcojb4TFT35/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612955]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00803-k1cupFYWXJ6/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612969]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00808-y9hTuugGdiq/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612983]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00810-CrMo8WxCyVb/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:612998]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00813-svBbv1Pavdk/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613030]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00814-p53SfW6mjZe/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613060]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00815-h1zeeAwLh9Z/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613092]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00820-mL8ThkuaVTM/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613106]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00821-eF36g7L6Z9M/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613120]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00823-7MXmsvcQjpJ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613132]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00824-Dd4bFSTQ8gi/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613147]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00827-BAbdmeyTvMZ/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613161]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00829-QaLdnwvtxbs/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613175]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00831-yr17PDCnDDW/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613189]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00832-qyAac8rV8Zk/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613204]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00835-q3zU7Yy5E5s/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613221]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00839-zt1RVoi7PcG/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613242]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00843-DYehNKdT76V/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613261]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00844-q5QZSEeHe5g/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613276]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00847-bCPU9suPUw9/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613288]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00848-ziup5kvtCCR/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613303]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00849-a8BtkwhxdRV/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613316]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00853-5cdEh9F2hJL/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613332]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00861-GLAQ4DNUx5U/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613346]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00862-LT9Jq6dN3Ea/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613360]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00869-MHPLjHsuG27/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613374]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00871-VBzV5z6i1WS/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613388]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00873-bxsVRursffK/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613401]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00876-mv2HUxq3B53/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613415]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00877-4ok3usBNeis/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613445]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00878-XB4GS9ShBRE/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613459]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00880-Nfvxx8J5NCo/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613490]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00890-6s7QHgap2fW/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613502]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00891-cvZr5TUy5C5/*.basis.scene_instance.json` so unable to load templates from that path.
[23:36:52:613516]:[Warning]:[Metadata] AbstractAttributesManager.h(524)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `./data/scene_datasets/hm3d/val/00894-HY1NcmCgn3n/*.basis.scene_instance.json` so unable to load templates from that path.
Renderer: NVIDIA GeForce GTX 1080 Ti/PCIe/SSE2 by NVIDIA Corporation
OpenGL version: 4.6.0 NVIDIA 535.183.01
Using optional features:
GL_ARB_vertex_array_object
GL_ARB_separate_shader_objects
GL_ARB_robustness
GL_ARB_texture_storage
GL_ARB_texture_view
GL_ARB_framebuffer_no_attachments
GL_ARB_invalidate_subdata
GL_ARB_texture_storage_multisample
GL_ARB_multi_bind
GL_ARB_direct_state_access
GL_ARB_get_texture_sub_image
GL_ARB_texture_filter_anisotropic
GL_KHR_debug
GL_KHR_parallel_shader_compile
GL_NV_depth_buffer_float
Using driver workarounds:
no-forward-compatible-core-context
nv-egl-incorrect-gl11-function-pointers
no-layout-qualifiers-on-old-glsl
nv-zero-context-profile-mask
nv-implementation-color-read-format-dsa-broken
nv-cubemap-inconsistent-compressed-image-size
nv-cubemap-broken-full-compressed-image-query
nv-compressed-block-size-in-bits
[23:36:52:660762]:[Warning]:[Metadata] SceneDatasetAttributes.cpp(107)::addNewSceneInstanceToDataset : Dataset : 'hm3d_annotated_basis' : Lighting Layout Attributes 'no_lights' specified in Scene Attributes but does not exist in dataset, so creating default.
i have the same problem, too
[14:25:14:916381]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00904-S9CUp5RsFY9/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916389]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00905-9v5HzFAB1cm/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916398]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00907-WGxjrSp71zX/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916406]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00909-MrKys1cv4jD/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916414]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00910-jE7Qzu3FyJD/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916422]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00911-a8h4mZT8buN/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916431]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00913-URu5ybF8PrH/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916439]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00914-TxyEAAVD4iD/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916447]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00915-ieavb8rbmA9/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916455]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00918-NQX2SZD1TMJ/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916463]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00921-nhtTwUrWv7v/*.basis.scene_instance.json` so unable to load templates from that path.
[14:25:14:916471]:[Warning]:[Metadata] AttributesManagerBase.h(457)::buildAttrSrcPathsFromJSONAndLoad : <Scene Instance> : No Glob path result found for `/data/hm3d/tars/data/scene_datasets/hm3d/test/00925-4QUpJVDQ1DN/*.basis.scene_instance.json` so unable to load templates from that path.
I have had the same error for a few months. One hacky workaround it (probably only possible in Jupyter environments) is to interrupt the execution and start again—the error does not occur for subsequent runs. Quick demonstration at https://www.youtube.com/watch?v=U3qbSrslrDs.
@anilkusc I am facing the exact same issue. In my case, the basis.scene_instance.json files are not even downloaded. How do I download the full dataset for val_0.2?