docstring correction

typo correction.
This commit is contained in:
Dario Coscia
2022-11-22 11:30:30 +01:00
committed by Nicola Demo
parent 2f33237323
commit 706cf3b2c6

View File

@@ -18,7 +18,7 @@ class Network(torch.nn.Module):
>>> def __init__(self):
>>> super().__init__()
>>> self.layers = nn.Sequential(
>>> nn.Linear(3, 20),
>>> nn.Linear(2, 20),
>>> nn.Tanh(),
>>> nn.Linear(20, 1)
>>> )