Instructions to use iisys-hof/OLaPhLLM_v2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use iisys-hof/OLaPhLLM_v2 with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="iisys-hof/OLaPhLLM_v2")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("iisys-hof/OLaPhLLM_v2") model = AutoModelForMultimodalLM.from_pretrained("iisys-hof/OLaPhLLM_v2") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -39,7 +39,7 @@ Compared Models/Frameworks:
|
|
| 39 |
|
| 40 |
- [eSpeak NG](https://github.com/espeak-ng/espeak-ng)
|
| 41 |
- [Gruut](https://pypi.org/project/gruut)
|
| 42 |
-
- [charsiu/
|
| 43 |
- [OLaPh Framework](https://github.com/iisys-hof/olaph)
|
| 44 |
- OLaPh LLM (this)
|
| 45 |
|
|
|
|
| 39 |
|
| 40 |
- [eSpeak NG](https://github.com/espeak-ng/espeak-ng)
|
| 41 |
- [Gruut](https://pypi.org/project/gruut)
|
| 42 |
+
- [charsiu/g2p_multilingual_byT5_tiny_16_layers_100](https://huggingface.co/charsiu/g2p_multilingual_byT5_tiny_16_layers_100)
|
| 43 |
- [OLaPh Framework](https://github.com/iisys-hof/olaph)
|
| 44 |
- OLaPh LLM (this)
|
| 45 |
|