gyung commited on
Commit
7ef9fc1
ยท
verified ยท
1 Parent(s): fed7e11

Fix formatting token rendering in model card

Browse files
Files changed (1) hide show
  1. README.md +18 -18
README.md CHANGED
@@ -109,15 +109,15 @@ The tokenizer was trained for Korean, English, code, shell/terminal text, and JS
109
 
110
  Formatting tokens:
111
 
112
- | Token | Meaning |
113
- |---|---|
114
- | `<|im_start|>` | instruction start |
115
- | `<|im_end|>` | instruction end |
116
- | `<|box_end|>` | response/end marker |
117
- | `<|object_ref_start|>` | direct condition |
118
- | `<|object_ref_end|>` | chain-of-thought style condition |
119
- | `<|quad_start|>` | noisy condition |
120
- | `<|quad_end|>` | synthetic condition |
121
 
122
  Prompt format used by the project-side inference code:
123
 
@@ -380,15 +380,15 @@ This work builds on HRM-Text:
380
 
381
  ํฌ๋งท token:
382
 
383
- | Token | ์˜๋ฏธ |
384
- |---|---|
385
- | `<|im_start|>` | instruction ์‹œ์ž‘ |
386
- | `<|im_end|>` | instruction ์ข…๋ฃŒ |
387
- | `<|box_end|>` | response/end marker |
388
- | `<|object_ref_start|>` | direct condition |
389
- | `<|object_ref_end|>` | chain-of-thought style condition |
390
- | `<|quad_start|>` | noisy condition |
391
- | `<|quad_end|>` | synthetic condition |
392
 
393
  ํ”„๋กœ์ ํŠธ ๋‚ด๋ถ€ inference code๊ฐ€ ์“ฐ๋Š” prompt ํ˜•์‹:
394
 
 
109
 
110
  Formatting tokens:
111
 
112
+ ```text
113
+ <|im_start|> instruction start
114
+ <|im_end|> instruction end
115
+ <|box_end|> response/end marker
116
+ <|object_ref_start|> direct condition
117
+ <|object_ref_end|> chain-of-thought style condition
118
+ <|quad_start|> noisy condition
119
+ <|quad_end|> synthetic condition
120
+ ```
121
 
122
  Prompt format used by the project-side inference code:
123
 
 
380
 
381
  ํฌ๋งท token:
382
 
383
+ ```text
384
+ <|im_start|> instruction ์‹œ์ž‘
385
+ <|im_end|> instruction ์ข…๋ฃŒ
386
+ <|box_end|> response/end marker
387
+ <|object_ref_start|> direct condition
388
+ <|object_ref_end|> chain-of-thought style condition
389
+ <|quad_start|> noisy condition
390
+ <|quad_end|> synthetic condition
391
+ ```
392
 
393
  ํ”„๋กœ์ ํŠธ ๋‚ด๋ถ€ inference code๊ฐ€ ์“ฐ๋Š” prompt ํ˜•์‹:
394