(self, new_embeddings: torch.Tensor)
| 843 | return self.word_embeddings |
| 844 | |
| 845 | def set_input_embeddings(self, new_embeddings: torch.Tensor): |
| 846 | self.word_embeddings = new_embeddings |
| 847 | |
| 848 | @staticmethod |
| 849 | def get_masks(seq, device): |
nothing calls this directly
no outgoing calls
no test coverage detected