Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
food-round2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
Joel Joseph
food-round2
Commits
86187a20
Unverified
Commit
86187a20
authored
5 years ago
by
Kai Chen
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #560 from hellock/hotfix
Bug fix for freezing BN parameters
parents
11ea6cfb
c899cdf1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mmdet/models/backbones/resnet.py
+2
-0
2 additions, 0 deletions
mmdet/models/backbones/resnet.py
with
2 additions
and
0 deletions
mmdet/models/backbones/resnet.py
+
2
−
0
View file @
86187a20
...
@@ -421,12 +421,14 @@ class ResNet(nn.Module):
...
@@ -421,12 +421,14 @@ class ResNet(nn.Module):
def
_freeze_stages
(
self
):
def
_freeze_stages
(
self
):
if
self
.
frozen_stages
>=
0
:
if
self
.
frozen_stages
>=
0
:
self
.
norm1
.
eval
()
for
m
in
[
self
.
conv1
,
self
.
norm1
]:
for
m
in
[
self
.
conv1
,
self
.
norm1
]:
for
param
in
m
.
parameters
():
for
param
in
m
.
parameters
():
param
.
requires_grad
=
False
param
.
requires_grad
=
False
for
i
in
range
(
1
,
self
.
frozen_stages
+
1
):
for
i
in
range
(
1
,
self
.
frozen_stages
+
1
):
m
=
getattr
(
self
,
'
layer{}
'
.
format
(
i
))
m
=
getattr
(
self
,
'
layer{}
'
.
format
(
i
))
m
.
eval
()
for
param
in
m
.
parameters
():
for
param
in
m
.
parameters
():
param
.
requires_grad
=
False
param
.
requires_grad
=
False
...
...
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