diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2021-03-12 13:59:18 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2021-03-12 13:59:18 +0800 |
commit | 2a7d3c04eab1f3c2e5306d1597399582229a87e5 (patch) | |
tree | 060bbd3d0b9d1f3823219225097fb4d74eb311fe /models/auto_encoder.py | |
parent | 39fb3e19601aaccd572ea023b117543b9d791b56 (diff) | |
parent | d63b267dd15388dd323d9b8672cdb9461b96c885 (diff) |
Merge branch 'python3.8' into python3.7
# Conflicts:
# utils/configuration.py
Diffstat (limited to 'models/auto_encoder.py')
-rw-r--r-- | models/auto_encoder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/auto_encoder.py b/models/auto_encoder.py index dbd1da0..7f0eb6c 100644 --- a/models/auto_encoder.py +++ b/models/auto_encoder.py @@ -173,7 +173,7 @@ class AutoEncoder(nn.Module): return ( (f_a_c1_t2_, f_c_c1_t2_, f_p_c1_t2_), - torch.stack((xrecon_loss, cano_cons_loss, pose_sim_loss * 10)) + (xrecon_loss, cano_cons_loss, pose_sim_loss * 10) ) else: # evaluating return f_c_c1_t2_, f_p_c1_t2_ |