Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
SOLOv2-pytorch
Commits
d4ece92e
Unverified
Commit
d4ece92e
authored
Dec 19, 2018
by
Patrick Liu
Committed by
GitHub
Dec 19, 2018
Browse files
Update TECHNICAL_DETAILS.md
Fix typo
parent
cd35200f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
TECHNICAL_DETAILS.md
TECHNICAL_DETAILS.md
+2
-2
No files found.
TECHNICAL_DETAILS.md
View file @
d4ece92e
...
...
@@ -82,7 +82,7 @@ which defines the following abstract methods.
-
`extract_feat()`
: given an image batch of shape (n, c, h, w), extract the feature map(s).
-
`forward_train()`
: forward method of the training mode
-
`simple_test()`
: single scale testing without augmentation
-
`aug_test()`
: testing with
out
augmentation (multi-scale, flip, etc.)
-
`aug_test()`
: testing with augmentation (multi-scale, flip, etc.)
[
TwoStageDetector
](
https://github.com/hellock/mmdetection/blob/master/mmdet/models/detectors/two_stage.py
)
is a good example which shows how to do that.
...
...
@@ -96,4 +96,4 @@ Each process keeps an isolated model, data loader, and optimizer.
Model parameters are only synchronized once at the begining.
After a forward and backward pass, gradients will be allreduced among all GPUs,
and the optimizer will update model parameters.
Since the gradients are allreduced, the model parameter stays the same for all processes after the iteration.
\ No newline at end of file
Since the gradients are all reduced, the model parameter stays the same for all processes after the iteration.
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