fixes to saving

This commit is contained in:
Dhairya Gandhi 2019-09-11 14:25:46 +05:30
parent 6fd66fd3b5
commit b08c949b99
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ julia> using Flux
julia> model = Chain(Dense(10,5,relu),Dense(5,2),softmax)
Chain(Dense(10, 5, NNlib.relu), Dense(5, 2), NNlib.softmax)
julia> weights = Tracker.data.(params(model));
julia> weights = params(model);
julia> using BSON: @save