diff options
| -rw-r--r-- | cli/app/search/live.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py index 8c31e6d..80aafc6 100644 --- a/cli/app/search/live.py +++ b/cli/app/search/live.py @@ -225,7 +225,7 @@ class Interpolator: encoding_shape_placeholder = tf.constant(np.zeros(encoding_shape_specific, dtype=np.float32)) encoding_stored = LerpParam('encoding_stored', shape=encoding_shape_specific, datatype="encoding") - encoding_mix = LerpParam('encoding_mix', a_in=encoding_stored, b_in=encoding_shape_placeholder, shape=encoding_shape_specific, datatype="encoding") + encoding_mix = LerpParam('encoding_mix', a_in=encoding_stored.output, b_in=encoding_shape_placeholder, shape=encoding_shape_specific, datatype="encoding") # use the placeholder to redirect parts of the graph. # - computed encoding goes into the encoding_mix # - encoding mix output goes into the main biggan graph |
