Views
No views yet
unsloth/gpt-oss-20b-BF16.from_pretrained call.| Dataset | BF16 ppl | FP8 ppl | Δppl |
|---|---|---|---|
| WikiText-2 | 229.4992 | 228.1501 | −1.3490 |
| C4 | 719.8874 | 720.1364 | +0.2489 |
The absolute perplexity is inflated by a long-context degradation in GPT-OSS's 2048-token windowed evaluation. This affects the BF16 and models identically, so Δppl is the meaningful metric — the absolute values are not comparable across models.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("anirudmohan26/gpt-oss-20
4tok = AutoTokenizer.from_pretrained("anirudmohan26/gpt-oss-20B-FP8")