Returns the configuration as a flat dictionary for backward compatibility.
(self)
| 193 | raise ValueError("Configuration is read-only and cannot be modified after initialization.") |
| 194 | |
| 195 | def get_keys(self) -> dict[str, Any]: |
| 196 | """Returns the configuration as a flat dictionary for backward compatibility.""" |
| 197 | return self._flat_config |
| 198 | |
| 199 | |
| 200 | def initialize(argv: list[str], **kwargs) -> HyperParameters: |
no outgoing calls
no test coverage detected