Skip to content

Commit c5d9235

Browse files
authored
Typo fixes (labmlai#125)
1 parent 6a41c82 commit c5d9235

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

labml_nn/optimizers/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
3333
### Parameter groups
3434
PyTorch optimizers group parameters into sets called groups.
35-
Each group can have it's own hyper-parameters like learning rates.
35+
Each group can have its own hyper-parameters like learning rates.
3636
3737
In most common cases there will be only one group.
3838
This is when you initialize your optimizer with,
@@ -47,7 +47,7 @@
4747
Optimizer([{'params': model1.parameters()}, {'params': model2.parameters(), 'lr': 2}])
4848
```
4949
50-
Here we pass a list of groups. Each group is a dictionary with it's parameters under the key 'params'.
50+
Here we pass a list of groups. Each group is a dictionary with its parameters under the key 'params'.
5151
You specify any hyper-parameters as well. If the hyper parameters are not defined they will default
5252
to the optimizer level defaults.
5353

0 commit comments

Comments
 (0)