ashray21
ashray21
I'm getting a segmentation fault when inferencing using yolov8. I have checked every input and function arguments and it's correct. I have no idea why it's popping up. Segmentation faults...
@VainF I have trained a custom YOLOv8 model. After training i have successfully pruned the model. ```python for name, param in model.model.named_parameters(): param.requires_grad = True replace_c2f_with_c2f_v2(model.model) model.model.eval() example_inputs = torch.randn(1,...
I have successfully generated calibrated dataset.cache file of my dataset using polygraphy. I want to load the generated calibrated cache file and create int8 engine using c++. Function I'm using...