sam_pt.yaml config issue
SengHongLEE opened this issue · 2 comments
I've already change the 'use_point_reinit' to true, but it doesn't change at all,still remain false.
Hej, based on your description, I believe you're running the demo. In that case, the model configuration in configs/model/sam_pt.yaml
will be overridden in the root configuration configs/demo.yaml
. Thus, to use point reinitialization in the demo, you can change the use_point_reinit
to true
in configs/demo.yaml
. You can also add a model.use_point_reinit=true
argument when running the program in the terminal to override the value without modifying yaml
files.
To delve further into the use of Hydra, you could look into the following resources:
- The Hydra getting started guide for a broad overview
- Understanding how default lists work
- Learning the syntax for overrides
I hope this helps clarify the configs for you!
Hej, based on your description, I believe you're running the demo. In that case, the model configuration in
configs/model/sam_pt.yaml
will be overridden in the root configurationconfigs/demo.yaml
. Thus, to use point reinitialization in the demo, you can change theuse_point_reinit
totrue
inconfigs/demo.yaml
. You can also add amodel.use_point_reinit=true
argument when running the program in the terminal to override the value without modifyingyaml
files.To delve further into the use of Hydra, you could look into the following resources:
- The Hydra getting started guide for a broad overview
- Understanding how default lists work
- Learning the syntax for overrides
I hope this helps clarify the configs for you!
Hej, based on your description, I believe you're running the demo. In that case, the model configuration in
configs/model/sam_pt.yaml
will be overridden in the root configurationconfigs/demo.yaml
. Thus, to use point reinitialization in the demo, you can change theuse_point_reinit
totrue
inconfigs/demo.yaml
. You can also add amodel.use_point_reinit=true
argument when running the program in the terminal to override the value without modifyingyaml
files.To delve further into the use of Hydra, you could look into the following resources:
- The Hydra getting started guide for a broad overview
- Understanding how default lists work
- Learning the syntax for overrides
I hope this helps clarify the configs for you!
THANKS for your help. It's solved.