Skip to content

Commit

Permalink
Added info about accepted model names.
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-costas committed Mar 9, 2020
1 parent 9df28d5 commit 3928028
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion experiments/experiment_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ def do_process(settings_path: Optional[Union[Path, None]] = None,
msg = 'Depth-wise separable with dilated convolutions experiment'
model = DESSEDDilated
else:
raise AttributeError(f'Unrecognized model `{model_to_use}`.')
raise AttributeError(f'Unrecognized model `{model_to_use}`. '
f'Accepted model names are: `baseline`, '
'`baseline_dilated`, `dessed`, '
'`dessed_dilated`.')

cmd_msg(msg, start='\n-- ')
model_settings = settings[model_to_use]
Expand Down

0 comments on commit 3928028

Please sign in to comment.