Updated a method's name
Browse files
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 |
-
###
|
90 |
|
91 |
```python
|
92 |
-
def
|
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 |
|