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,17 +39,17 @@ Compared Models/Frameworks:
|
|
| 39 |
|
| 40 |
- [eSpeak NG](https://github.com/espeak-ng/espeak-ng)
|
| 41 |
- [Gruut](https://pypi.org/project/gruut)
|
| 42 |
-
- [
|
| 43 |
- [OLaPh Framework](https://github.com/iisys-hof/olaph)
|
| 44 |
- OLaPh LLM (this)
|
| 45 |
|
| 46 |
| Language | espeak | gruut | byt5 | olaph | olaph_llm |
|
| 47 |
| :--- | :--- | :--- | :--- | :--- | :--- |
|
| 48 |
-
| **de** | 0.17594 | 0.17558 | 0.
|
| 49 |
-
| **en_uk** | 0.14117 | 0.19174 | 0.
|
| 50 |
-
| **en_us** | 0.14588 | 0.16545 | 0.
|
| 51 |
-
| **es** | 0.04324 | 0.04210 | 0.
|
| 52 |
-
| **fr** | 0.06203 | 0.04045 | 0.
|
| 53 |
|
| 54 |
## Usage
|
| 55 |
|
|
|
|
| 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_100l-ipa-childes-espeak](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 |
|
| 46 |
| Language | espeak | gruut | byt5 | olaph | olaph_llm |
|
| 47 |
| :--- | :--- | :--- | :--- | :--- | :--- |
|
| 48 |
+
| **de** | 0.17594 | 0.17558 | 0.27864 | 0.04302 | 0.13518 |
|
| 49 |
+
| **en_uk** | 0.14117 | 0.19174 | 0.13036 | 0.08749 | 0.16321 |
|
| 50 |
+
| **en_us** | 0.14588 | 0.16545 | 0.16345 | 0.10491 | 0.14713 |
|
| 51 |
+
| **es** | 0.04324 | 0.04210 | 0.05436 | 0.02582 | 0.03179 |
|
| 52 |
+
| **fr** | 0.06203 | 0.04045 | 0.09217 | 0.03143 | 0.08591 |
|
| 53 |
|
| 54 |
## Usage
|
| 55 |
|