You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if the classes in gt or pred contains 0 the function confusmat errors out with the following error.
gr=[0,1,0,1]
pr=[0,0,1,1]
confusmat(2, gr, pr)
ERROR: BoundsError: attempt to access 2×2 Array{Int64,2} at index [0,0]
in confusmat(::Int64, ::Array{Int64,1}, ::Array{Int64,1}) at /Users/abisen/.julia/v0.5/MLBase/src/perfeval.jl:17
where as if the classes does not contain 0 everything works
if the classes in
gt
orpred
contains0
the functionconfusmat
errors out with the following error.where as if the classes does not contain 0 everything works
The text was updated successfully, but these errors were encountered: