arnavbajpai commited on
Commit
ffe655e
·
verified ·
1 Parent(s): 78b1aa7

Upload folder using huggingface_hub

Browse files
UPLOAD_NOTE.txt CHANGED
@@ -1 +1 @@
1
- Initial Milestone 2 math reasoning checkpoint based on Qwen3-1.7B with LoRA SFT on GSM8K-style chain-of-thought data. The model is configured for verifiable boxed-answer generation and validated for vLLM-compatible inference.
 
1
+ Milestone 2 math checkpoint based on Qwen3-1.7B with LoRA SFT on GSM8K-style reasoning data. This revision explicitly enables Qwen3 thinking mode and uses a lower-temperature generation configuration to improve boxed-answer reliability for CI validation.
chat_template.jinja CHANGED
@@ -1,3 +1,4 @@
 
1
  {%- if tools %}
2
  {{- '<|im_start|>system\n' }}
3
  {%- if messages[0].role == 'system' %}
 
1
+ {%- set enable_thinking = true %}
2
  {%- if tools %}
3
  {{- '<|im_start|>system\n' }}
4
  {%- if messages[0].role == 'system' %}
generation_config.json CHANGED
@@ -6,8 +6,8 @@
6
  151643
7
  ],
8
  "pad_token_id": 151643,
9
- "temperature": 0.7,
10
  "top_k": 20,
11
- "top_p": 0.9,
12
  "transformers_version": "5.7.0"
13
- }
 
6
  151643
7
  ],
8
  "pad_token_id": 151643,
9
+ "temperature": 0.3,
10
  "top_k": 20,
11
+ "top_p": 0.8,
12
  "transformers_version": "5.7.0"
13
+ }