Paul Bird
commited on
Commit
·
f9bbf2a
1
Parent(s):
4bdb889
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
## MNIST-12 Digit Recognition Model in Unity Sentis format
|
| 7 |
+
This is a digit recognition model from the [ONNX Model Zoo](https://github.com/onnx/models/tree/main/validated/vision/classification/mnist) formatted for Unity Sentis 2023
|
| 8 |
+
|
| 9 |
+
## How to Use
|
| 10 |
+
Example source code to run this model can be found at: [Source Code](https://github.com/Unity-Technologies/sentis-samples/tree/main/DigitRecognitionSample)
|
| 11 |
+
|
| 12 |
+
To use *.sentis precompiled file, place the file in the Assets/StreamingAssets folder. And replace the loading code with:
|
| 13 |
+
```
|
| 14 |
+
Model model = ModelLoader.Load("MNIST-12.sentis");
|
| 15 |
+
```
|
| 16 |
+
|
| 17 |
+

|
| 18 |
+
|
| 19 |
+
## Unity Sentis
|
| 20 |
+
Unity Sentis is the inference engine that runs in Unity 3D. More information can be found at [here](https://unity.com/products/sentis)
|