summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/app/search/live.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py
index 2042287..5588272 100644
--- a/cli/app/search/live.py
+++ b/cli/app/search/live.py
@@ -170,7 +170,7 @@ class InterpolatorParam:
val = truncated_z_sample(shape=self.shape, truncation=interpolator.opts['truncation'].value)
elif self.datatype == 'label':
val = label_sampler(shape=self.shape, num_classes=interpolator.opts['num_classes'].value)
- elif self.datatype == 'encoding'
+ elif self.datatype == 'encoding':
val = np.zeros(self.shape)
else:
val = 0.0