Update README.md
Browse files
README.md
CHANGED
@@ -61,6 +61,9 @@ torchaudio.save("source3hat.wav", est_sources[:, :, 2].detach().cpu(), 8000)
|
|
61 |
|
62 |
```
|
63 |
|
|
|
|
|
|
|
64 |
### Inference on GPU
|
65 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
66 |
|
|
|
61 |
|
62 |
```
|
63 |
|
64 |
+
The system expects input recordings sampled at 8kHz (single channel).
|
65 |
+
If your signal has a different sample rate, resample it (e.g, using torchaudio or sox) before using the interface.
|
66 |
+
|
67 |
### Inference on GPU
|
68 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
69 |
|