Commit
•
b480a53
1
Parent(s):
0a6cc30
Update README.md
Browse files
README.md
CHANGED
@@ -16,6 +16,8 @@ provide speech technology across a diverse range of languages. You can find more
|
|
16 |
and their ISO 639-3 codes in the [MMS Language Coverage Overview](https://dl.fbaipublicfiles.com/mms/misc/language_coverage_mms.html),
|
17 |
and see all MMS-TTS checkpoints on the Hugging Face Hub: [facebook/mms-tts](https://huggingface.co/models?sort=trending&search=facebook%2Fmms-tts).
|
18 |
|
|
|
|
|
19 |
## Model Details
|
20 |
|
21 |
VITS (**V**ariational **I**nference with adversarial learning for end-to-end **T**ext-to-**S**peech) is an end-to-end
|
@@ -47,7 +49,7 @@ import torch
|
|
47 |
model = VitsModel.from_pretrained("Matthijs/mms-tts-eng")
|
48 |
tokenizer = AutoTokenizer.from_pretrained("Matthijs/mms-tts-eng")
|
49 |
|
50 |
-
text = "Hey, it's Hugging Face on the phone
|
51 |
inputs = tokenizer(text, return_tensors="pt")
|
52 |
|
53 |
with torch.no_grad():
|
@@ -57,7 +59,6 @@ from IPython.display import Audio
|
|
57 |
Audio(output[0], rate=16000)
|
58 |
```
|
59 |
|
60 |
-
|
61 |
## BibTex citation
|
62 |
|
63 |
This model was developed by Vineel Pratap et al. from Meta AI. If you use the model, consider citing the MMS paper:
|
@@ -71,6 +72,6 @@ This model was developed by Vineel Pratap et al. from Meta AI. If you use the mo
|
|
71 |
}
|
72 |
```
|
73 |
|
74 |
-
##
|
75 |
|
76 |
The model is licensed as **CC-BY-NC 4.0**.
|
|
|
16 |
and their ISO 639-3 codes in the [MMS Language Coverage Overview](https://dl.fbaipublicfiles.com/mms/misc/language_coverage_mms.html),
|
17 |
and see all MMS-TTS checkpoints on the Hugging Face Hub: [facebook/mms-tts](https://huggingface.co/models?sort=trending&search=facebook%2Fmms-tts).
|
18 |
|
19 |
+
MMS-TTS is available in the 🤗 Transformers library from version 4.33 onwards.
|
20 |
+
|
21 |
## Model Details
|
22 |
|
23 |
VITS (**V**ariational **I**nference with adversarial learning for end-to-end **T**ext-to-**S**peech) is an end-to-end
|
|
|
49 |
model = VitsModel.from_pretrained("Matthijs/mms-tts-eng")
|
50 |
tokenizer = AutoTokenizer.from_pretrained("Matthijs/mms-tts-eng")
|
51 |
|
52 |
+
text = "Hey, it's Hugging Face on the phone"
|
53 |
inputs = tokenizer(text, return_tensors="pt")
|
54 |
|
55 |
with torch.no_grad():
|
|
|
59 |
Audio(output[0], rate=16000)
|
60 |
```
|
61 |
|
|
|
62 |
## BibTex citation
|
63 |
|
64 |
This model was developed by Vineel Pratap et al. from Meta AI. If you use the model, consider citing the MMS paper:
|
|
|
72 |
}
|
73 |
```
|
74 |
|
75 |
+
## License
|
76 |
|
77 |
The model is licensed as **CC-BY-NC 4.0**.
|