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
69e17d85
Commit
69e17d85
authored
Nov 22, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update docs
parent
d5306602
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
docs/tutorial/performance-tuning.md
docs/tutorial/performance-tuning.md
+2
-1
examples/FasterRCNN/README.md
examples/FasterRCNN/README.md
+6
-3
examples/FasterRCNN/config.py
examples/FasterRCNN/config.py
+1
-0
No files found.
docs/tutorial/performance-tuning.md
View file @
69e17d85
# Performance Tuning
Here's a list of things you can do when your training is slow:
Here's a list of things you can do when your training is slow.
And if you're going to open an issue about slow training, PLEASE do them and include your findings.
## Figure out the bottleneck
...
...
examples/FasterRCNN/README.md
View file @
69e17d85
...
...
@@ -44,10 +44,13 @@ To evaluate the performance (pretrained models can be downloaded in [model zoo](
## Results
Mean Average Precision @IoU=0.50:0.95:
Trained on trainval35k and evaluated on minival, got the following results:
mAP@IoU=0.50:0.95:
+
trainval35k/minival, FASTRCNN_BATCH=256: 34.2. Takes 49h on 8 TitanX.
+
trainval35k/minival, FASTRCNN_BATCH=64: 33.0. Takes 22h on 8 P100.
|Backbone |
`FASTRCNN_BATCH`
| mAP | Time |
| - | - | - | - |
| Res50 | 256 | 34.4 | 49h on 8 TitanX |
| Res50 | 64 | 33.0 | 22h on 8 P100 |
The hyperparameters are not carefully tuned. You can probably get better performance by e.g. training longer.
...
...
examples/FasterRCNN/config.py
View file @
69e17d85
...
...
@@ -17,6 +17,7 @@ RESNET_NUM_BLOCK = [3, 4, 6, 3] # resnet50
# preprocessing --------------------
SHORT_EDGE_SIZE
=
600
MAX_SIZE
=
1024
# alternative (better) setting: 800, 1333
# anchors -------------------------
ANCHOR_STRIDE
=
16
...
...
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