Flux.jl/src/data.jl

26 lines
798 B
Julia
Raw Normal View History

2016-12-16 15:54:55 +00:00
"""
onehot('b', ['a', 'b', 'c', 'd']) => [false, true, false, false]
onehot(Float32, 'c', ['a', 'b', 'c', 'd']) => [0., 0., 1., 0.]
Produce a one-hot-encoded version of an item, given a list of possible values
for the item.
"""
2016-10-29 22:36:39 +00:00
onehot(T::Type, label, labels) = T[i == label for i in labels]
onehot(label, labels) = onehot(Int, label, labels)
2016-12-16 15:54:55 +00:00
"""
onecold([0.0, 1.0, 0.0, ...],
['a', 'b', 'c', ...]) => 'b'
The inverse of `onehot`; takes an output prediction vector and a list of
possible values, and produces the appropriate value.
"""
2017-04-19 13:23:48 +00:00
onecold(y::AbstractVector, labels = 1:length(y)) =
labels[findfirst(y, maximum(y))]
onecold(y::AbstractMatrix, l...) =
squeeze(mapslices(y -> onecold(y, l...), y, 2), 2)
2016-10-29 22:36:39 +00:00
2017-06-06 17:03:14 +00:00
chunk(xs, n) = Base.Iterators.partition(xs, length(xs)÷n)