naazimsnh02 commited on
Commit
1df3404
·
verified ·
1 Parent(s): 8271908

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -17
README.md CHANGED
@@ -29,8 +29,6 @@ model-index:
29
 
30
  A reasoning-enhanced fine-tune of [google/gemma-4-E4B-it](https://huggingface.co/google/gemma-4-E4B-it), distilled from Claude Opus 4.6 reasoning traces with supplementary math Chain-of-Thought data.
31
 
32
- The model produces structured `<think>...</think>` reasoning blocks before delivering a final answer, encouraging step-by-step problem solving across general reasoning, coding, and mathematics tasks.
33
-
34
  ## Model Details
35
 
36
  | | |
@@ -91,7 +89,7 @@ model = AutoModelForCausalLM.from_pretrained(
91
  )
92
  tokenizer = AutoTokenizer.from_pretrained("naazimsnh02/gemma-4-e4b-opus-reasoning-v2")
93
 
94
- messages = [{"role": "user", "content": "What is 25 * 37? Think step by step."}]
95
  inputs = tokenizer.apply_chat_template(
96
  messages,
97
  add_generation_prompt=True,
@@ -104,20 +102,6 @@ output = model.generate(**inputs, max_new_tokens=1024, temperature=1.0, top_p=0.
104
  print(tokenizer.decode(output[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))
105
  ```
106
 
107
- ### Expected Output Format
108
-
109
- ```
110
- <think>
111
- Let me work through this step by step.
112
- 25 * 37
113
- = 25 * (40 - 3)
114
- = 1000 - 75
115
- = 925
116
- </think>
117
-
118
- The answer is **925**.
119
- ```
120
-
121
  ## Limitations & Disclaimers
122
 
123
  - **This is a reasoning-focused model, not a benchmark-optimized release.** It has not been evaluated on standard benchmarks (MMLU, GSM8K, HumanEval, etc.). Performance on such benchmarks is unknown and may differ from the base model.
 
29
 
30
  A reasoning-enhanced fine-tune of [google/gemma-4-E4B-it](https://huggingface.co/google/gemma-4-E4B-it), distilled from Claude Opus 4.6 reasoning traces with supplementary math Chain-of-Thought data.
31
 
 
 
32
  ## Model Details
33
 
34
  | | |
 
89
  )
90
  tokenizer = AutoTokenizer.from_pretrained("naazimsnh02/gemma-4-e4b-opus-reasoning-v2")
91
 
92
+ messages = [{"role": "user", "content": "A train travels 60 km/h. How long does it take to cover 255 km?"}]
93
  inputs = tokenizer.apply_chat_template(
94
  messages,
95
  add_generation_prompt=True,
 
102
  print(tokenizer.decode(output[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))
103
  ```
104
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  ## Limitations & Disclaimers
106
 
107
  - **This is a reasoning-focused model, not a benchmark-optimized release.** It has not been evaluated on standard benchmarks (MMLU, GSM8K, HumanEval, etc.). Performance on such benchmarks is unknown and may differ from the base model.