Fizzarolli
commited on
Update modernberg_model.py
Browse files- modernberg_model.py +1 -1
modernberg_model.py
CHANGED
@@ -634,7 +634,7 @@ class ModernBergAttention(nn.Module):
|
|
634 |
hidden_states = attn_outputs[0]
|
635 |
hidden_states = self.out_drop(self.Wo(hidden_states))
|
636 |
|
637 |
-
return
|
638 |
|
639 |
class ModernBergTemporalLayer(nn.Module):
|
640 |
def __init__(self, config: ModernBergConfig, layer_id: Optional[int] = None):
|
|
|
634 |
hidden_states = attn_outputs[0]
|
635 |
hidden_states = self.out_drop(self.Wo(hidden_states))
|
636 |
|
637 |
+
return hidden_states
|
638 |
|
639 |
class ModernBergTemporalLayer(nn.Module):
|
640 |
def __init__(self, config: ModernBergConfig, layer_id: Optional[int] = None):
|