Instructions to use speech31/XLS-R-tamil-phoneme with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use speech31/XLS-R-tamil-phoneme with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="speech31/XLS-R-tamil-phoneme")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("speech31/XLS-R-tamil-phoneme") model = AutoModelForCTC.from_pretrained("speech31/XLS-R-tamil-phoneme") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,10 +14,12 @@ This model is fine-tuned on the Tamil dataset from Common Voice 16.1, preprocess
|
|
| 14 |
* Diphthongs: 'aj', 'aʋ'
|
| 15 |
|
| 16 |
* Consonants:
|
| 17 |
-
* Nasals: 'm', 'n', 'n
|
| 18 |
* Stops: 'p', 't̪', 'ʈ', 'k',
|
| 19 |
* Affricates: 't͡ʃ', 'd͡ʒ'
|
| 20 |
-
* Fricatives:
|
| 21 |
-
*
|
|
|
|
|
|
|
| 22 |
* Consonant cluster: 'kʂ'
|
| 23 |
-
* Special Symbols: '்' (denotes absence of inherent vowel)
|
|
|
|
| 14 |
* Diphthongs: 'aj', 'aʋ'
|
| 15 |
|
| 16 |
* Consonants:
|
| 17 |
+
* Nasals: 'm', 'n̪', 'n', 'ɳ', 'ɲ', 'ŋ'
|
| 18 |
* Stops: 'p', 't̪', 'ʈ', 'k',
|
| 19 |
* Affricates: 't͡ʃ', 'd͡ʒ'
|
| 20 |
+
* Fricatives: 's', 'ʂ', 'ʃ', 'h'
|
| 21 |
+
* Tap: 'ɾ'
|
| 22 |
+
* Trill: 'r'
|
| 23 |
+
* Approximants: 'ʋ','ɻ', 'j', 'l', 'ɭ'
|
| 24 |
* Consonant cluster: 'kʂ'
|
| 25 |
+
* Special Symbols: '்' (denotes the absence of inherent vowel)
|