tensorflow_notes
tensorflow_notes copied to clipboard
there may have some erros in crf
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?