Corrected error in documentation
Browse files
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 |
-
|
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
|