Views
No views yet
sample-10BT dataset. It is not instruction-tuned and is not a chatbot.The Space runs on CPU-basic (free) hardware and accepts a prompt with temperature, top-k, top-p, repetition penalty, and seed controls.
config.vocab_size=50257, and preserves tied input/output embeddings, so generation cannot emit a padded ID.| Metric | Value |
|---|---|
| Training step | 19,073 |
| Train loss | 3.103327 |
| Validation loss | 3.030832 |
| Validation perplexity | 20.714451 |
| HellaSwag accuracy | 30.0339% (3,016/10,042) |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "ctxnn1/gpt2-124m-fineweb-edu-10b"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)
6inputs = tokenizer("The future of artificial intelligence is", return_tensors="pt")
7output = model.generate(**inputs, max_new_tokens=64, do_sample=True, top_k=50)
8print(tokenizer.decode(output[0], skip_special_tokens=True))e519d993d20c98c841ef061f76a1dec3e6ee24d5e55162bdea2a3e2da280fd4036bfc9edd044eb828e118d49c79532eef8440a2a9862792ab4024f9ebec758be73ebe7e75419d09bConv1D orientation. Positional embeddings, LayerNorm parameters, attention/MLP projections, and tied token embeddings were preserved and validated with native-versus-Hugging-Face logit and loss comparisons.