Skip to content

Commit

Permalink
Merge pull request STVIR#44 from wwdguu/upc
Browse files Browse the repository at this point in the history
fix  UpChannelRPN
  • Loading branch information
StrangerZhang authored Jun 12, 2019
2 parents c138ff8 + 6b045f4 commit 52ef3aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysot/models/head/rpn.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ def __init__(self, anchor_num=5, feature_in=256):
feature_in * loc_output, kernel_size=3)

self.search_cls_conv = nn.Conv2d(feature_in,
feature_in * cls_output, kernel_size=3)
feature_in, kernel_size=3)
self.search_loc_conv = nn.Conv2d(feature_in,
feature_in * loc_output, kernel_size=3)
feature_in, kernel_size=3)

self.loc_adjust = nn.Conv2d(loc_output, loc_output, kernel_size=1)

Expand Down

0 comments on commit 52ef3aa

Please sign in to comment.