Data used for testing:
Create shell file with structure like this:
#!/bin/bash
CONF=<path to config file>
LOGDIR=<path to log dir>
# num timesteps before model == num timesteps after model
export MODEL_OUTPUTS_LENGTH=0
# if do not need to inform about training process please remove
# appropriate callback from configuration file
export CATALYST_TELEGRAM_TOKEN="<bot token>"
export CATALYST_TELEGRAM_CHAT_ID="<chat id>"
[ -e ${LOGDIR} ] && rm -rf ${LOGDIR} && echo " * Removed already existed logdir - '${LOGDIR}'"
catalyst-dl run --expdir sound --config ${CONF} --logdir ${LOGDIR} --verbose