Views
No views yet
| Metric | Baseline | This Model | Retention |
|---|---|---|---|
| Weighted Accuracy | 0.6756 | 0.6377 | 94.4% |
| MMLU | 0.6700 | 0.6700 | 100.0% |
| HellaSwag | 0.7625 | 0.7250 | 95.1% |
| ARC-Challenge | 0.6000 | 0.4857 | 81.0% |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained(
4 "dystrio/MiniCPM-o-4_5-Sculpt-Default",
5 torch_dtype=torch.bfloat16,
6 trust_remote_code=True,
7)
8tokenizer = AutoTokenizer.from_pretrained(
9 "dystrio/MiniCPM-o-4_5-Sculpt-Default",
10 trust_remote_code=True,
11)