Update.
authorFrancois Fleuret <francois@fleuret.org>
Thu, 10 Sep 2020 17:50:16 +0000 (19:50 +0200)
committerFrancois Fleuret <francois@fleuret.org>
Thu, 10 Sep 2020 17:50:16 +0000 (19:50 +0200)
flatparam.py

index e0627b2..57a8720 100755 (executable)
@@ -34,7 +34,8 @@ model = nn.Sequential(
     nn.ReLU(),
     nn.Sequential(
         nn.Linear(4, 4),
-        nn.ReLU(), nn.Linear(4, 2)
+        nn.ReLU(),
+        nn.Linear(4, 2)
     )
 )