Flux.jl/test/data.jl

12 lines
250 B
Julia
Raw Normal View History

2017-11-01 16:01:34 +00:00
using Flux.Data
2018-07-18 13:39:20 +00:00
using Test
2017-11-01 16:01:34 +00:00
@test cmudict()["CATASTROPHE"] == :[K,AH0,T,AE1,S,T,R,AH0,F,IY0].args
2018-01-10 12:48:30 +00:00
@test length(CMUDict.phones()) == 39
@test length(CMUDict.symbols()) == 84
2018-08-20 15:57:43 +00:00
@test MNIST.images()[1] isa Matrix
@test MNIST.labels() isa Vector{Int64}