Skip to content

Commit

Permalink
Merge pull request alexjc#45 from jwinder1/bugfix_sem2_1
Browse files Browse the repository at this point in the history
Use conv2_1 layer instead of conv3_1 for sem2_1 input
  • Loading branch information
alexjc committed Mar 13, 2016
2 parents a660f1f + 9c97bce commit deeff95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doodle.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def setup_model(self):
net['map_3'] = PoolLayer(net['map'], 4, mode='average_exc_pad')
net['map_4'] = PoolLayer(net['map'], 8, mode='average_exc_pad')

net['sem2_1'] = ConcatLayer([net['conv3_1'], net['map_2']])
net['sem2_1'] = ConcatLayer([net['conv2_1'], net['map_2']])
net['sem3_1'] = ConcatLayer([net['conv3_1'], net['map_3']])
net['sem4_1'] = ConcatLayer([net['conv4_1'], net['map_4']])

Expand Down

0 comments on commit deeff95

Please sign in to comment.