From c09a04ebd81ee178d2847cb7bd36039254d55325 Mon Sep 17 00:00:00 2001 From: Matthew Kelley Date: Tue, 27 Mar 2018 20:45:20 -0600 Subject: [PATCH] Reformatted epoch printout Reformatted the printout for the epoch to include the total number of epochs to be run in addition to the current one being run. --- 01-blstm.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-blstm.jl b/01-blstm.jl index df65f44..6c502dd 100644 --- a/01-blstm.jl +++ b/01-blstm.jl @@ -169,7 +169,7 @@ opt = Momentum(params((forward, backward, output)), 10.0^-5; ρ=0.9) epochs = 20 for i in 1:epochs - println("Epoch " * string(i) * "\t") + println("Epoch " * string(i) * "/" * string(epochs)) data = data[shuffle(1:length(data))] # val_data = val_data[shuffle(1:length(val_data))]