Instructions to use openbmb/chattts_tokenizer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use openbmb/chattts_tokenizer with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("openbmb/chattts_tokenizer", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,5 +10,5 @@ Borrowed from https://huggingface.co/2Noise/ChatTTS
|
|
| 10 |
|
| 11 |
```python
|
| 12 |
from transformers import AutoTokenizer
|
| 13 |
-
tokenizer = AutoTokenizer.from_pretrained('
|
| 14 |
```
|
|
|
|
| 10 |
|
| 11 |
```python
|
| 12 |
from transformers import AutoTokenizer
|
| 13 |
+
tokenizer = AutoTokenizer.from_pretrained('openbmb/chattts_tokenizer')
|
| 14 |
```
|