mirror of
https://github.com/dev6699/yolotriton.git
synced 2025-09-26 19:51:13 +08:00
1.2 KiB
1.2 KiB
Release 0.5.0
Major Features and Improvements
- Added support for YOLO models with FP16 inputs and outputs
- Compatibility extended to ultralytics YOLOv8 through YOLOv12
Release 0.4.0
Breaking Changes
Model.GetClass
has been removed in favor of newYoloTritonConfig.Classes
- Predefined YOLO model init function now receive
YoloTritonConfig
as argument.
Major Features and Improvements
- Add
-p <MinProbability>
,-o <MaxIOU>
flag for sample script.
Release 0.3.0
Breaking Changes
YoloTritonConfig.NumChannels
has been renamed toYoloTritonConfig.NumClasses
.YoloTritonConfig.BatchSize
has been removed.Model.PreProcess
interface has been changed toPreProcess(img image.Image, targetWidth uint, targetHeight uint) (*triton.InferTensorContents, error)
Major Features and Improvements
- Add support for YOLO-NAS INT8 inference.
- Add benchmark script.
- Model metadata request will only get once instead everytime before model inference request.
Release 0.2.0
Major Features and Improvements
- Add support for YOLO-NAS inference.
Release 0.1.1
Bug Fixes and Other Changes
- Fix go pkg publish issue.
Release 0.1.0
Initial release of yolotriton.
- Support for YOLOv8 inference.