run_train.sh error, Fatal Python error: PyThreadState_Get: no current thread
Created by: iekhwang
cekhwang@cekhwangdeMacBook-Air tiny % sh run_train.sh
----------- Configuration Arguments -----------
augment_conf_path: conf/augmentation.config
batch_size: 16
dev_manifest: data/tiny/manifest.tiny
init_model_path: None
is_local: 1
learning_rate: 1e-05
max_duration: 27.0
mean_std_path: data/tiny/mean_std.npz
min_duration: 0.0
num_conv_layers: 2
num_iter_print: 100
num_passes: 20
num_proc_data: 1
num_rnn_layers: 3
output_model_dir: ./checkpoints/tiny
rnn_layer_size: 2048
share_rnn_weights: 1
shuffle_method: batch_shuffle_clipped
specgram_type: linear
test_off: 0
train_manifest: data/tiny/manifest.tiny
trainer_count: 0
use_gpu: 0
use_gru: 0
use_sortagrad: 1
vocab_path: data/tiny/vocab.txt
------------------------------------------------
Fatal Python error: PyThreadState_Get: no current thread
run_train.sh: line 33: 1295 Abort trap: 6
CUDA_VISIBLE_DEVICES=0
python -u train.py
--batch_size=16
--trainer_count=0
--num_passes=20
--num_proc_data=1
--num_conv_layers=2
--num_rnn_layers=3
--rnn_layer_size=2048
--num_iter_print=100
--learning_rate=1e-5
--max_duration=27.0
--min_duration=0.0
--test_off=False
--use_sortagrad=True
--use_gru=False
--use_gpu=False
--is_local=True
--share_rnn_weights=True
--train_manifest='data/tiny/manifest.tiny'
--dev_manifest='data/tiny/manifest.tiny'
--mean_std_path='data/tiny/mean_std.npz'
--vocab_path='data/tiny/vocab.txt'
--output_model_dir='./checkpoints/tiny'
--augment_conf_path='conf/augmentation.config'
--specgram_type='linear'
--shuffle_method='batch_shuffle_clipped'
Fail in training!
I am not using gpu, so I set all use_gpu=False, trainer_count=0 and CUDA_VISIBLE_DEVICES=0, others setting are default. But when I run sh run_train.sh, it shows this problem. Did anyone encounter this problem?