Initializes the configuration with a set of parameters.
(self, **kwargs)
| 293 | """Base class for model configurations.""" |
| 294 | |
| 295 | def __init__(self, **kwargs): |
| 296 | """Initializes the configuration with a set of parameters.""" |
| 297 | for key, value in kwargs.items(): |
| 298 | setattr(self, key, value) |
| 299 | |
| 300 | def to_dict(self): |
| 301 | """Returns the configuration as a dictionary.""" |
nothing calls this directly
no outgoing calls
no test coverage detected