ArunkumarVR commited on
Commit
17824a4
·
verified ·
1 Parent(s): a3afe14

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -4
README.md CHANGED
@@ -10,9 +10,9 @@ tags:
10
  - research
11
  ---
12
 
13
- # DeepBrainz-R1.7-PE-16K
14
 
15
- **DeepBrainz-R1.7-PE-16K** is a compact, long-context reasoning model in the
16
  DeepBrainz-R series, designed for structured problem-solving, analysis,
17
  and enterprise research workflows.
18
 
@@ -47,7 +47,7 @@ Not intended as a general-purpose chat replacement for large frontier models.
47
  ```python
48
  from transformers import AutoModelForCausalLM, AutoTokenizer
49
 
50
- model_id = "DeepBrainz/DeepBrainz-R1.7-PE-16K"
51
 
52
  tok = AutoTokenizer.from_pretrained(model_id)
53
  mdl = AutoModelForCausalLM.from_pretrained(model_id)
@@ -58,6 +58,7 @@ inputs = tok(prompt, return_tensors="pt")
58
  out = mdl.generate(
59
  **inputs,
60
  max_new_tokens=256,
 
61
  temperature=0.6,
62
  top_p=0.95,
63
  )
@@ -79,7 +80,7 @@ abstracted in this public release.
79
  ## Limitations
80
 
81
  Performance depends on task complexity and inference configuration.
82
- Larger models may outperform R1.7-PE-16K on extremely complex tasks.
83
 
84
  ---
85
 
 
10
  - research
11
  ---
12
 
13
+ # DeepBrainz-R1-2B-16K
14
 
15
+ **DeepBrainz-R1-2B-16K** is a compact, long-context reasoning model in the
16
  DeepBrainz-R series, designed for structured problem-solving, analysis,
17
  and enterprise research workflows.
18
 
 
47
  ```python
48
  from transformers import AutoModelForCausalLM, AutoTokenizer
49
 
50
+ model_id = "DeepBrainz/DeepBrainz-R1-2B-16K"
51
 
52
  tok = AutoTokenizer.from_pretrained(model_id)
53
  mdl = AutoModelForCausalLM.from_pretrained(model_id)
 
58
  out = mdl.generate(
59
  **inputs,
60
  max_new_tokens=256,
61
+ do_sample=True,
62
  temperature=0.6,
63
  top_p=0.95,
64
  )
 
80
  ## Limitations
81
 
82
  Performance depends on task complexity and inference configuration.
83
+ Larger models may outperform R1-2B-16K on extremely complex tasks.
84
 
85
  ---
86