Instructions to use unity/inference-engine-jets-text-to-speech with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- unity-sentis
How to use unity/inference-engine-jets-text-to-speech 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
PB Unity commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -8,7 +8,7 @@ This is a text to speech model called [Jets](https://huggingface.co/imdanboy/jet
|
|
| 8 |
|
| 9 |
## How to Use
|
| 10 |
* Create a new scene in Unity 2023
|
| 11 |
-
* Install `com.unity.sentis` package
|
| 12 |
* Put the c# script on the Main Camera
|
| 13 |
* Put the `sentis` file and the `phoneme_dict.txt` file in the `Assets/StreamingAssets` folder
|
| 14 |
* Add an AudioSource component on the Main Camera
|
|
|
|
| 8 |
|
| 9 |
## How to Use
|
| 10 |
* Create a new scene in Unity 2023
|
| 11 |
+
* Install `com.unity.sentis` version `1.3.0-pre.3` package
|
| 12 |
* Put the c# script on the Main Camera
|
| 13 |
* Put the `sentis` file and the `phoneme_dict.txt` file in the `Assets/StreamingAssets` folder
|
| 14 |
* Add an AudioSource component on the Main Camera
|