Overrall process of constructing Experiment config.
(self)
| 314 | self._flags_obj = flags_obj |
| 315 | |
| 316 | def parse(self): |
| 317 | """Overrall process of constructing Experiment config.""" |
| 318 | params = self.base_experiment() |
| 319 | params = self.parse_config_file(params) |
| 320 | params = self.parse_runtime(params) |
| 321 | params = self.parse_data_service(params) |
| 322 | params = self.parse_params_override(params) |
| 323 | return params |
| 324 | |
| 325 | def base_experiment(self): |
| 326 | """Get the base experiment config from --experiment field.""" |