Update modeling_super_linear.py
Browse files- modeling_super_linear.py +2 -2
modeling_super_linear.py
CHANGED
|
@@ -637,8 +637,8 @@ class SuperLinearForCausalLM(PreTrainedModel, GenerationMixin):
|
|
| 637 |
|
| 638 |
|
| 639 |
if x_enc.shape[1] < 512:
|
| 640 |
-
|
| 641 |
-
x_enc = self.fourier_interp_dim1(x_enc)
|
| 642 |
|
| 643 |
self.backbone.inf_pred_len = 192
|
| 644 |
|
|
|
|
| 637 |
|
| 638 |
|
| 639 |
if x_enc.shape[1] < 512:
|
| 640 |
+
x_enc = self.revin_layer(x_enc, 'norm')
|
| 641 |
+
#x_enc = self.fourier_interp_dim1(x_enc)
|
| 642 |
|
| 643 |
self.backbone.inf_pred_len = 192
|
| 644 |
|