mirror of
https://github.com/coqui-ai/TTS.git
synced 2025-12-25 04:39:29 +01:00
8 lines
244 B
Bash
Executable File
8 lines
244 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -xe
|
|
BASEDIR=$(dirname "$0")
|
|
echo "$BASEDIR"
|
|
# run training
|
|
CUDA_VISIBLE_DEVICES="" python TTS/bin/compute_statistics.py --config_path $BASEDIR/../inputs/test_glow_tts.json --out_path $BASEDIR/../outputs/scale_stats.npy
|
|
|