Update README.md
Browse files
README.md
CHANGED
@@ -68,7 +68,7 @@ The resulting waveform can be saved as a `.wav` file:
|
|
68 |
```python
|
69 |
import scipy
|
70 |
|
71 |
-
scipy.io.wavfile.write("techno.wav", rate=model.config.sampling_rate, data=output.float().numpy())
|
72 |
```
|
73 |
|
74 |
Or displayed in a Jupyter Notebook / Google Colab:
|
|
|
68 |
```python
|
69 |
import scipy
|
70 |
|
71 |
+
scipy.io.wavfile.write("techno.wav", rate=model.config.sampling_rate, data=output.float().numpy().T)
|
72 |
```
|
73 |
|
74 |
Or displayed in a Jupyter Notebook / Google Colab:
|