Skip to content

Commit 2987725

Browse files
committed
fix graph schematic
1 parent fd771e9 commit 2987725

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docs/src/lecture_08/lab.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,7 @@ a = x*y # da/dx = y; da/dy = x
7272
b = sin(x) # db/dx = cos(x)
7373
z = a + b # dz/da = 1; dz/db = 1
7474
```
75-
```@raw html
76-
<p><center><img src="graph.png" alt="graph"></center></p>
77-
```
75+
![graph](graph.png)
7876

7977
In the graph you can see that the variable `x` can directly affect `b` and `a`.
8078
Hence, `x` has two children `a` and `b`. During the forward pass we build the

0 commit comments

Comments
 (0)