Skip to content

Commit

Permalink
Update example/MNIST_cnn.jl
Browse files Browse the repository at this point in the history
Co-authored-by: tmigot <[email protected]>
  • Loading branch information
farhadrclass and tmigot authored Nov 8, 2023
1 parent 71b1a0e commit 68ac783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/MNIST_cnn.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ model =
Flux.flatten,
Dense(256 => 120, relu),
Dense(120 => 84, relu),
Dense(84 => 10),#TODO add softmax
Dense(84 => 10),
) |> device

nlp = FluxNLPModel(model, train_loader, test_loader; loss_f = loss)
Expand Down

0 comments on commit 68ac783

Please sign in to comment.