Custom-trained GPT-2 checkpoint with deliberate depth-width configuration for inference benchmarking research.
Created as part of the
Banterhearts research program investigating benchmarking integrity for local LLM inference.
Mid-scale MHA model for scaling-regime validation.
These checkpoints are not general-purpose language models. They are deliberately sized scaling-study artifacts designed to isolate the effect of model depth vs width on GPU inference latency. The key finding: in the small-model GPU regime, layer depth (not parameter count) dominates latency, producing inversions where a 5M-parameter model can be 3.6x slower than a 25M-parameter model.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("Crusadersk/gpt2-50m")
4tokenizer = AutoTokenizer.from_pretrained("Crusadersk/gpt2-50m")
5
6inputs = tokenizer("Hello", return_tensors="pt")
7outputs = model.generate(**inputs, max_new_tokens=32, do_sample=False)
8print(tokenizer.decode(outputs[0], skip_special_tokens=True))
1@misc{banterhearts2026gpt250m,
2 title = {Custom GPT-2 Scaling Checkpoint (50M) for Inference Benchmarking Research},
3 author = {Kadadekar, Sahil},
4 year = {2026},
5 url = {https://huggingface.co/Crusadersk/gpt2-50m},
6 note = {Part of the Banterhearts research program. NeurIPS 2026 submission.}
7}
This work is part of the Chimera/Banterhearts technical-report program on deployment-time LLM behavior, quantization, refusal robustness, batching effects, and inference-stack reliability. Canonical public archive:
Chimeraforge Reports; source context:
github.com/Sahil170595/Banterhearts.