Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fast-rcnn
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
maxmzkr
fast-rcnn
Commits
1b12f840
Commit
1b12f840
authored
9 years ago
by
Ross Girshick
Browse files
Options
Downloads
Patches
Plain Diff
initialize with a larger height and width to prevent network initialization errors
parent
d3c52550
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/roi_data_layer/layer.py
+17
-6
17 additions, 6 deletions
lib/roi_data_layer/layer.py
with
17 additions
and
6 deletions
lib/roi_data_layer/layer.py
+
17
−
6
View file @
1b12f840
...
...
@@ -71,6 +71,7 @@ class RoIDataLayer(caffe.Layer):
self
.
_prefetch_process
=
None
self
.
_prefetch_queue
=
queues
.
SimpleQueue
()
# parse the layer parameter string, which must be valid YAML
layer_params
=
yaml
.
load
(
self
.
param_str_
)
self
.
_num_classes
=
layer_params
[
'
num_classes
'
]
...
...
@@ -82,15 +83,25 @@ class RoIDataLayer(caffe.Layer):
'
bbox_targets
'
:
3
,
'
bbox_loss_weights
'
:
4
}
# data
top
[
0
].
reshape
(
1
,
3
,
1
,
1
)
# rois
# data blob: holds a batch of N images, each with 3 channels
# The height and width (100 x 100) are dummy values
top
[
0
].
reshape
(
1
,
3
,
100
,
100
)
# rois blob: holds R regions of interest, each is a 5-tuple
# (n, x1, y1, x2, y2) specifying an image batch index n and a
# rectangle (x1, y1, x2, y2)
top
[
1
].
reshape
(
1
,
5
)
# labels
# labels blob: R categorical labels in [0, ..., K] for K foreground
# classes plus background
top
[
2
].
reshape
(
1
)
# bbox_targets
# bbox_targets blob: R bounding-box regression targets with 4 targets
# per class
top
[
3
].
reshape
(
1
,
self
.
_num_classes
*
4
)
# bbox_loss_weights
# bbox_loss_weights blob: At most 4 targets per roi are active; this
# binary vector sepcifies the subset of active targets
top
[
4
].
reshape
(
1
,
self
.
_num_classes
*
4
)
def
forward
(
self
,
bottom
,
top
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment