From f0b0488ca20c8b9923a8298881b5b947142b0f2e Mon Sep 17 00:00:00 2001 From: Paul Haider Date: Tue, 30 Aug 2022 15:48:49 +0200 Subject: [PATCH] Add missing backslash in math formula --- beginner_source/examples_nn/polynomial_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner_source/examples_nn/polynomial_module.py b/beginner_source/examples_nn/polynomial_module.py index 0fa401bad04..77b44ae1a5d 100755 --- a/beginner_source/examples_nn/polynomial_module.py +++ b/beginner_source/examples_nn/polynomial_module.py @@ -4,7 +4,7 @@ -------------------------- A third order polynomial, trained to predict :math:`y=\sin(x)` from :math:`-\pi` -to :math:`pi` by minimizing squared Euclidean distance. +to :math:`\pi` by minimizing squared Euclidean distance. This implementation defines the model as a custom Module subclass. Whenever you want a model more complex than a simple sequence of existing Modules you will