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
Paul Bird commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,7 +4,7 @@ pipeline_tag: object-detection
|
|
| 4 |
---
|
| 5 |
# YOLOv8n validated for Unity Sentis
|
| 6 |
|
| 7 |
-
|
| 8 |
|
| 9 |
## How to Use
|
| 10 |
First get the package `com.unity.sentis` from the package manager.
|
|
|
|
| 4 |
---
|
| 5 |
# YOLOv8n validated for Unity Sentis
|
| 6 |
|
| 7 |
+
[YOLOv8n](https://docs.ultralytics.com/models/yolov8/) is a real-time multi-object recognition model confirmed to run in Unity 2023.
|
| 8 |
|
| 9 |
## How to Use
|
| 10 |
First get the package `com.unity.sentis` from the package manager.
|