cemsubakan commited on
Commit
9f9b271
1 Parent(s): 2e652bc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -87,7 +87,7 @@ est_sources = model.separate_file(path='test_mixture.wav')
87
  snr_est_model = snrest.from_hparams(source="speechbrain/REAL-M-sisnr-estimator",savedir='pretrained_models/REAL-M-sisnr-estimator')
88
  mix, fs = torchaudio.load('test_mixture.wav')
89
  snrhat = snr_est_model.estimate_batch(mix, est_sources)
90
- print(snrhat) # Estimates are in dB / 10
91
 
92
  ```
93
 
 
87
  snr_est_model = snrest.from_hparams(source="speechbrain/REAL-M-sisnr-estimator",savedir='pretrained_models/REAL-M-sisnr-estimator')
88
  mix, fs = torchaudio.load('test_mixture.wav')
89
  snrhat = snr_est_model.estimate_batch(mix, est_sources)
90
+ print(snrhat) # Estimates are in dB / 10 (in the range 0-1, e.g., 0 --> 0dB, 1 --> 10dB)
91
 
92
  ```
93