Update README.md
Browse files
README.md
CHANGED
@@ -54,9 +54,10 @@ est_sources = model.separate_file(path='speechbrain/sepformer-wsj02mix/test_mixt
|
|
54 |
|
55 |
torchaudio.save("source1hat.wav", est_sources[:, :, 0].detach().cpu(), 8000)
|
56 |
torchaudio.save("source2hat.wav", est_sources[:, :, 1].detach().cpu(), 8000)
|
57 |
-
|
58 |
-
|
59 |
```
|
|
|
|
|
|
|
60 |
### Inference on GPU
|
61 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
62 |
|
|
|
54 |
|
55 |
torchaudio.save("source1hat.wav", est_sources[:, :, 0].detach().cpu(), 8000)
|
56 |
torchaudio.save("source2hat.wav", est_sources[:, :, 1].detach().cpu(), 8000)
|
|
|
|
|
57 |
```
|
58 |
+
The system expects input recordings sampled at 8kHz (single channel).
|
59 |
+
If your signal has a different sample rate, resample it (e.g, using torchaudio or sox) before using the interface.
|
60 |
+
|
61 |
### Inference on GPU
|
62 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
63 |
|