zinc75 commited on
Commit
12b5e52
1 Parent(s): 455bcb4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -8
README.md CHANGED
@@ -42,13 +42,14 @@ model-index:
42
 
43
  ## Overview
44
 
45
- This bandwidth extension model is trained on one specific body conduction sensor data from the [Vibravox dataset](https://huggingface.co/datasets/Cnam-LMSSC/vibravox).
46
- The model is designed to to enhance the audio quality of body-conducted captured speech, by denoising and regenerating mid and high frequencies from low frequency content only.
47
 
48
  ## Disclaimer
49
- This model has been trained for **specific non-conventional speech sensors** and is intended to be used with **in-domain data**.
50
- Please be advised that using these models outside their intended sensor data may result in suboptimal performance.
51
 
 
 
 
52
 
53
  ## Training procedure
54
 
@@ -70,7 +71,3 @@ audio_16kHz = torchaudio.functional.resample(audio_48kHz, orig_freq=48_000, new_
70
  cut_audio_16kHz = model.cut_to_valid_length(audio_16kHz)
71
  enhanced_audio_16kHz = model(cut_audio_16kHz)
72
  ```
73
-
74
- ## Link to BWE models trained on other body conducted sensors :
75
-
76
- The entry point to all EBEN models for Bandwidth Extension (BWE) is available at [https://huggingface.co/Cnam-LMSSC/vibravox_EBEN_models](https://huggingface.co/Cnam-LMSSC/vibravox_EBEN_models).
 
42
 
43
  ## Overview
44
 
45
+ This bandwidth extension model, trained on [Vibravox](https://huggingface.co/datasets/Cnam-LMSSC/vibravox) body conduction sensor data, enhances body-conducted speech audio by denoising and regenerating mid and high frequencies from low-frequency content.
 
46
 
47
  ## Disclaimer
48
+ This model, trained for **a specific non-conventional speech sensor**, is intended to be used with **in-domain data**. Using it with other sensor data may lead to suboptimal performance.
 
49
 
50
+ ## Link to BWE models trained on other body conducted sensors :
51
+
52
+ The entry point to all EBEN models for Bandwidth Extension (BWE) is available at [https://huggingface.co/Cnam-LMSSC/vibravox_EBEN_models](https://huggingface.co/Cnam-LMSSC/vibravox_EBEN_models).
53
 
54
  ## Training procedure
55
 
 
71
  cut_audio_16kHz = model.cut_to_valid_length(audio_16kHz)
72
  enhanced_audio_16kHz = model(cut_audio_16kHz)
73
  ```