Skip to content

Instantly share code, notes, and snippets.

View thllwg's full-sized avatar

Thorben Hellweg thllwg

View GitHub Profile
@thllwg
thllwg / config_multi.json
Created October 4, 2020 10:27
TTS Configurations
{
"model": "Tacotron2",
"run_name": "multi_libritts_360_100",
"run_description": "Tacotron2 trained on LibriTTS 360 and 100 with DDC and batch-normalization on thllwgTTS dev",
// AUDIO PARAMETERS
"audio":{
// stft parameters
"fft_size": 1024, // number of stft frequency levels. Size of the linear spectogram frame.
"win_length": 1024, // stft window length in ms.
@thllwg
thllwg / 50_particulary_hard_sentences.txt
Created July 10, 2020 07:53
50 particulary hard sentences for TTS systems as proposed by Ren et al. (2019) in https://arxiv.org/pdf/1905.09263.pdf
a
b
c
H
I
J
K
L
22222222 hello 22222222
S D S D Pass zero - zero Fail - zero to zero - zero - zero Cancelled - fifty nine to three - two -sixty four Total - fifty nine to three - two -
@thllwg
thllwg / recursive-resample.sh
Last active May 20, 2020 07:47 — forked from jorgehatccrma/recursive-resample.sh
Recursively resample a bunch of audio files in a directory, using sox
#!/bin/bash
# A simple script to recursively resample a bunch of files
# in a directory. Only certain file extensions (mp3, aac,
# flac, wav) are considered.
#
# It takes 2 command line options: `indir` and `outdir`.
# The destination (`outdir`) is relative to the current
# directory of where you were when the script was run.
#