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 9144c7d commit f16fee4Copy full SHA for f16fee4
tensorflow_asr/models/keras/ctc.py
@@ -56,7 +56,7 @@ def train_step(self, batch):
56
57
def test_step(self, batch):
58
x, y_true = batch
59
- logit = self(x, training=False)
+ logit = self(x["input"], training=False)
60
y_pred = {
61
"logit": logit,
62
"logit_length": get_reduced_length(x["input_length"], self.time_reduction_factor)
0 commit comments