About early_stop when continue training

Hi,
please tell me how to close early_stop

python3 DeepSpeech/DeepSpeech.py \
        --train_files ./data_thchs30/train_mav.csv \
        --dev_files ./data_thchs30/dev_mav.csv \
        --test_files ./data_thchs30/test_mav.csv \
        --train_batch_size 3 \
        --dev_batch_size 3 \
        --test_batch_size 1 \
        --n_hidden 100 \
        --learning_rate 0.0001 \
        --beam_width 10 \
        --early_stop False \
        --alphabet_config_path ./config/alphabet.txt \
        --export_dir ./zh_models/ \
        --lm_binary_path ./config/lm.bin \
        --lm_trie_path ./config/trie \
        --checkpoint_dir ./zh_checkpoint/

This should work to disable early stop: --noearly_stop