Views
No views yet
| Task | E2E Model | Trained Domain |
|---|---|---|
| SpeechQE for English-to-German Speech Translation | h-j-han/SpeechQE-TowerInstruct-7B-en2de | CoVoST2 |
| SpeechQE for Spanish-to-English Speech Translation | h-j-han/SpeechQE-TowerInstruct-7B-es2en | CoVoST2 |
1$ git clone https://github.com/h-j-han/SpeechQE.git
2$ cd SpeechQE1$ conda create -n speechqe Python=3.11 pytorch=2.0.1 pytorch-cuda=11.7 torchvision torchaudio -c pytorch -c nvidia
2$ conda activate speechqe
3$ pip install -r requirements.txtimport datasets
cv4en = datasets.load_dataset(
"mozilla-foundation/common_voice_4_0", "en", cache_dir='path/to/cv4/download',
)1$ python speechqe/score_speechqe.py \
2 --speechqe_model=h-j-han/SpeechQE-TowerInstruct-7B-en2de \
3 --dataset_name=h-j-han/SpeechQE-CoVoST2 \
4 --base_audio_path=$BASE_AUDIO_PATH \
5 --dataset_config_name=en2de \
6 --test_split_name=test \@misc{han2024speechqe,
title={SpeechQE: Estimating the Quality of Direct Speech Translation},
author={HyoJung Han and Kevin Duh and Marine Carpuat},
year={2024},
eprint={2410.21485},
archivePrefix={arXiv},
primaryClass={cs.CL}
}