diff --git a/docs-src/docs/schedule.md b/docs-src/docs/schedule.md index 703d84dd6abe1ca3d509c8e44dd1e55c6e0c5d73..12378193d577f64736c2b3055763ac2352f66437 100755 --- a/docs-src/docs/schedule.md +++ b/docs-src/docs/schedule.md @@ -384,14 +384,7 @@ When using these command line arguments, the quantizer can be invoked as follows ```python if args.quantize_eval: - if args.qe_config_file: - quantizer = distiller.config_component_from_file_by_class(model, args.qe_config_file, - 'PostTrainLinearQuantizer') - else: - quantizer = quantization.PostTrainLinearQuantizer(model, args.qe_bits_acts, args.qe_bits_wts, - args.qe_bits_accum, None, args.qe_mode, args.qe_clip_acts, - args.qe_no_clip_layers, args.qe_per_channel, - args.qe_stats_file) + quantizer = distiller.quantization.PostTrainLinearQuantizer.from_args(model, args) quantizer.prepare_model() # Execute evaluation on model as usual ```