From c3b5cd051c79c9c0f3b3410dc8911b14d4a8ced8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Fri, 27 Sep 2024 10:45:28 +0200 Subject: [PATCH] Remove leading empty line in example --- docs/src/guide/models/basics.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/src/guide/models/basics.md b/docs/src/guide/models/basics.md index 5aded62128..5d5fca413a 100644 --- a/docs/src/guide/models/basics.md +++ b/docs/src/guide/models/basics.md @@ -79,7 +79,6 @@ julia> Flux.withgradient(g, nt) Consider a simple linear regression, which tries to predict an output array `y` from an input `x`. ```julia - predict(W, b, x) = W*x .+ b function loss(W, b, x, y)