Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
distiller
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
llvm
distiller
Commits
54e72012
Commit
54e72012
authored
5 years ago
by
Neta Zmora
Browse files
Options
Downloads
Patches
Plain Diff
AMC: small fixes
parent
2f520c39
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/auto_compression/amc/amc.py
+1
-1
1 addition, 1 deletion
examples/auto_compression/amc/amc.py
examples/auto_compression/amc/amc_args.py
+2
-2
2 additions, 2 deletions
examples/auto_compression/amc/amc_args.py
with
3 additions
and
3 deletions
examples/auto_compression/amc/amc.py
+
1
−
1
View file @
54e72012
...
...
@@ -56,7 +56,7 @@ class AutoCompressionSampleApp(classifier.ClassifierCompressor):
def
train_auto_compressor
(
self
):
using_fm_reconstruction
=
self
.
args
.
amc_prune_method
==
'
fm-reconstruction
'
fixed_subset
,
sequential
=
(
using_fm_reconstruction
,
using_fm_reconstruction
)
msglogger
.
info
(
"
A
D
C: fixed_subset=%s
\t
sequential=%s
"
%
(
fixed_subset
,
sequential
))
msglogger
.
info
(
"
A
M
C: fixed_subset=%s
\t
sequential=%s
"
%
(
fixed_subset
,
sequential
))
train_loader
,
val_loader
,
test_loader
=
classifier
.
load_data
(
self
.
args
,
fixed_subset
,
sequential
)
self
.
args
.
display_confusion
=
False
...
...
This diff is collapsed.
Click to expand it.
examples/auto_compression/amc/amc_args.py
+
2
−
2
View file @
54e72012
def
add_automl_args
(
argparser
,
arch_choices
=
None
,
enable_pretrained
=
False
):
def
add_automl_args
(
argparser
):
"""
Helper function to make it easier to add command-line arguments for AMC to any application.
...
...
@@ -55,4 +55,4 @@ def add_automl_args(argparser, arch_choices=None, enable_pretrained=False):
help
=
"
Number of filters/channels to group
"
)
group
.
add_argument
(
'
--amc-ranking-noise
'
,
type
=
float
,
default
=
0.
,
help
=
'
Strcuture ranking noise
'
)
return
argparser
\ No newline at end of file
return
argparser
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