Flux.jl/test/batching.jl

12 lines
158 B
Julia
Raw Normal View History

2017-02-23 22:40:07 +00:00
@testset "Batching" begin
2017-02-20 19:34:57 +00:00
bs = Batch([[1,2,3],[4,5,6]])
@test typeof(bs) <: Batch
@test bs == [[1,2,3],[4,5,6]]
@test rawbatch(bs) == [1 2 3; 4 5 6]
2017-02-23 22:40:07 +00:00
end