173 Downloads Updated 8 months ago
Human-Like-Qwen2.5-1.5B-Instruct is a fine-tuned language model based on Qwen2.5-1.5B-Instruct, optimized using the Human-Like-DPO-Dataset. This model is designed for more natural, engaging, and human-like conversations.
This guide provides steps to install, run, and customize the model on Ollama.
If you havenβt installed Ollama, follow these steps:
curl -fsSL https://ollama.com/install.sh | sh
wsl --install
curl -fsSL https://ollama.com/install.sh | sh
For more details, check the official Ollama installation guide:
https://ollama.com/download
After installing Ollama, download Human-Like-Qwen2.5-1.5B-Instruct:
ollama pull myrepo/human-like-qwen2.5-1.5b-instruct
To start generating responses:
ollama run myrepo/human-like-qwen2.5-1.5b-instruct
For interactive chat mode:
ollama chat myrepo/human-like-qwen2.5-1.5b-instruct
Modelfile
You can modify the model behavior using a Modelfile.
Modelfile
and add the following:FROM myrepo/human-like-qwen2.5-1.5b-instruct
PARAMETER temperature 0.7
PARAMETER top_p 0.9
SYSTEM "You are a human-like AI assistant, capable of engaging conversations, providing informative answers, and assisting with a variety of topics in a natural and friendly manner."
ollama create human-like-qwen-custom -f Modelfile
ollama run human-like-qwen-custom
This model is released under the MIT License, ensuring open and accessible AI development.
This model was fine-tuned using the Human-Like-DPO-Dataset to improve conversational fluency and human-like interactions. Special thanks to the developers of Qwen2.5-1.5B-Instruct and the HumanLLMs team for their contributions to DPO-based fine-tuning.