From 81b130ebd9fcabb6c1afe5a1f7b296d3c6dabf96 Mon Sep 17 00:00:00 2001 From: Tristan F Date: Sat, 2 Mar 2024 13:50:50 -0500 Subject: [PATCH] fix: small typo in advanced-train-loop.rs --- dfdx/examples/advanced-train-loop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dfdx/examples/advanced-train-loop.rs b/dfdx/examples/advanced-train-loop.rs index 5c5ed0ed..784ee6b7 100644 --- a/dfdx/examples/advanced-train-loop.rs +++ b/dfdx/examples/advanced-train-loop.rs @@ -7,7 +7,7 @@ fn classification_train< // The input to our network, since we are training, we need it to implement Trace // so we can put gradients into it. Inp: Trace, - // The type of our label, we specify it here so we guaruntee that the dataset + // The type of our label, we specify it here so we guarantee that the dataset // and loss function both work on this type Lbl, // Our model just needs to implement these two things! ModuleMut for forward