TomRB22 commited on
Commit
7befa11
1 Parent(s): 008e95c

Updated a method's name

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -86,10 +86,10 @@ Parameters:
86
  Returns:
87
  * tf.Tensor: The parameters of the distribution which encode the song (mu, sd) and a sampled latent representation from this distribution (z_sample).
88
 
89
- ### generate
90
 
91
  ```python
92
- def generate(self, z_sample: tf.Tensor=None) -> tf.Tensor:
93
  ```
94
  Decode a latent representation of a song.
95
 
 
86
  Returns:
87
  * tf.Tensor: The parameters of the distribution which encode the song (mu, sd) and a sampled latent representation from this distribution (z_sample).
88
 
89
+ ### decode
90
 
91
  ```python
92
+ def decode(self, z_sample: tf.Tensor=None) -> tf.Tensor:
93
  ```
94
  Decode a latent representation of a song.
95