Rate this Page
โ˜… โ˜… โ˜… โ˜… โ˜…

quantize_qat#

class torch.ao.quantization.quantize_qat(model, run_fn, run_args, inplace=False)[source]#

Do quantization aware training and output a quantized model

Parameters:
  • model โ€“ input model

  • run_fn โ€“ a function for evaluating the prepared model, can be a function that simply runs the prepared model or a training loop

  • run_args โ€“ positional arguments for run_fn

Returns:

Quantized model.