Skip to content

Commit 196c68b

Browse files
committed
fix(model): add comments on embedding
1 parent e318348 commit 196c68b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow_asr/models/layers/embedding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def call(self, inputs):
5050

5151
def recognize_tflite(self, inputs):
5252
outputs = tf.cast(tf.expand_dims(inputs, axis=-1), dtype=tf.int32)
53-
return tf.gather_nd(self.embeddings, outputs)
53+
return tf.gather_nd(self.embeddings, outputs) # https://github.com/tensorflow/tensorflow/issues/42410
5454

5555
def get_config(self):
5656
conf = super(Embedding, self).get_config()

0 commit comments

Comments
 (0)