Instructions to use unity/inference-engine-blaze-hand with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- unity-sentis
How to use unity/inference-engine-blaze-hand 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
'Ops' and 'ITensorAllocator' error in 1.4.0-pre.2
I'm getting this error in the new update,
RunBlazePalm.cs(61,5): error CS0122: 'Ops' is inaccessible due to its protection level, error CS0246: The type or namespace name 'ITensorAllocator' could not be found (are you missing a using directive or an assembly reference?)
any chance it will be updated also?
Hi, yes, Ops is deprecated from version 1.4.0. The updated code for that should be out this week.
In the mean time it will still be possible to use the old code by rolling back the package version 1.3.0-pre.3
Hi, yes, Ops is deprecated from version 1.4.0. The updated code for that should be out this week.
In the mean time it will still be possible to use the old code by rolling back the package version 1.3.0-pre.3
I see, that's good to hear. Thank you!