From b639b52b03ccb83d8c34e16e2353c739decc8b4d Mon Sep 17 00:00:00 2001 From: Sebastian Brodehl Date: Thu, 2 Apr 2020 12:49:37 +0200 Subject: [PATCH] Add word to distinguish math formulas. In some browsers (Arch Linux + Chromium) math formulas are shown very small, so it was very hard to see the comma between the two adjacent formulas and thus, reading them. For better reading comprehension I added the word `where` at the relevant position. --- beginner_source/blitz/autograd_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner_source/blitz/autograd_tutorial.py b/beginner_source/blitz/autograd_tutorial.py index 98e70a251d6..5410a2f0ee8 100644 --- a/beginner_source/blitz/autograd_tutorial.py +++ b/beginner_source/blitz/autograd_tutorial.py @@ -101,7 +101,7 @@ ############################################################### # You should have got a matrix of ``4.5``. Let’s call the ``out`` # *Tensor* “:math:`o`”. -# We have that :math:`o = \frac{1}{4}\sum_i z_i`, +# We have that :math:`o = \frac{1}{4}\sum_i z_i`, where # :math:`z_i = 3(x_i+2)^2` and :math:`z_i\bigr\rvert_{x_i=1} = 27`. # Therefore, # :math:`\frac{\partial o}{\partial x_i} = \frac{3}{2}(x_i+2)`, hence