Skip to content
Snippets Groups Projects
Commit 06f2b065 authored by Yi-Syuan Chen's avatar Yi-Syuan Chen Committed by Guy Jacob
Browse files

Bugfix: Conflicting argument names when resuming SymmetricLinearQuantizer (#50)

parent 37c14328
No related branches found
No related tags found
No related merge requests found
......@@ -166,7 +166,11 @@ class SymmetricLinearQuantizer(Quantizer):
super(SymmetricLinearQuantizer, self).__init__(model, bits_activations=bits_activations,
bits_weights=bits_parameters,
train_with_fp_copy=False)
self.model.quantizer_metadata = {'type': type(self),
'params': {'bits_activations': bits_activations,
'bits_parameters': bits_parameters}}
def replace_fn(module, name, qbits_map):
return RangeLinearQuantParamLayerWrapper(module, qbits_map[name].acts, qbits_map[name].wts)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment