fix tests

This commit is contained in:
Awni Hannun 2024-10-05 15:24:16 -07:00
parent 60c9794618
commit 62dbd418d9

View File

@ -108,8 +108,8 @@ class DeepseekMLP(nn.Module):
def __init__(
self,
config: ModelArgs,
hidden_size: int | None = None,
intermediate_size: int | None = None,
hidden_size: Optional[int] = None,
intermediate_size: Optional[int] = None,
):
super().__init__()
self.config = config