• Ashwin Bharambe's avatar
    Fix AffineChannel op param initialization · e59c30bb
    Ashwin Bharambe authored
    Summary:
    The `AffineChannel` op wrapper did not use the officially sanctioned
    version of parameter creation, namely using `ModelHelper.create_param()`
    Presumably this was because of the `share_with` option where you could share
    parameters.
    
    While doing this though, the parameters were never initialized! This probably
    doesn't matter for the algorithm (those params get overwritten pretty quickly)
    but it's a bug nevertheless. I decided to kill the `share_with` option since
    this isn't used anyway and resort to the standard way of creating weights and
    biases.
    
    Reviewed By: rbgirshick
    
    Differential Revision: D6826914
    
    fbshipit-source-id: 65628c59b085b9ab160006b003dd40dbefa2f7c1
    e59c30bb
Name
Last commit
Last update
..
FPN.py Loading commit data...
ResNet.py Loading commit data...
VGG16.py Loading commit data...
VGG_CNN_M_1024.py Loading commit data...
__init__.py Loading commit data...
detector.py Loading commit data...
fast_rcnn_heads.py Loading commit data...
generate_anchors.py Loading commit data...
keypoint_rcnn_heads.py Loading commit data...
mask_rcnn_heads.py Loading commit data...
model_builder.py Loading commit data...
name_compat.py Loading commit data...
optimizer.py Loading commit data...
retinanet_heads.py Loading commit data...
rfcn_heads.py Loading commit data...
rpn_heads.py Loading commit data...