(self, *args, **kwargs)
| 267 | ) |
| 268 | |
| 269 | def state_dict(self, *args, **kwargs): |
| 270 | return torch.nn.Module.state_dict(self, *args, **kwargs) |
| 271 | |
| 272 | AutoModelForCausalLMWithValueHead.state_dict = state_dict |
| 273 | logger.info("Monkey patch state_dict in AutoModelForCausalLMWithValueHead. ") |
nothing calls this directly
no test coverage detected