Skip to content

Commit

Permalink
Add more voices
Browse files Browse the repository at this point in the history
  • Loading branch information
synesthesiam committed Apr 16, 2023
1 parent b046976 commit 33b5443
Show file tree
Hide file tree
Showing 30 changed files with 1,062 additions and 16 deletions.
2 changes: 1 addition & 1 deletion _script/get_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def main() -> None:
parser = argparse.ArgumentParser()
parser.add_argument(
"--output-dir",
default=_DIR.parent / "_samples",
default=_DIR.parent / "samples",
help="Path to output samples directory",
)
parser.add_argument(
Expand Down
7 changes: 6 additions & 1 deletion _script/package_voices.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@ find "${voices_dir}" -name '*.onnx' | \
model_name="$(basename "${model}" .onnx)";
model_dir="$(dirname "${model}")";
if [[ -f "${model_dir}/MODEL_CARD" ]]; then
dist="${voices_dir}/_dist/voice-${model_name}.tar.gz";
if [[ -f "${dist}" ]]; then
continue;
fi

echo "${model_dir}";
cd "${model_dir}" && \
tar -czvf "${voices_dir}/_dist/voice-${model_name}.tar.gz" \
tar -czvf "${dist}" \
"${model_name}.onnx" \
"${model_name}.onnx.json" \
'MODEL_CARD';
Expand Down
15 changes: 15 additions & 0 deletions de/eva_k/x-low/MODEL_CARD
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Model card for eva_k (x-low)

* Language: de (German)
* Speakers: 1
* Quality: x-low
* Samplerate: 16,000Hz

## Dataset

* URL: https://www.caito.de/2019/01/03/the-m-ailabs-speech-dataset/
* License: See URL

## Training

Trained from scratch.
15 changes: 15 additions & 0 deletions en-us/kathleen/low/MODEL_CARD
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Model card for Kathleen (low)

* Language: en-us (U.S. English)
* Speakers: 1
* Quality: low
* Samplerate: 16,000Hz

## Dataset

* URL: https://github.com/rhasspy/dataset-voice-kathleen
* License: CC0

## Training

Finetuned from U.S. English Ryan voice (low quality).
Loading

0 comments on commit 33b5443

Please sign in to comment.