Skip to content

Commit

Permalink
vibravox2 -> vibravox
Browse files Browse the repository at this point in the history
  • Loading branch information
jhauret committed Jun 26, 2024
1 parent 821f605 commit b477d68
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion configs/lightning_datamodule/bwe.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
_target_: vibravox.lightning_datamodules.bwe.BWELightningDataModule

sample_rate: ${sample_rate}
dataset_name: "Cnam-LMSSC/vibravox2"
dataset_name: "Cnam-LMSSC/vibravox"
subset: "speech_clean"
sensor: "body_conducted.rigid_in_ear_microphone"
collate_strategy: "constant_length-2500-ms"
Expand Down
2 changes: 1 addition & 1 deletion configs/lightning_datamodule/spkv.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
_target_: vibravox.lightning_datamodules.spkv.SPKVLightningDataModule

sample_rate: ${sample_rate}
dataset_name: "Cnam-LMSSC/vibravox2"
dataset_name: "Cnam-LMSSC/vibravox"
subset: "speech_clean"
pairs: "mixed_gender" # can also be "same_gender"
sensor_a: "headset_microphone"
Expand Down
2 changes: 1 addition & 1 deletion configs/lightning_datamodule/stp.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
_target_: vibravox.lightning_datamodules.stp.STPLightningDataModule

sample_rate: ${sample_rate}
dataset_name: "Cnam-LMSSC/vibravox2"
dataset_name: "Cnam-LMSSC/vibravox"
subset: "speech_clean"
sensor: "headset_microphone"
streaming: False
Expand Down
2 changes: 1 addition & 1 deletion scripts/eben_enhanced_vibravox.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

resampler = torchaudio.transforms.Resample(orig_freq=48_000, new_freq=16_000)

test_dataset = load_dataset("Cnam-LMSSC/vibravox2", "speech_clean", split="test", streaming=False)
test_dataset = load_dataset("Cnam-LMSSC/vibravox", "speech_clean", split="test", streaming=False)


def enhance_audio(sample):
Expand Down
2 changes: 1 addition & 1 deletion scripts/test_all_phonemizers.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


SAMPLE_RATE = 16_000
DATASETS = ["Cnam-LMSSC/vibravox2", "Cnam-LMSSC/vibravox_enhanced_by_EBEN"]
DATASETS = ["Cnam-LMSSC/vibravox", "Cnam-LMSSC/vibravox_enhanced_by_EBEN"]
FEATURE_EXTRACTOR = transformers.Wav2Vec2FeatureExtractor()
TOKENIZER = transformers.Wav2Vec2CTCTokenizer.from_pretrained("Cnam-LMSSC/vibravox-phonemes-tokenizer")
PER = torchmetrics.text.CharErrorRate()
Expand Down

0 comments on commit b477d68

Please sign in to comment.