We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f07ca2d commit bca2063Copy full SHA for bca2063
neural_compressor/common/base_config.py
@@ -532,7 +532,7 @@ def expand(self) -> List[BaseConfig]:
532
# Assign the options to the `TuningParam` instance
533
param_val = getattr(config, tuning_param.name)
534
if param_val is not None:
535
- if param not in self.non_tunable_params and tuning_param.is_tunable(param_val):
+ if tuning_param.name not in self.non_tunable_params and tuning_param.is_tunable(param_val):
536
tuning_param.options = param_val
537
tuning_param_list.append(tuning_param)
538
else:
0 commit comments