IgorSwat commited on
Commit
d6bec59
·
1 Parent(s): 60dc2e6

Update README

Browse files
Files changed (2) hide show
  1. .gitattributes +2 -1
  2. README.md +5 -3
.gitattributes CHANGED
@@ -34,4 +34,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  xnnpack/** filter=lfs diff=lfs merge=lfs -text
37
- phonemizer/** filter=lfs diff=lfs merge=lfs -text
 
 
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  xnnpack/** filter=lfs diff=lfs merge=lfs -text
37
+ phonemizer/** filter=lfs diff=lfs merge=lfs -text
38
+ voices/** filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -10,10 +10,12 @@ pipeline_tag: text-to-speech
10
  ## Introduction
11
 
12
  This repository hosts the [Kokoro](https://huggingface.co/hexgrad/Kokoro-82M) model for the [React Native Executorch](https://www.npmjs.com/package/react-native-executorch) library.
13
- It includes the model divided into 4 parts, each of them exported for xnnpack backend in .pte format, ready for use in the ExecuTorch runtime.
14
 
15
- As it stands for now, the models are exported with static input shapes: for 32, 64 and 128 input tokens, with methods
16
- `forward_32`, `forward_64`, and `forward_128` respectively.
 
 
17
 
18
  If you'd like to run these models in your own ExecuTorch runtime, refer to the
19
  [official documentation](https://pytorch.org/executorch/stable/index.html) for setup instructions.
 
10
  ## Introduction
11
 
12
  This repository hosts the [Kokoro](https://huggingface.co/hexgrad/Kokoro-82M) model for the [React Native Executorch](https://www.npmjs.com/package/react-native-executorch) library.
13
+ It includes the model divided into 2 main parts: duration predictor and synthesizer, ready for use in the ExecuTorch runtime.
14
 
15
+ The models support **input shape dynamism** and cover the input range of `1` up to `128` tokens.
16
+
17
+ Additionally, the repository contains essential resources for **G2P (grapheme-to-phoneme)** preprocessing (see **v0.9.0** branch) required by the Kokoro model,
18
+ including simple word-by-word phonemization models (also in ExecuTorch format).
19
 
20
  If you'd like to run these models in your own ExecuTorch runtime, refer to the
21
  [official documentation](https://pytorch.org/executorch/stable/index.html) for setup instructions.