REZIRETSA commited on
Commit
c76bc8f
Β·
verified Β·
1 Parent(s): c484b5e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -30
README.md CHANGED
@@ -1,30 +1,32 @@
1
- ---
2
- title: ASTERIZER
3
- emoji: πŸš€
4
- colorFrom: gray
5
- colorTo: gray
6
- sdk: static
7
- pinned: false
8
- ---
9
-
10
- # ASTERIZER
11
-
12
- **Building AI from the model to the device** β€” self-hosted language models, a memory layer, application framework, and on-device AI, engineered in-house with 100% owned IP.
13
-
14
- **Models (trained from scratch)**
15
- - [LUNA-100M](https://huggingface.co/ASTERIZER/LUNA-100M) β€” 4.5B-token pretrain + RAG/MCP SFT
16
- - [LUNA-300M](https://huggingface.co/ASTERIZER/LUNA-300M) β€” 4.5B-token pretrain (2.7Γ— scale-up)
17
- - LUNA-1B β€” in progress
18
-
19
- **Scaling benchmarks β€” LUNA-100M β†’ LUNA-300M** *(latest base checkpoints, same 4.5B-token corpus, held-out ~100K-token eval on RTX 4060 Ti β€” higher is better)*
20
-
21
- | metric | LUNA-100M | LUNA-300M | gain |
22
- |---|---|---|---|
23
- | Next-token prediction accuracy | 32.5% | 32.7% | ↑0.8% |
24
- | Word-prediction accuracy (LAMBADA-style) | 16.3% | 17.1% | ↑4.4% |
25
- | Throughput (RTX 4060 Ti) | 39.2K tok/s | 14.5K tok/s | 2.7Γ— params |
26
-
27
- **Tokenizer (multilingual BPE)**
28
- - [LUNA-1B-Tokenizer](https://huggingface.co/ASTERIZER/LUNA-Tokenizer-1B) β€” 128K / 64K / 8K vocab
29
- - **2.8Γ— better compression** than GPT-NeoX, **67% fewer tokens** on Indic text (Kannada 7Γ—, Telugu 6Γ—, Tamil 5Γ—)
30
- - Beats `cl100k_base` on Indic; competitive with Sarvam (34/55 head-to-head wins)
 
 
 
1
+ ---
2
+ title: ASTERIZER
3
+ emoji: πŸš€
4
+ colorFrom: gray
5
+ colorTo: gray
6
+ sdk: static
7
+ pinned: false
8
+ ---
9
+ # ASTERIZER
10
+ **Building AI from the model to the device** β€” self-hosted language models, a memory layer, application framework, and on-device AI, engineered in-house with 100% owned IP.
11
+
12
+ **Models (trained from scratch)**
13
+ - [LUNA-100M](https://huggingface.co/ASTERIZER/LUNA-100M) β€” 4.5B-token pretrain + RAG/MCP SFT
14
+ - [LUNA-300M](https://huggingface.co/ASTERIZER/LUNA-300M) β€” 4.5B-token pretrain (2.7x scale-up)
15
+ - [LUNA-1B](https://huggingface.co/ASTERIZER/LUNA-1B-Instruct) β€” 32B-token continued pretraining + instruction tuning (11x scale-up)
16
+
17
+ **Scaling benchmarks β€” LUNA-100M -> 300M -> 1B** *(latest base checkpoints, held-out multilingual eval on RTX 4060 Ti, higher is better)*
18
+
19
+ | metric | LUNA-100M | LUNA-300M | LUNA-1B |
20
+ |---|---|---|---|
21
+ | Parameters | 109M | 303M | 1.21B |
22
+ | Next-token accuracy (top-1) | 32.5% | 32.7% | **40.5%** |
23
+ | Next-token accuracy (top-5) | 56.0% | 57.6% | **60.3%** |
24
+ | Word-prediction (LAMBADA-style) | 17.9% | 19.0% | -* |
25
+ | Throughput (RTX 4060 Ti) | 40.4K tok/s | 14.6K tok/s | 6.8K tok/s |
26
+
27
+ *LUNA-1B uses a 128K multilingual tokenizer that merges word+punctuation into single tokens, so LAMBADA exact-match is not cross-tokenizer comparable; the next-token columns are the consistent comparison (and a larger vocab makes exact-match strictly harder).
28
+
29
+ **Tokenizer (multilingual BPE)**
30
+ - [LUNA-1B-Tokenizer](https://huggingface.co/ASTERIZER/LUNA-Tokenizer-1B) β€” 128K / 64K / 8K vocab
31
+ - **2.8x better compression** than GPT-NeoX, **67% fewer tokens** on Indic text (Kannada 7x, Telugu 6x, Tamil 5x)
32
+ - Beats `cl100k_base` on Indic; competitive with Sarvam (34/55 head-to-head wins)