Fix: Correct embedding dimension (1280-dim, not 768-dim)
Browse files
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 (
|
| 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 Γ
|
| 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 |
```
|