tensorflow_notes icon indicating copy to clipboard operation
tensorflow_notes copied to clipboard

there may have some erros in crf

Open jabgle opened this issue 7 years ago • 0 comments

softmax = final_probabilities.squeeze() softmax = processed_probabilities.transpose((2, 0, 1))

i think it should be:

processed_probabilities= final_probabilities.squeeze() softmax = processed_probabilities.transpose((2, 0, 1)) am i right?

jabgle avatar Aug 27 '17 07:08 jabgle