Downloads · 30 days
0
SurendraVB/Synaptic-Edge-Tokenizer-65K
Synaptic-Edge-Tokenizer-65K is a text generation model from SurendraVB. Use it when you need the model to write or continue text. The card lists the license as mit.
The official 65,536-vocabulary ByteLevel BPE Tokenizer custom-engineered for the Synaptic Edge 150M & 1B Neuromorphic Foundation Models.
Downloads · 30 days
0
Access
Public
Updated Sep 16, 2026
Repo size
—
Likes
0
Public
Click a slice to open those files.
.json5.8 MB · 90%
From the Hugging Face model README
The official 65,536-vocabulary ByteLevel BPE Tokenizer custom-engineered for the Synaptic Edge 150M & 1B Neuromorphic Foundation Models.
Trained on over 1.6+ Billion tokens of source code, AI system kernels, formal mathematics, and multilingual texts.
<unk>: ByteLevel fallback guarantees that every byte of UTF-8 text can be processed losslessly without out-of-vocabulary errors. , , , \t) eliminate token explosion in nested code blocks.nanoGPT/llm.c, OpenAI Triton megakernels, BitNet 1.58b STE, and Lean 4 formal proofs.<repo>, </repo>, <file>, </file>, <think>, </think>) for continuous multi-file repository pretraining.| Domain | Ingested Samples / Files | Key Sources |
|---|---|---|
| Code & AI Systems (45%) | 455,000+ files | codeparrot-clean, Magicoder-OSS-75K, CodeFeedback, Evol-Instruct-Code |
| PCMB & Formal Math (25%) | 300,000+ docs | open-web-math, LaTeX equations, Lean 4 theorems, SMILES molecular formulas |
| Natural Language & Multi (30%) | 330,000+ articles | fineweb-edu, Aya Multilingual (65 languages), Wikipedia (7 global languages) |
transformersfrom transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained('SurendraVB/Synaptic-Edge-Tokenizer-65K')
code_snippet = '''@triton.jit
def fused_kernel(a_ptr, b_ptr, BLOCK_M: tl.constexpr):
pass'''
tokens = tokenizer(code_snippet)
print('Token IDs:', tokens.input_ids)
print('Decoded:', tokenizer.decode(tokens.input_ids))
tokenizersfrom tokenizers import Tokenizer
tokenizer = Tokenizer.from_pretrained('SurendraVB/Synaptic-Edge-Tokenizer-65K')
output = tokenizer.encode('def forward(self, x: torch.Tensor):\n return x * 2')
print('Subwords:', output.tokens)
| Token | Purpose | Impact |
|---|---|---|
(4 spaces) | Standard indentation | Encodes a 4-space tab in a single token instead of 4 separate tokens |
(8 spaces) | Kernel / Deep indentation | Compresses 8 spaces into a single atomic ID |
<repo>, </repo> | Repository scoping | Signals repository boundaries in streaming pretraining |
<file>, </file> | File boundaries | Delimits multi-file continuous context streams |
<think>, </think> | Cognitive attractor reasoning | Wraps cognitive latent attractor settling traces |
@misc{synaptic_edge_2026,
author = {Surendra V B},
title = {Synaptic Edge: 1-Bit Ternary Continual Learning Neuromorphic Foundation Architecture},
year = {2026},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/SurendraVB/Synaptic-Edge-Tokenizer-65K}}
}