(self)
| 120 | ) |
| 121 | |
| 122 | def __post_init__(self): |
| 123 | if self.config_overrides is not None and (self.config_name is not None or self.model_name_or_path is not None): |
| 124 | raise ValueError( |
| 125 | "--config_overrides can't be used in combination with --config_name or --model_name_or_path" |
| 126 | ) |
| 127 | |
| 128 | |
| 129 | @dataclass |
nothing calls this directly
no outgoing calls
no test coverage detected