ZhishanQ commited on
Commit
869c2c1
·
verified ·
1 Parent(s): 3d4d160

Fix inline math rendering (use plain text/Unicode for inline symbols)

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -34,17 +34,17 @@ final-answer accuracy or the coherence of the retained reasoning chain.
34
  ## What it does
35
 
36
  During reasoning, PUMA splits the model's chain of thought into steps
37
- $r_1, \dots, r_t$ and embeds each step with this model. A step is flagged as a
38
  **candidate exit point** when it is semantically redundant with a recent step,
39
- measured by cosine similarity:
40
 
41
  $$ s_t^{(k)} = \max_{t-k \le j < t} \cos\big(f(r_j),\, f(r_t)\big) $$
42
 
43
- where $f(\cdot)$ is this embedding model. PUMA flags step $t$ when
44
- $s_t^{(k)} > \tau_{\mathrm{sim}}$. The paper's default operating point is
45
- **$\tau_{\mathrm{sim}} = 0.35$** with a local window **$k = 1$** (compare against
46
- the immediately preceding step). A flagged step is then passed to PUMA's
47
- answer-level verification before generation is actually stopped.
48
 
49
  ## Training
50
 
 
34
  ## What it does
35
 
36
  During reasoning, PUMA splits the model's chain of thought into steps
37
+ r₁, , rₜ and embeds each step with this model. A step is flagged as a
38
  **candidate exit point** when it is semantically redundant with a recent step,
39
+ measured by the maximum cosine similarity to the previous *k* steps:
40
 
41
  $$ s_t^{(k)} = \max_{t-k \le j < t} \cos\big(f(r_j),\, f(r_t)\big) $$
42
 
43
+ where *f*(·) is this embedding model. PUMA flags a step when its redundancy
44
+ score exceeds a threshold **τ_sim**. The paper's default operating point is
45
+ **τ_sim = 0.35** with a local window **k = 1** (compare against the immediately
46
+ preceding step). A flagged step is then passed to PUMA's answer-level
47
+ verification before generation is actually stopped.
48
 
49
  ## Training
50