TensorFlowASR
TensorFlowASR copied to clipboard
'SubwordFeaturizer' object has no attribute 'vocab_array'
testing Jasper using subwords
@kkiyani I haven't tried Subword for CTC models but the PR should work
PR?
@kkiyani It's the pull request, you can pull the newest commit on main to test 😄
Thank you so much.
One more question: The snapshot for training session doesn't get save in the case of contextnet
One more question: The snapshot for training session doesn't get save in the case of contextnet
@kkiyani Could you be more specific?
It says it's not functional and sequential model, it's a subclass model. If you want to save the model use save_weight() Or save_format='tf'
It says it's not functional and sequential model, it's a subclass model. If you want to save the model use save_weight() Or save_format='tf'
If you want to save the whole model in h5 format, then you'll have to define the get_config method of every layer and model classes, otherwise you'll have to go with the tf format.
I’ll close the issue here. Feel free to reopen if you have further questions.