Skip to content

Commit 62598ed

Browse files
committed
export and test
1 parent 32b36f5 commit 62598ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Optimisers.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include("destructure.jl")
1010
export destructure
1111

1212
include("rules.jl")
13-
export Descent, Adam, Momentum, Nesterov, RMSProp,
13+
export Descent, Adam, Momentum, Nesterov, Rprop, RMSProp,
1414
AdaGrad, AdaMax, AdaDelta, AMSGrad, NAdam, AdamW, RAdam, OAdam, AdaBelief,
1515
WeightDecay, ClipGrad, ClipNorm, OptimiserChain
1616

test/rules.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Random.seed!(1)
66

77
RULES = [
88
# All the rules at default settings:
9-
Descent(), Adam(), Momentum(), Nesterov(), RMSProp(),
9+
Descent(), Adam(), Momentum(), Nesterov(), Rprop(), RMSProp(),
1010
AdaGrad(), AdaMax(), AdaDelta(), AMSGrad(), NAdam(),
1111
AdamW(), RAdam(), OAdam(), AdaBelief(),
1212
# A few chained combinations:

0 commit comments

Comments
 (0)