Flux.jl/src/data/Data.jl
Christopher Murphy aff4c7898e add FashionMNIST
2018-10-01 15:26:26 -04:00

27 lines
346 B
Julia

module Data
import ..Flux
export CMUDict, cmudict
deps(path...) = joinpath(@__DIR__, "..", "..", "deps", path...)
function __init__()
mkpath(deps())
end
include("mnist.jl")
export MNIST
include("fashion-mnist.jl")
export FashionMNIST
include("cmudict.jl")
using .CMUDict
include("tree.jl")
include("sentiment.jl")
using .Sentiment
end