Instructions to use unity/inference-engine-mnist-12 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- unity-sentis
How to use unity/inference-engine-mnist-12 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
Commit ·
a556990
1
Parent(s): 280b043
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,7 +11,7 @@ Example source code to run this model can be found at: [Source Code](https://git
|
|
| 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 |

|
|
|
|
| 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(Application.streamingAssetsPath + "/MNIST-12.sentis");
|
| 15 |
```
|
| 16 |
|
| 17 |

|