Instructions to use unity/inference-engine-whisper-tiny with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- unity-sentis
How to use unity/inference-engine-whisper-tiny 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
Any insight on why Sentis versions <=1.6.0-pre.1 wouldn't work
#7
by CrisBlu - opened
I get errors having to do with the Type or Namespace IWorker and TensorFloat not existing when running this repo on those versions, but as far as I can tell from the documentation both those classes exists in Sentis 1.6.0. Any advice in adapting the RunWhisper script for updated versions of Sentis?
Apologies I just realized I was running on Sentis 2.0.0, which does not contain IWorker and TensorFloat, I was receiving a different issue when running on 1.6.0-pre.1 a while ago; something about TensorInt not containing a definition for CompleteOperations and download. In any case is adapting this script to 2.0.0 feasible for me or more effort than it's worth?