remove capacitor cruft

This commit is contained in:
Mike J Innes 2016-08-13 00:57:49 +01:00
parent 3de0bc4dec
commit 52388af421
2 changed files with 0 additions and 10 deletions

View File

@ -12,8 +12,6 @@ abstract Activation <: Model
back!(m::Model, ) = error("Backprop not implemented for $(typeof(m))")
update!(m::Model, η) = m
include("capacitor.jl")
include("compiler/diff.jl")
include("compiler/code.jl")

View File

@ -1,8 +0,0 @@
type Capacitor{T}
Δs::Vector{T}
end
type Patch{T}
η::Float32
Δs::Capacitor{T}
end