You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
model = keras_rcnn.models.RCNN((224, 224, 3), ["circle", "rectangle", "triangle"], backbone)
In the Backbone, the use of backbone raise an Error due to the parameter position. It should be: model = keras_rcnn.models.RCNN((224, 224, 3), ["circle", "rectangle", "triangle"], backbone=backbone)
The text was updated successfully, but these errors were encountered:
Genie-Liu
changed the title
Lack of
README, the parameter position is wrong
Sep 18, 2018
backbone = keras_rcnn.models.backbone.VGG16
model = keras_rcnn.models.RCNN((224, 224, 3), ["circle", "rectangle", "triangle"], backbone)
In the Backbone, the use of backbone raise an Error due to the parameter position. It should be:
model = keras_rcnn.models.RCNN((224, 224, 3), ["circle", "rectangle", "triangle"], backbone=backbone)
The text was updated successfully, but these errors were encountered: