Views
No views yet

temperaturetop_ptop_kfrequency_penaltypresence_penaltymax_tokens1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tokenizer = AutoTokenizer.from_pretrained("oxyapi/oxy-1-small")
4model = AutoModelForCausalLM.from_pretrained("oxyapi/oxy-1-small")
5
6prompt = "You are a wise old wizard in a mystical land. A traveler approaches you seeking advice."
7inputs = tokenizer(prompt, return_tensors="pt")
8outputs = model.generate(**inputs, max_length=500)
9response = tokenizer.decode(outputs[0], skip_special_tokens=True)
10print(response)@misc{oxy1small2024,
title={Oxy 1 Small: A Fine-Tuned Qwen2.5-14B-Instruct Model for Role-Play},
author={Oxygen (oxyapi)},
year={2024},
howpublished={\url{https://huggingface.co/oxyapi/oxy-1-small}},
}| Metric | Value |
|---|---|
| Avg. | 33.14 |
| IFEval (0-Shot) | 62.45 |
| BBH (3-Shot) | 41.18 |
| MATH Lvl 5 (4-Shot) | 18.28 |
| GPQA (0-shot) | 16.22 |
| MuSR (0-shot) | 16.28 |
| MMLU-PRO (5-shot) | 44.45 |