Skip to content

Commit

Permalink
Minor error
Browse files Browse the repository at this point in the history
  • Loading branch information
nacheteam committed Oct 31, 2023
1 parent d4462ec commit 3bd3867
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Installation updated for tensorflow, pytorch and newer versions of Python.
- Removed:
- Fixed:

1.0.7.3 (31 Oct 2023)
1.0.7.4 (31 Oct 2023)
======================
**Description**

Expand Down
4 changes: 2 additions & 2 deletions TSFEDL/models_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ def training_step(self, batch, batch_idx):

def validation_step(self, batch, batch_idx):
# this is the validation loop
src,tgt,y = batch
y_hat = self(src,tgt)
x,y = batch
y_hat = self(x)
val_loss = self.loss(y_hat, y)
self.log("val_loss", val_loss, prog_bar=True)
return val_loss
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
name='TSFEDL',

# Version
version='1.0.7.3',
version='1.0.7.4',

# Description
description='Time Series Spatio-Temporal Feature Extraction using Deep Learning',
Expand Down

0 comments on commit 3bd3867

Please sign in to comment.