From 1a9f7e15a93aa623944a44f52a49ed168efc1f34 Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Mon, 16 Sep 2024 20:29:16 -0400 Subject: [PATCH] fix: accidental deletion --- docs/src/examples/hamiltonian_nn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/examples/hamiltonian_nn.md b/docs/src/examples/hamiltonian_nn.md index dfe0ad211..1639206b8 100644 --- a/docs/src/examples/hamiltonian_nn.md +++ b/docs/src/examples/hamiltonian_nn.md @@ -95,7 +95,7 @@ dataloader = ncycle( NEPOCHS) ``` -### Training the +### Training the HamiltonianNN We parameterize the with a small MultiLayered Perceptron. HNNs are trained by optimizing the gradients of the Neural Network. Zygote currently doesn't support nesting itself, so we will be using ForwardDiff in the training loop to compute the gradients of the HNN Layer for Optimization.