(self, input_ids, **kwargs)
| 32 | |
| 33 | # Do a forward pass through the model |
| 34 | def forward(self, input_ids, **kwargs): |
| 35 | return self.model(input_ids, **kwargs) |
| 36 | |
| 37 | def configure_optimizers(self): |
| 38 | optimizer = AdamW(self.parameters(), lr = self.learning_rate) |
nothing calls this directly
no outgoing calls
no test coverage detected