Instructions to use VextLabsinc/gem-ruby with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use VextLabsinc/gem-ruby with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("VextLabsinc/juwel-beryl") model = PeftModel.from_pretrained(base_model, "VextLabsinc/gem-ruby") - Notebooks
- Google Colab
- Kaggle
Correct LoRA rank in card: r=64, alpha=128 (was a fleet-wide r=64 assumption)
Browse files
README.md
CHANGED
|
@@ -31,7 +31,7 @@ Never claim first/all weights / AGI / never-forgets / cheapest-ever.
|
|
| 31 |
## Base model
|
| 32 |
|
| 33 |
- **Required base:** `VextLabsinc/juwel-beryl`
|
| 34 |
-
- **Architecture notes:** Base = JUWEL Beryl (80-layer, hidden 5120, 64 heads, intermediate 25600; internal lineage theron-base-v9 + one CIP rung). This PEFT LoRA is **native to that 80-layer geometry** (`layers_to_transform` 0-79, r=64) — it is not padded and not drop-in on any other JUWEL base. Base architecture is `Qwen3VLForConditionalGeneration` (image-text-to-text), so load it with `AutoModelForImageTextToText`, not `AutoModelForCausalLM`.
|
| 35 |
- **Base license / attribution:** see `NOTICE`
|
| 36 |
|
| 37 |
If this is a **LoRA / PEFT adapter**, load base first, then:
|
|
|
|
| 31 |
## Base model
|
| 32 |
|
| 33 |
- **Required base:** `VextLabsinc/juwel-beryl`
|
| 34 |
+
- **Architecture notes:** Base = JUWEL Beryl (80-layer, hidden 5120, 64 heads, intermediate 25600; internal lineage theron-base-v9 + one CIP rung). This PEFT LoRA is **native to that 80-layer geometry** (`layers_to_transform` 0-79, r=64, alpha=128) — it is not padded and not drop-in on any other JUWEL base. Base architecture is `Qwen3VLForConditionalGeneration` (image-text-to-text), so load it with `AutoModelForImageTextToText`, not `AutoModelForCausalLM`.
|
| 35 |
- **Base license / attribution:** see `NOTICE`
|
| 36 |
|
| 37 |
If this is a **LoRA / PEFT adapter**, load base first, then:
|