From: Francois Fleuret Date: Thu, 22 Jun 2017 15:49:56 +0000 (+0200) Subject: Oups. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=pysvrt.git;a=commitdiff_plain;h=cdcaa8361d43a497d50c2f3703f9f5b4be9c2298 Oups. --- diff --git a/cnn-svrt.py b/cnn-svrt.py index 227d9b4..07c11b3 100755 --- a/cnn-svrt.py +++ b/cnn-svrt.py @@ -250,7 +250,7 @@ class DeepNet2(nn.Module): x = fn.max_pool2d(x, kernel_size=2) x = fn.relu(x) - x = x.view(-1, 1536) + x = x.view(-1, 2048) x = self.fc1(x) x = fn.relu(x)