ggunio commited on
Commit
3a4dfa2
Β·
verified Β·
1 Parent(s): 85b3a58

Fix: Correct embedding dimension (1280-dim, not 768-dim)

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -174,7 +174,7 @@ with gr.Blocks(title="B2NL v6.2.1", theme=gr.themes.Soft()) as app:
174
  ↓
175
  Processing: Byte-level analysis with learned boundaries
176
  ↓
177
- Output: 3 embedding vectors (768-dim each)
178
  ```
179
 
180
  **Key Innovation**: The model learns to identify **semantic boundaries** within the 48-byte window.
@@ -313,7 +313,7 @@ A much longer text that definitely exceeds 48 bytes and will require sliding win
313
  ### πŸ“ The 48-Byte β†’ 3 Embeddings Architecture
314
 
315
  ```
316
- [48 bytes input] β†’ [Encoder] β†’ [3 Γ— 768-dim embeddings] β†’ [Decoder] β†’ [48 bytes output]
317
  ↑ ↓
318
  (with padding) (semantic compression)
319
  ```
 
174
  ↓
175
  Processing: Byte-level analysis with learned boundaries
176
  ↓
177
+ Output: 3 embedding vectors (1280-dim each)
178
  ```
179
 
180
  **Key Innovation**: The model learns to identify **semantic boundaries** within the 48-byte window.
 
313
  ### πŸ“ The 48-Byte β†’ 3 Embeddings Architecture
314
 
315
  ```
316
+ [48 bytes input] β†’ [Encoder] β†’ [3 Γ— 1280-dim embeddings] β†’ [Decoder] β†’ [48 bytes output]
317
  ↑ ↓
318
  (with padding) (semantic compression)
319
  ```