(self, batch, batch_idx)
| 102 | return self.neural_network(embedding) |
| 103 | |
| 104 | def training_step(self, batch, batch_idx): |
| 105 | loss = self.common_step(batch, batch_idx) |
| 106 | return loss |
| 107 | |
| 108 | def validation_step(self, batch, batch_idx): |
| 109 | loss = self.common_step(batch, batch_idx) |
nothing calls this directly
no test coverage detected