Views
No views yet
ornith-ai/Ornith-1.0-9B.ornith-ai/Ornith-1.0-9B + Epoch 2 QLoRA adapter (checkpoint-1072) -> validated standalone merged model.checkpoint-1072)| Epoch | Validation loss |
|---|---|
| 1 | 1.3532 |
| 2 | 1.2940 |
| 3 | 1.4327 |
| Model | Exact match | Normalized exact match | Token F1 |
|---|---|---|---|
| Base Ornith-1.0-9B | 0.0000 | 0.0000 | 0.1312 |
| Epoch 2 adapter | 0.0022 | 0.0022 | 0.3272 |
| Epoch 3 adapter | 0.0033 | 0.0033 | 0.2942 |
| Merged Epoch 2 model | 0.0055 | 0.0055 | 0.3429 |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model_id = "Sara121/Ornith-1.0-9B-Engineering"
5
6tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
7model = AutoModelForCausalLM.from_pretrained(
8 model_id,
9 trust_remote_code=True,
10 device_map="auto",
11 torch_dtype=torch.bfloat16,
12)
13model.eval()<think>...</think> reasoning content before the answer.