Skip to content

Commit 2aa8d62

Browse files
authored
Update README.md
1 parent 086699f commit 2aa8d62

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,6 @@ output = net([input1,input2,input3],0)
185185
```
186186
Note: We could have used torch.stack() instead of torch.cat(). See the [docs](http://pytorch.org/docs/tensors.html).
187187

188-
The advantages that come with autograd when manipulating networks in these ways
189-
become much more apparent with more complex architectures, so let's combine some of the
190-
operations we defined above.
191-
192188
## Math Tables
193189

194190
The math table implementations are pretty intuitive, so the Torch implementations are omitted in this repo,
@@ -239,6 +235,10 @@ And we get:
239235
)
240236
```
241237

238+
The advantages that come with autograd when manipulating networks in these ways
239+
become much more apparent with more complex architectures, so let's combine some of the
240+
operations we defined above.
241+
242242
## Intuitively Build Complex Architectures
243243

244244
Now we will visit a more complex example that combines several of the above operations.

0 commit comments

Comments
 (0)