We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e318348 commit 196c68bCopy full SHA for 196c68b
tensorflow_asr/models/layers/embedding.py
@@ -50,7 +50,7 @@ def call(self, inputs):
50
51
def recognize_tflite(self, inputs):
52
outputs = tf.cast(tf.expand_dims(inputs, axis=-1), dtype=tf.int32)
53
- return tf.gather_nd(self.embeddings, outputs)
+ return tf.gather_nd(self.embeddings, outputs) # https://github.com/tensorflow/tensorflow/issues/42410
54
55
def get_config(self):
56
conf = super(Embedding, self).get_config()
0 commit comments