Flux.jl/src/data/Data.jl

15 lines
187 B
Julia
Raw Normal View History

2017-11-01 16:01:34 +00:00
module Data
export CMUDict, cmudict
deps(path...) = joinpath(@__DIR__, "..", "..", "deps", path...)
function __init__()
mkpath(deps())
end
include("cmudict.jl")
using .CMUDict
end