(
self,
config,
)
| 498 | config_class=PretrainedConfig |
| 499 | @with_empty_init |
| 500 | def __init__( |
| 501 | self, |
| 502 | config, |
| 503 | ): |
| 504 | super().__init__(config) |
| 505 | self.tok_embeddings = LLaMaEmbedding(config) |
| 506 | self.transformer = Transformer(config) |
| 507 | |
| 508 | def forward( |
| 509 | self, |
nothing calls this directly
no test coverage detected