Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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')
cfg = parse_yaml('configs/train_w_sgm.yaml')
2 changes: 1 addition & 1 deletion validate/bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)+'.'
Expand Down