summaryrefslogtreecommitdiff
path: root/models/auto_encoder.py
diff options
context:
space:
mode:
Diffstat (limited to 'models/auto_encoder.py')
-rw-r--r--models/auto_encoder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/models/auto_encoder.py b/models/auto_encoder.py
index feec5e2..de38572 100644
--- a/models/auto_encoder.py
+++ b/models/auto_encoder.py
@@ -142,4 +142,5 @@ class AutoEncoder(nn.Module):
+ self.mse_loss(f_c_c1_t2, f_c_c2_t2)
+ self.xent_loss(y, y_))
- return xrecon_loss_t2, (f_p_c1_t2, f_p_c2_t2), cano_cons_loss_t2
+ return (f_c_c1_t2, f_p_c1_t2, f_p_c2_t2,
+ xrecon_loss_t2, cano_cons_loss_t2)