Fixed parentheses issue
Browse files
model.py
CHANGED
@@ -198,7 +198,7 @@ class VAE(tf.keras.Model):
|
|
198 |
"""
|
199 |
|
200 |
if z_sample == None:
|
201 |
-
z_sample = tf.expand_dims(tf.random.normal(shape=(120,)), axis=0
|
202 |
|
203 |
song_map = self.decoder(z_sample)
|
204 |
return song_map
|
|
|
198 |
"""
|
199 |
|
200 |
if z_sample == None:
|
201 |
+
z_sample = tf.expand_dims(tf.random.normal(shape=(120,)), axis=0)
|
202 |
|
203 |
song_map = self.decoder(z_sample)
|
204 |
return song_map
|