Burhan
Burhan
@MathijsNL I think that using the `args.split` might be a reasonable alternative. You're correct in assuming we're defaulting to the validation set since they tend to have less images. Since...
New tests now passing locally ``` =================================== slowest 30 durations =================================== 89.37s call tests/test_python.py::test_export_openvino[True-True-False-4-None-None] 89.29s call tests/test_python.py::test_export_openvino[True-True-True-4-None-None] 83.71s call tests/test_python.py::test_export_openvino[True-True-True-1-None-None] 77.52s call tests/test_python.py::test_export_openvino[True-True-False-1-None-None] 74.25s call tests/test_python.py::test_export_openvino[True-True-False-4-None-160] 73.51s call tests/test_python.py::test_export_openvino[True-True-False-1-None-160] 73.14s...
@glenn-jocher - [x] changes to `test_export_openvino` are now under `test_export_openvino_long` which was also decorated with `pytest.mark.slow` - [x] `test_export_openvino_long` batch size options are now `[1, 2]` and `imgsz` is `32`...
> Data is dependent on task, it's not an independent parameter we should vary Understood. I included all arguments as this was my first attempt using `pytest` argument parameterizations >...
Added test for `Results.summary()` PR ready for review
@glenn-jocher updated to `format` as requested. Additionally, changed to reuse the existing object attributes for normalization instead of recalculating. I also found that rounding wasn't holding after converting to `list`,...
Quick test, single python session with tests run in the order shown: ```py from ultralytics import YOLO model = YOLO("yolov8s.pt") out = model.export( format="engine", data="coco.yaml", # uses COCO val for...
I have definitely noticed that the first few runs with TensorRT INT8 can be _a lot_ slower than expected. After a short warmup it runs fast! 🚀
Hey @nazmi, thank you for trying it out! I ran a quick test and am seeing the same error. I'll have to try your suggestion to see if that helps,...
- [x] Added enforcement for `dynamic=True` when `int8=True` for exporting TensorRT. - [x] Added default `data="coco128.yaml"` argument when `int8=True` for exporting TensorRT. - [x] Started updating documentation - `docs/en/integrations/tensorrt.md` new...