Instructions to use unity/inference-engine-yolo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- unity-sentis
How to use unity/inference-engine-yolo with unity-sentis:
string modelName = "[Your model name here].sentis"; Model model = ModelLoader.Load(Application.streamingAssetsPath + "/" + modelName); IWorker engine = WorkerFactory.CreateWorker(BackendType.GPUCompute, model); // Please see provided C# file for more details
- Notebooks
- Google Colab
- Kaggle
Problem with real time inference
#5
by abderrazak03 - opened
Hi, i am trying to run a custom yolov8 model with real time inference in unity. I am not having an error but also not having a result of inference. the c#script is attached. please anyone can help figure this out.
ps: i have three classes mobile phone, sunglasses, mouse. And the accuracy of the custom yolov8 model is over 0.85
script link in google drive : https://drive.google.com/file/d/1nYhe5yI-_2Y3emCLT1XG-tkX5oFFB4p7/view?usp=sharing
Thanks in advance.