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, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("iisys-hof/OLaPhLLM_v2") model = AutoModelForCausalLM.from_pretrained("iisys-hof/OLaPhLLM_v2") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -31,6 +31,10 @@ The training set comprised 650,000 sentence pairs per target language (English,
|
|
| 31 |
- **License**: Gemma (Gemma is provided under and subject to the Gemma Terms of Use found at ai.google.dev/gemma/terms)
|
| 32 |
- **Release Date**: September 25, 2025
|
| 33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
## Usage
|
| 35 |
|
| 36 |
```python
|
|
|
|
| 31 |
- **License**: Gemma (Gemma is provided under and subject to the Gemma Terms of Use found at ai.google.dev/gemma/terms)
|
| 32 |
- **Release Date**: September 25, 2025
|
| 33 |
|
| 34 |
+
## Evaluation
|
| 35 |
+
|
| 36 |
+
todo
|
| 37 |
+
|
| 38 |
## Usage
|
| 39 |
|
| 40 |
```python
|