(self, input_ids, **kwargs)
| 25 | |
| 26 | # Do a forward pass through the model |
| 27 | def forward(self, input_ids, **kwargs): |
| 28 | return self.model(input_ids, **kwargs) |
| 29 | |
| 30 | def configure_optimizers(self): |
| 31 | optimizer = AdamW(self.parameters(), lr = self.learning_rate) |
nothing calls this directly
no outgoing calls
no test coverage detected