Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
seminar-breakout
Commits
2e2bbcac
Commit
2e2bbcac
authored
Nov 29, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update docs
parent
130f60ac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
examples/FasterRCNN/README.md
examples/FasterRCNN/README.md
+2
-2
examples/FasterRCNN/config.py
examples/FasterRCNN/config.py
+2
-2
No files found.
examples/FasterRCNN/README.md
View file @
2e2bbcac
...
...
@@ -54,12 +54,12 @@ MaskRCNN results contain both bbox and segm mAP.
|Backbone |
`FASTRCNN_BATCH`
| resolution | mAP (bbox/segm) | Time |
| - | - | - | - | - |
| Res50 | 64 | (600, 1024) | 33.0 | 22h on 8 P100 |
| Res50 | 256 | (600, 1024) | 34.4 | 49h on 8
TitanX
|
| Res50 | 256 | (600, 1024) | 34.4 | 49h on 8
M40
|
| Res50 | 512 | (800, 1333) | 35.6 | 55h on 8 P100|
| Res50 | 512 | (800, 1333) | 36.9/32.3 | 59h on 8 P100|
| Res101 | 512 | (800, 1333) | 40.1/34.4 | 70h on 8 P100|
Note that these models are trained with a l
onger learning schedul
e than the paper,
Note that these models are trained with a l
arger ROI batch siz
e than the paper,
and get about 1mAP better performance.
## Notes
...
...
examples/FasterRCNN/config.py
View file @
2e2bbcac
...
...
@@ -35,7 +35,7 @@ NEGATIVE_ANCHOR_THRES = 0.3
BBOX_DECODE_CLIP
=
np
.
log
(
MAX_SIZE
/
16.0
)
# rpn training -------------------------
#
keep fg ratio in a batch in this range
#
fg ratio among selected RPN anchors
RPN_FG_RATIO
=
0.5
RPN_BATCH_PER_IM
=
256
RPN_MIN_SIZE
=
0
...
...
@@ -49,7 +49,7 @@ CROWD_OVERLAP_THRES = 0.7
FASTRCNN_BATCH_PER_IM
=
256
FASTRCNN_BBOX_REG_WEIGHTS
=
np
.
array
([
10
,
10
,
5
,
5
],
dtype
=
'float32'
)
FASTRCNN_FG_THRESH
=
0.5
#
keep fg ratio in a batch in this range
#
fg ratio in a ROI batch
FASTRCNN_FG_RATIO
=
0.25
# testing -----------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment