Update README.md
Browse files
README.md
CHANGED
@@ -12,7 +12,7 @@ tags:
|
|
12 |
- instruction-following
|
13 |
- text-generation
|
14 |
- merged_16bit
|
15 |
-
base_model:
|
16 |
datasets:
|
17 |
- beetlware/arabic-reasoning-dataset-logic
|
18 |
---
|
@@ -81,12 +81,7 @@ model = AutoModelForCausalLM.from_pretrained(
|
|
81 |
# Ensure the model is in evaluation mode for inference
|
82 |
model.eval()
|
83 |
```
|
84 |
-
|
85 |
-
### Qwen3 models expect special tags for thinking <think>...</think>
|
86 |
-
### To enable thinking mode during inference (if supported by the fine-tuned model):
|
87 |
-
### You might need to craft the prompt to ask the model to think.
|
88 |
-
### Unsloth-trained Qwen3 models often respond to enable_thinking in tokenizer.apply_chat_template.
|
89 |
-
### For a merged model, its ability to show <think> depends on the training data.
|
90 |
```python
|
91 |
user_prompt_with_thinking_request = "استخدم التفكير المنطقي خطوة بخطوة: إذا كان لدي 4 تفاحات والشجرة فيها 20 تفاحة، فكم تفاحة لدي إجمالاً؟" # "Use step-by-step logical thinking: If I have 4 apples and the tree has 20 apples, how many apples do I have in total?"
|
92 |
|
|
|
12 |
- instruction-following
|
13 |
- text-generation
|
14 |
- merged_16bit
|
15 |
+
base_model: beetlware/Bee1reason-arabic-Qwen-14B
|
16 |
datasets:
|
17 |
- beetlware/arabic-reasoning-dataset-logic
|
18 |
---
|
|
|
81 |
# Ensure the model is in evaluation mode for inference
|
82 |
model.eval()
|
83 |
```
|
84 |
+
|
|
|
|
|
|
|
|
|
|
|
85 |
```python
|
86 |
user_prompt_with_thinking_request = "استخدم التفكير المنطقي خطوة بخطوة: إذا كان لدي 4 تفاحات والشجرة فيها 20 تفاحة، فكم تفاحة لدي إجمالاً؟" # "Use step-by-step logical thinking: If I have 4 apples and the tree has 20 apples, how many apples do I have in total?"
|
87 |
|