2017-11-01 16:01:34 +00:00
|
|
|
module Data
|
|
|
|
|
2017-11-06 12:01:47 +00:00
|
|
|
import ..Flux
|
|
|
|
|
2017-11-01 16:01:34 +00:00
|
|
|
export CMUDict, cmudict
|
|
|
|
|
|
|
|
deps(path...) = joinpath(@__DIR__, "..", "..", "deps", path...)
|
|
|
|
|
|
|
|
function __init__()
|
|
|
|
mkpath(deps())
|
|
|
|
end
|
|
|
|
|
2018-01-17 15:55:37 +00:00
|
|
|
include("mnist.jl")
|
2018-08-20 15:57:43 +00:00
|
|
|
export MNIST
|
|
|
|
|
2018-10-01 19:26:26 +00:00
|
|
|
include("fashion-mnist.jl")
|
|
|
|
export FashionMNIST
|
|
|
|
|
2017-11-01 16:01:34 +00:00
|
|
|
include("cmudict.jl")
|
|
|
|
using .CMUDict
|
|
|
|
|
2018-02-13 15:45:33 +00:00
|
|
|
include("tree.jl")
|
2017-11-02 11:41:28 +00:00
|
|
|
include("sentiment.jl")
|
|
|
|
using .Sentiment
|
|
|
|
|
2017-11-01 16:01:34 +00:00
|
|
|
end
|