Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ def interpolate(steps,fps):
|
|
16 |
|
17 |
input_vectors = np.squeeze(np.linspace(start,end,steps))
|
18 |
|
19 |
-
image_vectors = np.array(generator(input_vectors))
|
20 |
|
21 |
writer = imageio.get_writer('test.mp4', fps=fps)
|
22 |
|
|
|
16 |
|
17 |
input_vectors = np.squeeze(np.linspace(start,end,steps))
|
18 |
|
19 |
+
image_vectors = np.array(generator.predict(input_vectors))
|
20 |
|
21 |
writer = imageio.get_writer('test.mp4', fps=fps)
|
22 |
|