Skip to content

Commit

Permalink
original pvanet FC
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesShang committed Mar 6, 2017
1 parent 5bf2fc9 commit ba99717
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/networks/PVAnet_train.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,12 @@ def setup(self):
# .concat(axis=3, name='convf'))

(self.feed('convf_2', 'roi-data')
.roi_pool(5, 5, 1.0 / 16, name='roi_pooling')
.fc(1024, name='fc6', relu=False)
.bn_scale_combo(c_in = 1024, name='fc6', relu=True)
.roi_pool(6, 6, 1.0 / 16, name='roi_pooling')
.fc(4096, name='fc6', relu=False)
.bn_scale_combo(c_in = 4096, name='fc6', relu=True)
.dropout(0.5, name='fc6/drop6')
.fc(1024, name='fc7', relu=False)
.bn_scale_combo(c_in=1024, name='fc7', relu=True)
.fc(4096, name='fc7', relu=False)
.bn_scale_combo(c_in=4096, name='fc7', relu=True)
.dropout(0.5, name='fc7/drop7')
.fc(n_classes, relu=False, name='cls_score')
.softmax(name='cls_prob'))
Expand Down

0 comments on commit ba99717

Please sign in to comment.