Custom arguments for Yolo-v8 model #986
-
The original Yolo-v8 model offer some arguments like filter classes or half,... which is unable to access through Anyone have any ideas? |
Beta Was this translation helpful? Give feedback.
Answered by
GuillaumeBruand
Jan 17, 2024
Replies: 1 comment 3 replies
-
@HT0710 Custom arguments from config file are used at inference time in yolov8. You will need a little customization for this until a PR is done, here is my implementation:
Notice that I also added the "conf" argument for the inner yolo model to use the provided threshold.
|
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
HT0710
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@HT0710 Custom arguments from config file are used at inference time in yolov8.
You will need a little customization for this until a PR is done, here is my implementation: