Mirco commited on
Commit
5bb5ffd
1 Parent(s): 7b67f4f

Update README.md

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