Flux.jl/src/utils.jl

7 lines
195 B
Julia
Raw Normal View History

2016-08-22 20:13:28 +00:00
export AArray, onehot, onecold
const AArray = AbstractArray
2016-04-01 21:11:42 +00:00
onehot(label, labels) = [i == label for i in labels]
onecold(pred, labels = 1:length(pred)) = labels[findfirst(pred, maximum(pred))]