Skip to content

Commit 3d33e3a

Browse files
authored
Fix Typos in Docs (#2619)
1 parent 9ebf14d commit 3d33e3a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/old_tutorials/2024-04-10-blitz.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ for (k, p) in trainables(model, path=true)
200200
end
201201
```
202202

203-
You don't have to use layers, but they can be convient for many simple kinds of models and fast iteration.
203+
You don't have to use layers, but they can be convenient for many simple kinds of models and fast iteration.
204204

205205
The next step is to update our weights and perform optimisation. As you might be familiar, *Gradient Descent* is a simple algorithm that takes the weights and steps using a learning rate and the gradients. `weights = weights - learning_rate * gradient`.
206206

docs/old_tutorials/2024-04-10-mlp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ end
101101
```
102102

103103

104-
In addition, we define the function (`accuracy`) to report the accuracy of our model during the training process. To compute the accuray, we need to decode the output of our model using the [onecold](https://fluxml.ai/Flux.jl/stable/data/onehot/#Flux.onecold) function.
104+
In addition, we define the function (`accuracy`) to report the accuracy of our model during the training process. To compute the accuracy, we need to decode the output of our model using the [onecold](https://fluxml.ai/Flux.jl/stable/data/onehot/#Flux.onecold) function.
105105

106106
```julia
107107
function accuracy(dataloader, model)

0 commit comments

Comments
 (0)