Instructions to use Sky-Kim/com.sky.sentis.yolox with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- unity-sentis
How to use Sky-Kim/com.sky.sentis.yolox 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
Update package.json
Browse files- package.json +5 -1
package.json
CHANGED
|
@@ -1,5 +1,9 @@
|
|
| 1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
"dependencies": {
|
| 3 |
"com.unity.ai.inference": "2.6.1"
|
| 4 |
}
|
| 5 |
-
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"name": "com.sky.sentis.yolox",
|
| 3 |
+
"version": "0.1.0",
|
| 4 |
+
"displayName": "YOLOX Object Detection (Sentis)",
|
| 5 |
+
"unity": "6000.0",
|
| 6 |
"dependencies": {
|
| 7 |
"com.unity.ai.inference": "2.6.1"
|
| 8 |
}
|
| 9 |
+
}
|