From 406c7f300f411345a42841ee44f284383e6c9fdb Mon Sep 17 00:00:00 2001 From: Prince Canuma Date: Sat, 14 Dec 2024 17:12:49 +0100 Subject: [PATCH] add coauthor :) Co-authored-by: n8programs <43304488+N8python@users.noreply.github.com> --- llms/mlx_lm/models/cohere2.py | 1 - 1 file changed, 1 deletion(-) diff --git a/llms/mlx_lm/models/cohere2.py b/llms/mlx_lm/models/cohere2.py index c6f3e885..a078409b 100644 --- a/llms/mlx_lm/models/cohere2.py +++ b/llms/mlx_lm/models/cohere2.py @@ -29,7 +29,6 @@ class ModelArgs(BaseModelArgs): class LayerNorm2D(nn.Module): - def __init__(self, d1, d2, eps): super().__init__() self.weight = mx.zeros((d1, d2))