Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ce86703

Browse files
authored
Fix typos (#1887)
* italics weren't formatted properly * grammatical error
1 parent 1d9dc25 commit ce86703

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

beginner_source/introyt/modelsyt_tutorial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def forward(self, x):
9595
# The most basic type of neural network layer is a *linear* or *fully
9696
# connected* layer. This is a layer where every input influences every
9797
# output of the layer to a degree specified by the layer’s weights. If a
98-
# model has *m* inputs and *n* outputs, the weights will be an *m*x*n*
98+
# model has *m* inputs and *n* outputs, the weights will be an *m* x *n*
9999
# matrix. For example:
100100
#
101101

@@ -137,7 +137,7 @@ def forward(self, x):
137137
# spatial correlation. They are very commonly used in computer vision,
138138
# where they detect close groupings of features which the compose into
139139
# higher-level features. They pop up in other contexts too - for example,
140-
# in NLP applications, where the a word’s immediate context (that is, the
140+
# in NLP applications, where a word’s immediate context (that is, the
141141
# other words nearby in the sequence) can affect the meaning of a
142142
# sentence.
143143
#

0 commit comments

Comments
 (0)