From 0389560a927a5c692e3747e7f4beac27e7069bb6 Mon Sep 17 00:00:00 2001 From: Josh Meyer Date: Wed, 21 Jul 2021 07:16:58 -0400 Subject: [PATCH] Remove alphabet.txt from CI tests with bytes_output_mode --- bin/run-ci-ldc93s1_checkpoint_bytes.sh | 2 +- bin/run-ci-ldc93s1_new_bytes.sh | 2 +- bin/run-ci-ldc93s1_new_bytes_tflite.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/run-ci-ldc93s1_checkpoint_bytes.sh b/bin/run-ci-ldc93s1_checkpoint_bytes.sh index 96cf5998..6c068eee 100755 --- a/bin/run-ci-ldc93s1_checkpoint_bytes.sh +++ b/bin/run-ci-ldc93s1_checkpoint_bytes.sh @@ -14,7 +14,7 @@ fi; # and when trying to run on multiple devices (like GPUs), this will break export CUDA_VISIBLE_DEVICES=0 -python -u train.py --alphabet_config_path "data/alphabet.txt" --show_progressbar false --early_stop false \ +python -u train.py --show_progressbar false --early_stop false \ --train_files ${ldc93s1_csv} --train_batch_size 1 \ --dev_files ${ldc93s1_csv} --dev_batch_size 1 \ --test_files ${ldc93s1_csv} --test_batch_size 1 \ diff --git a/bin/run-ci-ldc93s1_new_bytes.sh b/bin/run-ci-ldc93s1_new_bytes.sh index 17c65af4..5dec1fed 100755 --- a/bin/run-ci-ldc93s1_new_bytes.sh +++ b/bin/run-ci-ldc93s1_new_bytes.sh @@ -17,7 +17,7 @@ fi; # and when trying to run on multiple devices (like GPUs), this will break export CUDA_VISIBLE_DEVICES=0 -python -u train.py --alphabet_config_path "data/alphabet.txt" --show_progressbar false --early_stop false \ +python -u train.py --show_progressbar false --early_stop false \ --train_files ${ldc93s1_csv} --train_batch_size 1 \ --feature_cache '/tmp/ldc93s1_cache' \ --dev_files ${ldc93s1_csv} --dev_batch_size 1 \ diff --git a/bin/run-ci-ldc93s1_new_bytes_tflite.sh b/bin/run-ci-ldc93s1_new_bytes_tflite.sh index eb74eac1..22558942 100755 --- a/bin/run-ci-ldc93s1_new_bytes_tflite.sh +++ b/bin/run-ci-ldc93s1_new_bytes_tflite.sh @@ -16,7 +16,7 @@ fi; # and when trying to run on multiple devices (like GPUs), this will break export CUDA_VISIBLE_DEVICES=0 -python -u train.py --alphabet_config_path "data/alphabet.txt" --show_progressbar false \ +python -u train.py --show_progressbar false \ --n_hidden 100 \ --checkpoint_dir '/tmp/ckpt_bytes' \ --export_dir '/tmp/train_bytes_tflite' \