Huy Nguyen
Results
1
issues of
Huy Nguyen
Hello everyone! After training, I save conformer model to SavedModel format by code below: ```python config = Config(config_path) speech_featurizer = TFSpeechFeaturizer(config.speech_config) text_featurizer = SubwordFeaturizer(config.decoder_config) conformer = Conformer(**config.model_config, vocabulary_size=text_featurizer.num_classes) conformer.make(speech_featurizer.shape) conformer.load_weights(model_path,...