TomRB22 commited on
Commit
6051fa2
1 Parent(s): 26f0c95

Corrected error in documentation

Browse files
Files changed (1) hide show
  1. model.py +1 -1
model.py CHANGED
@@ -157,7 +157,7 @@ class VAE(tf.keras.Model):
157
 
158
  def encode(self, x_input: tf.Tensor) -> tuple[tf.Tensor]:
159
  """
160
- Get a "song map" and make a forward pass through the encoder, in order
161
  to return the latent representation and the distribution's parameters.
162
 
163
  Parameters
 
157
 
158
  def encode(self, x_input: tf.Tensor) -> tuple[tf.Tensor]:
159
  """
160
+ Make a forward pass through the encoder for a given song map, in order
161
  to return the latent representation and the distribution's parameters.
162
 
163
  Parameters