Downloads · 30 days
18
7% of all-time downloads
E6E831728/learned-input-table-model-classic
learned-input-table-model-classic is a text generation model from E6E831728. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as apache-2.0.
This is an anonymized research checkpoint for the paper:
Downloads · 30 days
18
7% of all-time downloads
All-time downloads
247
Public
Parameters
537M
2.1 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors2.1 GB · 100%
From the Hugging Face model README
This is an anonymized research checkpoint for the paper:
Language Models Without a Trainable Input Embedding Table: Learning from Fixed Minimal Binary Token Codes
This repository contains the learned input table baseline.
The model is a 32-layer decoder-only Transformer with:
This baseline uses a standard trainable input embedding table of size:
65,536 x 1024 = 67,108,864 trainable input parameters
This checkpoint is provided for anonymous review and reproducibility of the paper's controlled comparison. It is intended for research use only.
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
repo_id = "E6E831728/learned-input-table-model-classic"
tokenizer = AutoTokenizer.from_pretrained(repo_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(repo_id, trust_remote_code=True)
model.eval()
prompt = "Question: What is the capital of United Kingdom?\nAnswer:"
input_ids = torch.tensor([tokenizer.encode(prompt)], dtype=torch.long)
with torch.no_grad():
output_ids = model.generate(input_ids, max_new_tokens=3, do_sample=False)
print(tokenizer.decode(output_ids[0].tolist()))
This is a small research language model trained for architectural comparison. It is not instruction-tuned for safe deployment and should not be used as a production system.
The model was trained on the same FineWeb-Edu + Cosmopedia mixture used for the matched comparisons in the paper. Dataset terms and licenses are those of the original datasets.