Fix code examples for transformers
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)
|
| 72 |
```
|
| 73 |
|
| 74 |
Or displayed in a Jupyter Notebook / Google Colab:
|
|
@@ -76,7 +76,7 @@ Or displayed in a Jupyter Notebook / Google Colab:
|
|
| 76 |
```python
|
| 77 |
from IPython.display import Audio
|
| 78 |
|
| 79 |
-
Audio(output, rate=model.config.sampling_rate)
|
| 80 |
```
|
| 81 |
|
| 82 |
|
|
|
|
| 68 |
```python
|
| 69 |
import scipy
|
| 70 |
|
| 71 |
+
scipy.io.wavfile.write("techno.wav", rate=model.config.sampling_rate, data=output.numpy())
|
| 72 |
```
|
| 73 |
|
| 74 |
Or displayed in a Jupyter Notebook / Google Colab:
|
|
|
|
| 76 |
```python
|
| 77 |
from IPython.display import Audio
|
| 78 |
|
| 79 |
+
Audio(output.numpy(), rate=model.config.sampling_rate)
|
| 80 |
```
|
| 81 |
|
| 82 |
|