projects
/
pysvrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cdcaa83
)
Re-oups.
author
Francois Fleuret
<francois@fleuret.org>
Thu, 22 Jun 2017 15:51:19 +0000
(17:51 +0200)
committer
Francois Fleuret
<francois@fleuret.org>
Thu, 22 Jun 2017 15:51:19 +0000
(17:51 +0200)
cnn-svrt.py
patch
|
blob
|
history
diff --git
a/cnn-svrt.py
b/cnn-svrt.py
index
07c11b3
..
1511e82
100755
(executable)
--- a/
cnn-svrt.py
+++ b/
cnn-svrt.py
@@
-229,7
+229,7
@@
class DeepNet2(nn.Module):
self.conv5 = nn.Conv2d(128, 128, kernel_size=3, padding=1)
self.fc1 = nn.Linear(2048, 512)
self.fc2 = nn.Linear(512, 512)
- self.fc3 = nn.Linear(
256
, 2)
+ self.fc3 = nn.Linear(
512
, 2)
def forward(self, x):
x = self.conv1(x)