-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
different behavior of argmax
for Vector and Matrix leads to error
#91
Comments
Sorry it was my mistake, julia> factors
10-element Vector{TensorInference.Factor{Float64, 2}}:
TensorInference.Factor{Float64, 2}((1, 2), [0.1853742993051539 0.24266609993460198; 0.3139558820831363 0.258003718677108])
TensorInference.Factor{Float64, 2}((1, 3), [0.19490302071525448 0.2331373785245014; 0.37083643432205143 0.2011231664381927])
TensorInference.Factor{Float64, 2}((1, 4), [0.19159768973795085 0.236442709501805; 0.2699053176129627 0.30205428314728144])
TensorInference.Factor{Float64, 2}((1, 5), [0.16153413648476111 0.2665062627549947; 0.29757932897291595 0.2743802717873282])
TensorInference.Factor{Float64, 2}((2, 3), [0.31429995086808404 0.18503023052020612; 0.25143950416922195 0.24923031444248797])
TensorInference.Factor{Float64, 2}((2, 4), [0.23558618140615134 0.2637439999821388; 0.22591682594476228 0.27475299266694764])
TensorInference.Factor{Float64, 2}((2, 5), [0.2561260234949363 0.24320415789335384; 0.2029874419627408 0.29768237664896907])
TensorInference.Factor{Float64, 2}((3, 4), [0.2893861660460715 0.2763532889912345; 0.17211684130484214 0.2621437036578519])
TensorInference.Factor{Float64, 2}((3, 5), [0.27993586794877484 0.28580358708853115; 0.17917759750890222 0.2550829474537918])
TensorInference.Factor{Float64, 2}((4, 5), [0.24961217921386344 0.21189082813705018; 0.20950128624381362 0.32899570640527276])
julia> tn.tensors
15-element Vector{Array{Float64}}:
[1.0, 1.0]
[1.0, 1.0]
[1.0, 1.0]
[1.0, 1.0]
[1.0, 1.0]
[0.1853742993051539 0.24266609993460198; 0.3139558820831363 0.258003718677108]
[0.19490302071525448 0.2331373785245014; 0.37083643432205143 0.2011231664381927]
[0.19159768973795085 0.236442709501805; 0.2699053176129627 0.30205428314728144]
[0.16153413648476111 0.2665062627549947; 0.29757932897291595 0.2743802717873282]
[0.31429995086808404 0.18503023052020612; 0.25143950416922195 0.24923031444248797]
[0.23558618140615134 0.2637439999821388; 0.22591682594476228 0.27475299266694764]
[0.2561260234949363 0.24320415789335384; 0.2029874419627408 0.29768237664896907]
[0.2893861660460715 0.2763532889912345; 0.17211684130484214 0.2621437036578519]
[0.27993586794877484 0.28580358708853115; 0.17917759750890222 0.2550829474537918]
[0.24961217921386344 0.21189082813705018; 0.20950128624381362 0.32899570640527276] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the function
the function
argmax
is used and its behavior is different for Vector and Matrixso that
argmax(grads[k]) - 1
leads to error ifgrads[k]
is Matrix.The text was updated successfully, but these errors were encountered: