2017-06-05 18:12:40 +00:00
|
|
|
using Flux, DataFlow, MacroTools, Base.Test
|
2017-08-19 19:04:21 +00:00
|
|
|
using Flux: Param, param, squeeze, unsqueeze, stack, update!, flatten
|
|
|
|
using Flux.Compiler: @net
|
2017-02-21 15:46:38 +00:00
|
|
|
using DataFlow: Line, Frame
|
2016-12-15 23:11:35 +00:00
|
|
|
|
2017-07-04 17:32:21 +00:00
|
|
|
@testset "Flux" begin
|
|
|
|
|
2017-05-04 12:52:31 +00:00
|
|
|
include("backend/common.jl")
|
|
|
|
|
2016-12-15 21:05:53 +00:00
|
|
|
include("basic.jl")
|
2017-03-29 17:30:28 +00:00
|
|
|
include("recurrent.jl")
|
2017-07-26 01:57:20 +00:00
|
|
|
include("throttle.jl")
|
2017-06-26 09:21:17 +00:00
|
|
|
|
2017-07-04 17:32:21 +00:00
|
|
|
end
|