We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, where can you specify the number of epochs for training? Thanks!
The text was updated successfully, but these errors were encountered:
Sorry, the epochs can not be specified directlly in this code, please calculate the corresponding number of iterations.
Sorry, something went wrong.
Thanks for the fast answer. Can you tell me how to compute the recognition accuracy / precision? I computed the detection accuracy like this:
d_correct_prediction = tf.equal(tf.argmax(f_geometry, 1), tf.argmax(input_geo_maps, 1)) detection_accuracy = tf.reduce_mean(tf.cast(d_correct_prediction, tf.float32))
but the calculation of the recognition accuracy seems to be more complicated, since input_transcription is a sparse tensor.
Hi, you can modify the data generator and make it yield another string of label. I recommend that you refer to the ICDAR official evaluation script.
No branches or pull requests
Hi, where can you specify the number of epochs for training? Thanks!
The text was updated successfully, but these errors were encountered: