From 7fe8308831c1643abc3d3237fb3f134c7f75b2e7 Mon Sep 17 00:00:00 2001 From: Mike J Innes Date: Tue, 6 Mar 2018 03:12:42 +0000 Subject: [PATCH] bson api --- docs/src/saving.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/saving.md b/docs/src/saving.md index f9bd8cc5..a810278d 100644 --- a/docs/src/saving.md +++ b/docs/src/saving.md @@ -106,5 +106,5 @@ could also store the current test set loss, so that it's easy to (for example) revert to an older copy of the model if it starts to overfit. ```julia -bson("model-$(now()).bson", model = model, loss = testloss()) +@save "model-$(now()).bson" model loss = testloss() ```