Paul Bird
commited on
Commit
·
a4a27b0
1
Parent(s):
a92657c
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
## MobileNet V2 in Unity Sentis Format
|
| 6 |
+
|
| 7 |
+
This is a small image classification model that works in Unity 2023.
|
| 8 |
+
|
| 9 |
+
## How to Use
|
| 10 |
+
* Create a new scene in Unity 2023
|
| 11 |
+
* Add the C# script to the Main Camera
|
| 12 |
+
* Put the `mobilenet_v2.sentis` model in the `Assets/StreamingAssets` folder
|
| 13 |
+
* Drag the `class_desc.txt` on to the `labelsAsset` field
|
| 14 |
+
* Drag one of the sample images on to the inputImage field in the inspector.
|
| 15 |
+
* Press play and the result of the prediction will print to the console window.
|
| 16 |
+
|
| 17 |
+
## Unity Sentis
|
| 18 |
+
Unity Sentis is the inference engine for Unity 3D. You can find more about it [here](https://unity.com/products/sentis)
|