From 5267349dca8f62cd581bf8083de517ddeee95ab5 Mon Sep 17 00:00:00 2001 From: Michael Abbott <32575566+mcabbott@users.noreply.github.com> Date: Wed, 4 Dec 2024 22:22:07 -0500 Subject: [PATCH] move custom-models / advanced.md back to tutorial section --- docs/make.jl | 2 +- docs/src/{guide/models => tutorials}/custom_layers.md | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename docs/src/{guide/models => tutorials}/custom_layers.md (100%) diff --git a/docs/make.jl b/docs/make.jl index 6bdfcbb638..4367639d8e 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -30,7 +30,6 @@ makedocs( "Quick Start" => "guide/models/quickstart.md", "Fitting a Line" => "guide/models/overview.md", "Gradients and Layers" => "guide/models/basics.md", - "Custom Layers" => "guide/models/custom_layers.md", "Training" => "guide/training/training.md", "Recurrence" => "guide/models/recurrence.md", "GPU Support" => "guide/gpu.md", @@ -63,6 +62,7 @@ makedocs( # Or perhaps those should just be trashed, model zoo versions are newer & more useful. "Linear Regression" => "tutorials/linear_regression.md", "Logistic Regression" => "tutorials/logistic_regression.md", + "Custom Layers" => "tutorials/custom_layers.md", "Model Zoo" => "tutorials/model_zoo.md", #= # "Multi-layer Perceptron" => "tutorials/mlp.md", diff --git a/docs/src/guide/models/custom_layers.md b/docs/src/tutorials/custom_layers.md similarity index 100% rename from docs/src/guide/models/custom_layers.md rename to docs/src/tutorials/custom_layers.md