diff options
| -rw-r--r-- | cli/app/search/live.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py index eb89202..b680f47 100644 --- a/cli/app/search/live.py +++ b/cli/app/search/live.py @@ -404,8 +404,8 @@ class Interpolator: layer_labels_stored = [] new_layer_labels = [] for i in range(layer_label_count): - layer_labels_stored[i] = self.lerp_params['layer_stored_{}'.format(i)] - new_layer_labels[i] = np.expand_dims(data['layer_labels'][i], axis=0) + layer_labels_stored.append( self.lerp_params['layer_stored_{}'.format(i)] ) + new_layer_labels.append( np.expand_dims(data['layer_labels'][i], axis=0) ) # if we're showing an encoding already, lerp to the next one if encoding_stored_mix.n.value > 0: |
