| 0 | Process data. It includes: <br> (1) Download the dataset <br> (2) Caculate the CMVN of the train dataset <br> (3) Get the vocabulary file <br> (4) Get the manifest files of the train, development and test dataset |
| 0 | Process data. It includes: <br> (1) Download the dataset <br> (2) Caculate the CMVN of the train dataset <br> (3) Get the vocabulary file <br> (4) Get the manifest files of the train, development and test dataset |
| 1 | Train the model |
| 1 | Train the model |
| 2 | Get the final model by average the top-k model , set k = 1 means choose the best model |
| 2 | Get the final model by averaging the top-k models, set k = 1 means choose the best model |
| 3 | Test the final model performance |
| 3 | Test the final model performance |
| 4 | Get ctc alignment of test data using the final model |
| 4 | Get ctc alignment of test data using the final model |
| 5 | Infer the single audio file |
| 5 | Infer the single audio file |
| 51 | (Not supported at now) Transform the dynamic graph model to static graph model |
| 51 | (Not supported at now) Transform the dynamic graph model to static graph model |
| 101 | (Need further installation) Train language model and Build TLG |
| 101 | (Need further installation) Train language model and Build TLG |
You can choose to run a range of stages by set the ```stage``` and ```stop_stage ``` .
You can choose to run a range of stages by setting the ```stage``` and ```stop_stage ``` .
For example, if you want to execute the code in stage 2 and stage 3, you can run this script:
For example, if you want to execute the code in stage 2 and stage 3, you can run this script:
After training the model, we need to get the final model for test and infer. In every epoch, the model checkpoint is saved, so we can choose the best model from them based on the validation loss or we can sort them and average the top-k model parameters to get the final model. We can use the stage 2 to do this, and the code is shown below:
After training the model, we need to get the final model for testing and inference. In every epoch, the model checkpoint is saved, so we can choose the best model from them based on the validation loss or we can sort them and average the parameters of the top-k models to get the final model. We can use stage 2 to do this, and the code is shown below:
```bash
```bash
if [ ${stage} -le 2 ] && [ ${stop_stage} -ge 2 ]; then
if [ ${stage} -le 2 ] && [ ${stop_stage} -ge 2 ]; then
# avg n best model
# avg n best model
@ -155,13 +159,13 @@ After training the model, we need to get the final model for test and infer. In
fi
fi
```
```
The ```avg.sh``` is in the ```../../../utils/``` which is define in the ```path.sh```.
The ```avg.sh``` is in the ```../../../utils/``` which is define in the ```path.sh```.
If you want to get the final model, you can use the script below to execute the stage 0, stage 1, and stage 2:
If you want to get the final model, you can use the script below to execute stage 0, stage 1, and stage 2:
```bash
```bash
bash run.sh --stage 0 --stop_stage 2
bash run.sh --stage 0 --stop_stage 2
```
```
or you can run these scripts in command line (only use CPU).
or you can run these scripts in the command line (only use CPU).
```bash
```bash
source path.sh
source path.sh
source ${MAIN_ROOT}/utils/parse_options.sh
source ${MAIN_ROOT}/utils/parse_options.sh
@ -174,7 +178,7 @@ avg.sh best exp/conformer/checkpoints 20
## Stage 3: Model Testing
## Stage 3: Model Testing
To know the preformence of the model, test stage is needed. The code of test stage is shown below:
The test stage is to evaluate the model performance.. The code of test stage is shown below:
```bash
```bash
if [ ${stage} -le 3 ] && [ ${stop_stage} -ge 3 ]; then
if [ ${stage} -le 3 ] && [ ${stop_stage} -ge 3 ]; then
@ -183,13 +187,13 @@ To know the preformence of the model, test stage is needed. The code of test sta
fi
fi
```
```
If you want to train a model and test it, you can use the script below to execute the stage 0, stage 1, stage 2, and stage 3:
If you want to train a model and test it, you can use the script below to execute stage 0, stage 1, stage 2, and stage 3:
```bash
```bash
bash run.sh --stage 0 --stop_stage 3
bash run.sh --stage 0 --stop_stage 3
```
```
or you can run these scripts in command line (only use CPU).
or you can run these scripts in the command line (only use CPU).
```bash
```bash
source path.sh
source path.sh
@ -213,20 +217,20 @@ If you want to get the alignment between the audio and the text, you can use the
fi
fi
```
```
If you want to train the model, test it and do the alignment, you can use the script below to execute the stage 0, stage 1, stage 2, and stage 3 :
If you want to train the model, test it and do the alignment, you can use the script below to execute stage 0, stage 1, stage 2, and stage 3 :
```bash
```bash
bash run.sh --stage 0 --stop_stage 4
bash run.sh --stage 0 --stop_stage 4
```
```
or if you only need to train a model and do the alignment, you can use these scripts to escape the stage 3(test stage):
or if you only need to train a model and do the alignment, you can use these scripts to escape stage 3(test stage):
```bash
```bash
bash run.sh --stage 0 --stop_stage 2
bash run.sh --stage 0 --stop_stage 2
bash run.sh --stage 4 --stop_stage 4
bash run.sh --stage 4 --stop_stage 4
```
```
or you can also use these scripts in command line (only use CPU).
or you can also use these scripts in the command line (only use CPU).
You need to prepare an audio file, please confirme the sample rate of the audio is 16K. Assume the path of the audio file is ```data/test_audio.wav```, you can get the result by runing the script below.
You need to prepare an audio file, please confirm the sample rate of the audio is 16K. Assume the path of the audio file is ```data/test_audio.wav```, you can get the result by running the script below.
@ -284,7 +288,7 @@ It is not supported at now, so we set a large stage number for this stage.
## Stage: 101 Language model training and TLG building (Need further installation! )
## Stage: 101 Language model training and TLG building (Need further installation! )
You need to install the kaldi and srilm to use the stage 101, it is used for train language model and build TLG. To do further installation, you need to do these:
You need to install the kaldi and srilm to use stage 101, it is used for training language model and building TLG. To do further installation, you need to do these: