Skip to content

Commit a093765

Browse files
committed
Adding residual connection to latent space forecasting.
1 parent ab09230 commit a093765

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/weathergen/model/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ def forward(self, model_params, batch, forecast_steps):
593593
)
594594
]
595595

596-
tokens = self.forecast(model_params, tokens)
596+
tokens = tokens + self.forecast(model_params, tokens)
597597

598598
# prediction for final step
599599
preds_all += [

0 commit comments

Comments
 (0)