Cannot train pre-trained model even after using negative epochs

I am trying to train pretrained model on aws I downloaded check-point from this link https://github.com/mozilla/DeepSpeech/releases

> python3 DeepSpeech.py --n_hidden 2048 --checkpoint_dir deepspeech-0.4.1-checkpoint --epochs -3 --train_files clips/train.csv --dev_files clips/dev.csv --test_files clips/test.csv --learning_rate 0.00001 --export_dir model/

> Preprocessing ['clips/train.csv']
> Preprocessing done
> Preprocessing ['clips/dev.csv']
> Preprocessing done
> W Parameter --validation_step needs to be >0 for early stopping to work
> Preprocessing ['clips/test.csv']
> Preprocessing done
> Computing acoustic model predictions...
> 100% (25 of 25) |########################| Elapsed Time: 0:00:54 Time:  0:00:54
> Decoding predictions...
> 100% (25 of 25) |########################| Elapsed Time: 0:00:03 Time:  0:00:03
> Test - WER: 0.818182, CER: 5.840000, loss: 21.595797
> --------------------------------------------------------------------------------
> WER: 2.000000, CER: 4.000000, loss: 18.038776
>  - src: "knowlegde"
>  - res: "no ledge"
> --------------------------------------------------------------------------------
> WER: 2.000000, CER: 4.000000, loss: 20.510443
>  - src: "knowlegde"
>  - res: "no ledge"
> --------------------------------------------------------------------------------
> WER: 2.000000, CER: 6.000000, loss: 23.434345
>  - src: "article"
>  - res: "i do"
> --------------------------------------------------------------------------------
> WER: 2.000000, CER: 7.000000, loss: 39.423889
>  - src: "article"
>  - res: "i began"
> --------------------------------------------------------------------------------
> WER: 1.500000, CER: 8.000000, loss: 21.053690
>  - src: "articles run"
>  - res: "i tell en"
> --------------------------------------------------------------------------------
> WER: 1.500000, CER: 10.000000, loss: 40.492012
>  - src: "articles run"
>  - res: "i do concern"
> --------------------------------------------------------------------------------
> WER: 1.400000, CER: 20.000000, loss: 68.133987
>  - src: "aero are copyright files illegal"
>  - res: "ada or copperas piles in the good"
> --------------------------------------------------------------------------------
> WER: 1.000000, CER: 3.000000, loss: 2.642921
>  - src: "base"
>  - res: "these"
> --------------------------------------------------------------------------------
> WER: 1.000000, CER: 2.000000, loss: 2.887465
>  - src: "tab"
>  - res: "a"
> --------------------------------------------------------------------------------
> WER: 1.000000, CER: 2.000000, loss: 5.575221
>  - src: "hi"
>  - res: "it"
> --------------------------------------------------------------------------------
> I Exporting the model...
> I Models exported at model/

I dont know what is wrong. i have already trained on my laptop then I started from scratch in aws. but its not working
I found the similar question but it was because the guy that posted the question did not provide negative value as epochs but I have provided -3 as epochs.
what could be causing this erros, any ideas.

Can you elaborate ? What you show here is that it did export a model as expected. I’m not sure what you mean when you say “its not working”.

@lissyx but it should have started training

I started optimization
i am training on epoch something

its not starting epochs

We changed the behavior, are you running master or 0.4.1 ?

@lissyx I am using 0.4.1
thanks for fast reply

You’re mixing things up between master and v0.4.1. For example, in v0.4.1, there’s no --epochs flag.