Override the configs of params from the config_file.
(self, params)
| 329 | return exp_factory.get_exp_config(self._flags_obj.experiment) |
| 330 | |
| 331 | def parse_config_file(self, params): |
| 332 | """Override the configs of params from the config_file.""" |
| 333 | for config_file in self._flags_obj.config_file or []: |
| 334 | params = hyperparams.override_params_dict( |
| 335 | params, config_file, is_strict=True) |
| 336 | return params |
| 337 | |
| 338 | def parse_runtime(self, params): |
| 339 | """Override the runtime configs of params from flags.""" |
no outgoing calls
no test coverage detected