From a964debd8acc0b0f8a4f0d8efc4e8b4a40434eb3 Mon Sep 17 00:00:00 2001 From: Dhairya Gandhi Date: Tue, 28 Aug 2018 15:02:47 +0530 Subject: [PATCH] fixed example in docs --- src/optimise/train.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/optimise/train.jl b/src/optimise/train.jl index 61eb1258..ebcf9c16 100644 --- a/src/optimise/train.jl +++ b/src/optimise/train.jl @@ -25,7 +25,7 @@ This would trigger the train loop to stop and exit. # Example callback: cb = function () - accuracy() > 0.9 && stop() + accuracy() > 0.9 && Flux.stop() end ``` """