You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
can we implement Yolov 5 and 6 custom on this too , and possibly allowing users to add their own custom trained data weights in the form if .pt file and .yaml files , id be also interested as the current deep vision processing I cant find any information of implementing custom datasets
thanks
The text was updated successfully, but these errors were encountered:
It is already implemented to use YoloV5 with custom weights and models. Just export the trained model & weights to an onnx file (ultralytics/yolov5#251) and load it:
YOLONetwork network =newYOLONetwork(
null,
newPath("path-to-your-onnx"),
640, 640,
true
);
network.loadLabels(newPath("path to a text file with labels"));
network.setTopK(100);
can we implement Yolov 5 and 6 custom on this too , and possibly allowing users to add their own custom trained data weights in the form if .pt file and .yaml files , id be also interested as the current deep vision processing I cant find any information of implementing custom datasets
thanks
The text was updated successfully, but these errors were encountered: