This model is a fine-tuned version of
Qwen/Qwen2.5-0.5B aligned using Direct Preference Optimization (DPO) on a Vietnamese preference dataset.
This was developed as part of
Lab 22: DPO Alignment on Apple Silicon using the MLX framework.
This model is intended for research purposes in LLM alignment and Vietnamese language processing. It is optimized for running locally on Apple Silicon devices.
1from mlx_lm import load, generate
2
3model, tokenizer = load("baeGil/lab22-dpo-qwen2.5")
4response = generate(model, tokenizer, prompt="Thủ đô của Việt Nam là gì?", verbose=True)
If you use this model, please credit the Lab 22 DPO Alignment curriculum and the MLX framework.