TomRB22 commited on
Commit
55a573c
1 Parent(s): ea295a1

Fixed parentheses issue

Browse files
Files changed (1) hide show
  1. model.py +1 -1
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