ref: b43f077ba84a4d1e843377a4208aae30b3d43011
parent: e4e5958a143abda182828b98dc0b58cb4404b1bd
author: jbuethe <jbuethe@amazon.de>
date: Tue Sep 27 12:37:46 EDT 2022
corrected offset between decoder output on even/odd latent frames
--- a/dnn/training_tf2/rdovae.py
+++ b/dnn/training_tf2/rdovae.py
@@ -310,7 +310,7 @@
n=2
y = []
for i in range(n-1):
- offset = n-1-i
+ offset = 2 * (n-1-i)
tmp = K.concatenate([x[i][:, offset:, :], x[-1][:, -offset:, :]], axis=-2)
y.append(tf.expand_dims(tmp, axis=0))
y.append(tf.expand_dims(x[-1], axis=0))
--
⑨