This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
fix ssd quantization script error #13843
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
8df9e35
fix ssd quantization script error
ciyongch 84be0b9
update readme for ssd
ciyongch 65fb13f
move quantized SSD instructions from quantization/README.md to ssd/RE…
ciyongch 482fae6
update ssd readme and accuracy
ciyongch 9be6603
update readme for SSD-vGG16
ciyongch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,7 +119,6 @@ def save_params(fname, arg_params, aux_params, logger=None): | |
exclude_first_conv = args.exclude_first_conv | ||
excluded_sym_names = [] | ||
rgb_mean = '123,117,104' | ||
calib_layer = lambda name: name.endswith('_output') | ||
for i in range(1,19): | ||
excluded_sym_names += ['flatten'+str(i)] | ||
excluded_sym_names += ['relu4_3_cls_pred_conv', | ||
|
@@ -128,6 +127,8 @@ def save_params(fname, arg_params, aux_params, logger=None): | |
if exclude_first_conv: | ||
excluded_sym_names += ['conv1_1'] | ||
|
||
excluded_sym_names += ['multibox_loc_pred', 'concat0', 'concat1'] | ||
|
||
label_name = 'label' | ||
logger.info('label_name = %s' % label_name) | ||
|
||
|
@@ -156,9 +157,9 @@ def save_params(fname, arg_params, aux_params, logger=None): | |
ctx=ctx, excluded_sym_names=excluded_sym_names, | ||
calib_mode=calib_mode, calib_data=eval_iter, | ||
num_calib_examples=num_calib_batches * batch_size, | ||
calib_layer=calib_layer, quantized_dtype=args.quantized_dtype, | ||
calib_layer=None, quantized_dtype=args.quantized_dtype, | ||
label_names=(label_name,), | ||
calib_quantize_op = True, | ||
calib_quantize_op=True, | ||
logger=logger) | ||
sym_name = '%s-symbol.json' % ('./model/cqssd_vgg16_reduced_300') | ||
param_name = '%s-%04d.params' % ('./model/cqssd_vgg16_reduced_300', epoch) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not remove 0000 in here instead of adding 0000 in the readme? Any special meaning for it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's a convention of mxnet. We can save different parameter files at different epochs. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the explanation. Agree the change makes sense :) |
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add to line124
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done :)