Skip to content

Commit

Permalink
Reformatted epoch printout
Browse files Browse the repository at this point in the history
Reformatted the printout for the epoch to include the total
number of epochs to be run in addition to the current one
being run.
  • Loading branch information
maetshju committed Mar 28, 2018
1 parent 67791c1 commit c09a04e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 01-blstm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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))]

Expand Down

0 comments on commit c09a04e

Please sign in to comment.