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
Convert y_pred to a probability vector
y_pred
y_pred1 = [[90,433,600],[345,100,2],[100,90,10],[432,102,80],[156,402,2],[73,20,532]] y_pred2 = [[0.08, 0.39, 0.53], [0.77, 0.22, 0.01], [0.5, 0.45, 0.05], [0.7, 0.17, 0.13], [0.28, 0.72, 0.0], [0.12, 0.03, 0.85]]
y_pred1 = [[90,433,600],[345,100,2],[100,90,10],[432,102,80],[156,402,2],[73,20,532]]
y_pred2 = [[0.08, 0.39, 0.53], [0.77, 0.22, 0.01], [0.5, 0.45, 0.05], [0.7, 0.17, 0.13], [0.28, 0.72, 0.0], [0.12, 0.03, 0.85]]
The text was updated successfully, but these errors were encountered:
update : Example3 updated. (#405)
0f7d6b7
doc : Example3 updated #405
9623d0b
doc : CHANGELOG updated #405
9f2164e
doc : minor edit in Example3 #405
1de0428
sepandhaghighi
Successfully merging a pull request may close this issue.
Description
Convert
y_pred
to a probability vectory_pred1 = [[90,433,600],[345,100,2],[100,90,10],[432,102,80],[156,402,2],[73,20,532]]
y_pred2 = [[0.08, 0.39, 0.53], [0.77, 0.22, 0.01], [0.5, 0.45, 0.05], [0.7, 0.17, 0.13], [0.28, 0.72, 0.0], [0.12, 0.03, 0.85]]
The text was updated successfully, but these errors were encountered: