From 6b062549293f16a3e947c03fc6aadadc818b5cf7 Mon Sep 17 00:00:00 2001 From: michaelzhaobin <31604328+michaelzhaobin@users.noreply.github.com> Date: Sun, 4 Mar 2018 15:25:10 +0800 Subject: [PATCH] Update VGGnet_train.py --- lib/networks/VGGnet_train.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/networks/VGGnet_train.py b/lib/networks/VGGnet_train.py index e137f0bb..1972957d 100644 --- a/lib/networks/VGGnet_train.py +++ b/lib/networks/VGGnet_train.py @@ -33,6 +33,7 @@ def __init__(self, trainable=True): def setup(self): (self.feed('data') .conv(3, 3, 64, 1, 1, name='conv1_1', trainable=False) + # .conv(3, 3, 64, 1, 1, name='conv1_2', trainable=False) .max_pool(2, 2, 2, 2, padding='VALID', name='pool1') .conv(3, 3, 128, 1, 1, name='conv2_1', trainable=False)