Views
No views yet
Q: ...\nA: ... prompt format.ckpt_best.pt, 15 epochs, low learning rate (2e-5), loss masked to the answer span only.llama-cli) spot-check
using different default sampling settings than the direct-PyTorch tests failed to
recall the identity fact on one sample. The safetensors and GGUF weights are verified
byte-parity/near-parity identical (0.0 logit diff on export, <0.2% bpb quantization
delta) — this looks like ordinary sampling variance on an already-imperfect (not 100%)
fine-tune, not a quantization bug, but it means: don't expect this to work every
single time. Use lower temperature / greedy decoding for more consistent recall if
that matters for your use case.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tok = AutoTokenizer.from_pretrained("perletter/Dot-125M-Identity")
4model = AutoModelForCausalLM.from_pretrained("perletter/Dot-125M-Identity")
5
6prompt = "Q: What is your name?\nA:"
7inputs = tok(prompt, return_tensors="pt")
8out = model.generate(**inputs, max_new_tokens=30)
9print(tok.decode(out[0], skip_special_tokens=True))llama-cli -m model-Q8_0.gguf -p "Q: What is your name?\nA:" -n 30LICENSE. Training code not included.