(self)
| 128 | group_name: str = field(default="default") |
| 129 | |
| 130 | def __post_init__(self): |
| 131 | if self.config_overrides is not None and (self.config_name is not None or self.model_name_or_path is not None): |
| 132 | raise ValueError( |
| 133 | "--config_overrides can't be used in combination with --config_name or --model_name_or_path" |
| 134 | ) |
| 135 | |
| 136 | |
| 137 | @dataclass |
nothing calls this directly
no outgoing calls
no test coverage detected