(self, indices, offsets)
| 31 | self.device = device |
| 32 | |
| 33 | def forward(self, indices, offsets): |
| 34 | emb_lookup = self.remote_emb_module.forward(indices, offsets) |
| 35 | return self.fc(emb_lookup.cuda(self.device)) |
| 36 | # END hybrid_model |
| 37 | |
| 38 | # BEGIN setup_trainer |
nothing calls this directly
no outgoing calls
no test coverage detected