From 64217fc67a0d92f647d1323a83cd7855d92a3333 Mon Sep 17 00:00:00 2001 From: rafael orozco Date: Thu, 16 Nov 2023 13:36:47 -0500 Subject: [PATCH] changes to docs to avoid runner crash --- docs/src/examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/examples.md b/docs/src/examples.md index 4f19d07f..8966e89c 100644 --- a/docs/src/examples.md +++ b/docs/src/examples.md @@ -81,7 +81,7 @@ end #################################################################################################### # Testing -test_size = 500 +test_size = 250 X = sample_banana(test_size) Y_ = forward(X)[1] Y = randn(Float32, 1, 1, 2, test_size) @@ -157,7 +157,7 @@ for j=1:maxiter end # Testing -test_size = 1000 +test_size = 250 X = sample_banana(test_size) Y = reshape(A*reshape(X, :, test_size), nx, ny, n_in, test_size) Y += .2f0*randn(Float32, nx, ny, n_in, test_size)