Hello,
I am finetuning the QuartznetBase-en5x5 model on my own dataset, but I am getting trainingWER 100% and training loss is flatted after few steps although val_WER and val_loss is decreasing gradually
Dataset Details
train Dataset consists of 169630 files totaling 410.18 hours
Val_ Dataset consists of 25036 files totaling 84.82 hours
Audio data is of length between( 5-60secs) and made sure that there are no samples without text output
I'm using the file speech_to_text.py just made a little changes and added the following line before 'trainer.fit'
asr_model.restore_from("QuartzNet15x5Base-En.nemo")
other details are:
trainer.max_epochs=200
model.train_ds.batch_size=16
model.validation_ds.batch_size=16
model.optim.lr=0.00015
+model.validation_ds.num_workers=2
+model.train_ds.num_workers=10
+trainer.precision=16
nemo version = 1.0.0rc1
. Could you please troubleshoot where could the problem be?
Hello,
I am finetuning the QuartznetBase-en5x5 model on my own dataset, but I am getting trainingWER 100% and training loss is flatted after few steps although val_WER and val_loss is decreasing gradually
Dataset Details
train Dataset consists of 169630 files totaling 410.18 hours
Val_ Dataset consists of 25036 files totaling 84.82 hours
Audio data is of length between( 5-60secs) and made sure that there are no samples without text output
I'm using the file speech_to_text.py just made a little changes and added the following line before 'trainer.fit'
asr_model.restore_from("QuartzNet15x5Base-En.nemo")other details are:
trainer.max_epochs=200
model.train_ds.batch_size=16
model.validation_ds.batch_size=16
model.optim.lr=0.00015
+model.validation_ds.num_workers=2
+model.train_ds.num_workers=10
+trainer.precision=16
nemo version = 1.0.0rc1
. Could you please troubleshoot where could the problem be?