Flux.jl/src/Flux.jl
2017-11-02 11:47:34 +00:00

35 lines
579 B
Julia
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

__precompile__()
module Flux
# Zero Flux Given
using Juno, Requires
using Lazy: @forward
export Chain, Dense, RNN, LSTM, Dropout,
SGD, ADAM, Momentum, Nesterov,
param, params, mapleaves
using NNlib
export σ, relu, leakyrelu, elu, swish, softmax
include("tracker/Tracker.jl")
using .Tracker
include("optimise/Optimise.jl")
using .Optimise
include("utils.jl")
include("onehot.jl")
include("treelike.jl")
include("layers/stateless.jl")
include("layers/basic.jl")
include("layers/recurrent.jl")
include("layers/normalisation.jl")
include("data/Data.jl")
end # module