Skip to content

Commit

Permalink
Uncommented line shuffling validation data
Browse files Browse the repository at this point in the history
  • Loading branch information
maetshju committed Mar 28, 2018
1 parent c09a04e commit e88603d
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 @@ -171,7 +171,7 @@ epochs = 20
for i in 1:epochs
println("Epoch " * string(i) * "/" * string(epochs))
data = data[shuffle(1:length(data))]
# val_data = val_data[shuffle(1:length(val_data))]
val_data = val_data[shuffle(1:length(val_data))]

Flux.train!(loss, data, opt)

Expand Down

0 comments on commit e88603d

Please sign in to comment.