Viet-Hoang Tran
Results
2
issues of
Viet-Hoang Tran
Hi @peterjc123, I am adapting your quantized-aware training method to my YOLOv8 compression flow, I follow this pipeline to train my model: ```python def calibrate(model, context: DLContext, eval=True): model.to(device=context.device) if...
question
Hi, I trained YOLOv8 model and exported the model to ONNX format by the quantization_recipe below, I set weight_bits=8 and activation_bits=8 to ensure the full-flow inference of quantized model is...