Flux save and load models, BSON file

The question is:

How to save and load more than one model into a single *.BSON file?
It’s even possible?
@MikeInnes

Cheers!

Yes, you can:

using BSON: @save, @load

@save "models.bson" model1 model2

@load "models.bson" model1 model2

See the BSON.jl README.md for a little more explanation.

yes. This the correct answer for my question. However, what I was trying to say is: how to update my models.bson file with a new model ? like in a for loop.