docstring correction
typo correction.
This commit is contained in:
committed by
Nicola Demo
parent
2f33237323
commit
706cf3b2c6
@@ -18,7 +18,7 @@ class Network(torch.nn.Module):
|
|||||||
>>> def __init__(self):
|
>>> def __init__(self):
|
||||||
>>> super().__init__()
|
>>> super().__init__()
|
||||||
>>> self.layers = nn.Sequential(
|
>>> self.layers = nn.Sequential(
|
||||||
>>> nn.Linear(3, 20),
|
>>> nn.Linear(2, 20),
|
||||||
>>> nn.Tanh(),
|
>>> nn.Tanh(),
|
||||||
>>> nn.Linear(20, 1)
|
>>> nn.Linear(20, 1)
|
||||||
>>> )
|
>>> )
|
||||||
|
|||||||
Reference in New Issue
Block a user