Zero Weights Deterministic Graph Language Model (MSE-GLM) Researchers introduced MSE-GLM, a language model that operates without neural weights, embeddings, or probability distributions, relying instead on deterministic matrix structures built from training text. The model uses a custom BPE tokenizer and sparse matrices to enable fully traceable text generation and inference. Most language models today are a pile of weights nobody can fully read. MSE-GLM Matrix-Structured Edge — Graph Language Model is an attempt at the opposite: a language model with no neural weights, no embeddings, and no probability distributions . Every decision it makes during generation can be traced back to a specific row in a specific matrix, built from the training text itself. Nothing is learned in the gradient-descent sense — everything is counted, deduplicated, and indexed . This post walks through every stage of the pipeline in the order it actually runs — tokenizing, building the graph, generating text, inferring beyond what was literally seen, and finally, a newer piece: figuring out what a cluster of interchangeable tokens actually means . tokenizer.py , graph.py , train.py , inference.py , experience.py , analyse.py , interpret.py , model.py tokenizer.py Everything starts with a from-scratch Byte Pair Encoding BPE tokenizer. No external tokenizer library, no pretrained vocabulary. Training text is lowercased, stripped of anything that isn't a letter, digit, or space, and split into sentences on . ? and newlines. Four reserved ids anchor the vocabulary before any merges happen: