File size: 450 Bytes
dc42e7e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash
set -eo pipefail

this_dir="$( cd "$( dirname "$0" )" && pwd )"
repo_dir="$(realpath "${this_dir}/../../../../")"

export PYTHONPATH="${repo_dir}/src/python:${PYTHONPATH}"
python3 -m piper_train \
    --dataset-dir "${this_dir}" \
    --accelerator 'gpu' \
    --devices 1 \
    --batch-size 20 \
    --validation-split 0 \
    --num-test-examples 0 \
    --max_epochs 10000 \
    --checkpoint-epochs 10 \
    --precision 32 "$@"