Skip to content

Commit 88f1b4d

Browse files
committed
fix out-of-domain initial value
1 parent 923b342 commit 88f1b4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/train-kernel-parameters/script.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ loss(log.(ones(4)))
6868

6969
# ## Training the model
7070

71-
θ = log.([1.0, 0.0, 0.01, 0.001]) # Initial vector
71+
θ = log.([1.0, 0.1, 0.01, 0.001]) # Initial vector
7272
anim = Animation()
7373
opt = Optimise.ADAGrad(0.5)
7474
for i in 1:30

0 commit comments

Comments
 (0)