Views
No views yet
normalized_embeddings_weights.pt file contains a [vocab_size x embed_dim] matrix of precomputed, L2-normalized, frozen embeddings.1
2from transformers import AutoTokenizer
3
4from huggingface_hub import hf_hub_download
5
6import torch
7
8tokenizer = AutoTokenizer.from_pretrained('Bochkov/bvv241-2-3')
9
10
11emb_path = hf_hub_download(
12 repo_id="Bochkov/bvv241-2-3",
13 filename="normalized_embeddings_weights.pt"
14)
15
16embeddings = torch.load(emb_path)@article{
bochkov2025emergent,
title={Emergent Semantics Beyond Token Embeddings: Transformer {LM}s with Frozen Visual Unicode Representations},
author={Andrey Bochkov},
journal={Transactions on Machine Learning Research},
issn={2835-8856},
year={2025},
url={https://openreview.net/forum?id=Odh8IynO1o},
note={}
}
@misc{bochkov2025growingtransformersmodularcomposition,
title={Growing Transformers: Modular Composition and Layer-wise Expansion on a Frozen Substrate},
author={A. Bochkov},
year={2025},
eprint={2507.07129},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2507.07129},
}