-
Tried the first example: - training first model, then image classification. Get following result with probability > 1 or < 0:
Tried on master, v0.16.0 and v0.15.0. Same results. What did I do wrong? Any pointers? Thanks! Here is the complete log:
|
Beta Was this translation helpful? Give feedback.
Answered by
frankfliu
Apr 12, 2022
Replies: 1 comment 1 reply
-
I think we didn't apply softmax in the ImageClassificationTranslator. The default value of applySoftmax was true in earlier version, and now it's false. We have to explicitly set to true in the example. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
brucedlg
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think we didn't apply softmax in the ImageClassificationTranslator.
The default value of applySoftmax was true in earlier version, and now it's false.
We have to explicitly set to true in the example.