Update README.md
Browse files
README.md
CHANGED
@@ -87,6 +87,10 @@ The model is designed to output structured reasoning in the following format:
|
|
87 |
```python
|
88 |
from unsloth import FastLanguageModel
|
89 |
|
|
|
|
|
|
|
|
|
90 |
model, tokenizer = FastLanguageModel.from_pretrained(
|
91 |
model_name = "Omartificial-Intelligence-Space/Diraya-3B-Instruct-Ar",
|
92 |
max_seq_length = max_seq_length,
|
|
|
87 |
```python
|
88 |
from unsloth import FastLanguageModel
|
89 |
|
90 |
+
max_seq_length = 1024 # Can increase for longer reasoning traces
|
91 |
+
lora_rank = 64 # Larger rank = smarter, but slower
|
92 |
+
|
93 |
+
|
94 |
model, tokenizer = FastLanguageModel.from_pretrained(
|
95 |
model_name = "Omartificial-Intelligence-Space/Diraya-3B-Instruct-Ar",
|
96 |
max_seq_length = max_seq_length,
|