Skip to content

Commit d60b220

Browse files
committed
add terminal output to part 2 (warm start), adapt part 03 - now functional
1 parent 51ec110 commit d60b220

File tree

4 files changed

+208
-100
lines changed

4 files changed

+208
-100
lines changed
20.1 KB
Loading

notebooks/02_models/neural_net.jlso

64 Bytes
Binary file not shown.

notebooks/02_models/notebook.pluto.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ increased:
382382
"""
383383

384384
# ╔═╡ 7547798a-24c9-4c5f-9961-a09632c33fb0
385-
begin
385+
with_terminal() do
386386
model.epochs = model.epochs + 4
387387
fit!(mach, rows=train, verbosity=2)
388388
end
@@ -394,7 +394,7 @@ without triggering a cold restart:
394394
"""
395395

396396
# ╔═╡ 04255053-ed5f-48d6-90fb-7f2721f6fcc7
397-
begin
397+
with_terminal() do
398398
model.epochs = model.epochs + 4
399399
model.optimiser.eta = 10 * model.optimiser.eta
400400
fit!(mach, rows=train, verbosity=2)
@@ -407,7 +407,7 @@ scratch:
407407
"""
408408

409409
# ╔═╡ 55531d1d-31e9-4e61-8890-979691212d9b
410-
begin
410+
with_terminal() do
411411
model.lambda = 0.001
412412
fit!(mach, rows=train, verbosity=2)
413413
end

0 commit comments

Comments
 (0)