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
610ffe3f
Commit
610ffe3f
authored
May 14, 2020
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
freeze_variable: don't add to collection if not originally trainable
parent
9f4154e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
tensorpack/tfutils/varreplace.py
tensorpack/tfutils/varreplace.py
+3
-1
No files found.
tensorpack/tfutils/varreplace.py
View file @
610ffe3f
...
...
@@ -110,7 +110,9 @@ def freeze_variables(stop_gradient=True, skip_collection=False):
if
skip_collection
:
kwargs
[
'trainable'
]
=
False
v
=
getter
(
*
args
,
**
kwargs
)
if
skip_collection
:
# do not perform unnecessary changes if it's not originally trainable
# otherwise the variable may get added to MODEL_VARIABLES twice
if
trainable
and
skip_collection
:
tf
.
add_to_collection
(
tf
.
GraphKeys
.
MODEL_VARIABLES
,
v
)
if
trainable
and
stop_gradient
:
v
=
tf
.
stop_gradient
(
v
,
name
=
'freezed_'
+
name
)
...
...
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