update capacitors

This commit is contained in:
Mike J Innes 2017-03-20 19:57:00 +00:00
parent 7af64398d5
commit 498a66e7b6
3 changed files with 13 additions and 13 deletions

View File

@ -81,21 +81,16 @@ function process_type(ex)
end
end
macro net(ex)
isexpr(ex, :type) ? process_type(ex) :
isexpr(ex, :->, :function) ? error("@net functions not implemented") :
error("Unsupported model expression $ex")
end
function process_anon(ex)
args, body = process_func(ex)
@assert length(args) == 1
:(Flux.Capacitor($(DataFlow.constructor(mapconst(esc, makegraph(body, args))))))
:(Capacitor($(DataFlow.constructor(mapconst(esc, makegraph(body, args)[1])))))
end
macro ml(ex)
@capture(shortdef(ex), ((xs__,) -> body_ ) | (f_(xs__,) = body_)) ||
error("@ml requires a function definition")
ex = process_anon(:($(xs...,) -> $body))
f == nothing ? ex : :($(esc(f)) = $ex)
macro net(ex)
ex = shortdef(ex)
isexpr(ex, :type) ? process_type(ex) :
@capture(ex, (__,) -> _) ? process_anon(ex) :
@capture(ex, _(__) = _) ? error("@net functions not implemented") :
error("Unsupported model expression $ex")
end

View File

@ -111,6 +111,7 @@ struct Capacitor <: Model
graph::IVertex{Any}
end
(m::Capacitor)(xs...) = interpret(reifyparams(m.graph), xs...)
# TODO: batching
(m::Capacitor)(xs...) = interpmodel(m, xs...)
graph(cap::Capacitor) = cap.graph

View File

@ -23,6 +23,10 @@ d = Affine(10, 20)
@test d(xs) (xs'*d.W.x + d.b.x)[1,:]
d1 = @net x -> x * d.W + d.b
@test d(xs) == d1(xs)
let
@capture(syntax(d), _Frame(_Line(x_[1] * W_ + b_)))
@test isa(x, DataFlow.Input) && isa(W, Param) && isa(b, Param)