Skip to content

Commit

Permalink
Notice on Optimisers
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipVinc committed Jun 4, 2019
1 parent 94ec560 commit 30e3608
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Optimisers/Optimisers.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Code taken from FluxML/Optimisers.jl

module Optimisers

include("apply.jl")
Expand Down
2 changes: 2 additions & 0 deletions src/Optimisers/apply.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Code taken from FluxML/Optimisers.jl

const Param{T<:Number} = Union{AbstractArray{T},T}

_apply(opt, x, x̄, state) = apply(opt, x, x̄, state)
Expand Down
2 changes: 2 additions & 0 deletions src/Optimisers/rules.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Code taken from FluxML/Optimisers.jl

"""
Descent(η)
Expand Down

0 comments on commit 30e3608

Please sign in to comment.