Raidas Griskevicius

Results 3 comments of Raidas Griskevicius

The reason the results are random is because the dropout is still applied to the recognition part in eval.py. `recognize_part = Recognition_branch.Recognition(is_training=False)` should be changed to something like this: `recognize_part...

@Pay20Y, no post-processing, the array listed above is raw output from: `recog_decode = sess.run(dense_decode, feed_dict={input_images: [im_resized], input_transform_matrix: transform_matrixes, input_box_mask[0]: boxes_masks, input_box_widths: box_widths})`

> > @Pay20Y, no post-processing, the array listed above is raw output from: > > `recog_decode = sess.run(dense_decode, feed_dict={input_images: [im_resized], input_transform_matrix: transform_matrixes, input_box_mask[0]: boxes_masks, input_box_widths: box_widths})` > > Sorry, I...