Anthony DiPilato
Results
1
comments of
Anthony DiPilato
I am outputting the softmax in CTCDecoder, seems to work at giving a basic confidence level. ``` def CTCDecoder(): def decoder(y_pred): input_shape = tf.keras.backend.shape(y_pred) input_length = tf.ones(shape=input_shape[0]) * tf.keras.backend.cast( input_shape[1],...