Ultra-slim GPT-2-style causal LM (
~22,200 trainable parameters) for
PoT-O path / MML experiments. Pairs with the 22,222-example dataset
Tribewarez/synthetic-pot-o-challanges-22-22k (signature
param_signature 22.2222).
1cd pot-o-22-slim
2python create_model.py
1pip install transformers huggingface_hub
2huggingface-cli login
3python upload_model.py
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "Tribewarez/pot-o-22-slim"
4tok = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)
6
7text = "tensor:shape=[32,64];dtype=float16;target_mml=0.22;ops:matmul,gelu"
8inputs = tok(text, return_tensors="pt", max_length=64, truncation=True)
9# ... generation