diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-10 16:11:05 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-10 16:11:05 +0100 |
| commit | 258dd9a3634239a6bab64620b408f023c46fdc4a (patch) | |
| tree | 0f00e71479edbab22ff3d81f5811a047f7ef5e46 | |
| parent | 28ab637b02dc950dbf786dc97e3a51da416ace89 (diff) | |
graph magic
| -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 |
