diff --git a/utils/config.py b/utils/config.py index 8c005b3..1c36765 100644 --- a/utils/config.py +++ b/utils/config.py @@ -99,7 +99,7 @@ def make_config(cfg_file:str=None,launch_experiment=True): notions: 1. "require" 2. [option] 3. (auto generated) "model" - "reset": wether to regenerate experiment dirs and discard the old ones + "reset": whether to regenerate experiment dirs and discard the old ones [exp_name]: experiment name, same as config file if not assigned (exp_name): same with config file name (exp_root): experiments/exp_name @@ -197,4 +197,4 @@ def update_attr(c, attr_dict): if __name__=='__main__': # cfg = parse_yaml('configs/demo.yaml') - cfg = parse_yaml('configs/train_w_sgm.yaml') \ No newline at end of file + cfg = parse_yaml('configs/train_w_sgm.yaml') diff --git a/validate/bucket.py b/validate/bucket.py index 56a05f0..f23be9f 100644 --- a/validate/bucket.py +++ b/validate/bucket.py @@ -40,7 +40,7 @@ def pop_and_push_namespace(self,ns,scale_factor=1): def get_anonymous_name(self): self.random_id += 1 - return '_anonymouse_'+str(self.random_id) + return '_anonymous_'+str(self.random_id) def full_name(self,name): prefix = '.'.join(self._prefix)+'.'