5 Downloads Updated 1 month ago
A customized version of DeepSeek-R1 32B model with enhanced conversational abilities and optimized parameters.
To use this model, you need to have Ollama installed on your system.
ollama run neuroequality/tunaas-r1:32b
Tunaas-r1 has been fine-tuned with a custom system prompt that emphasizes:
Uses DeepSeek’s optimized chat template format for better conversation flow:
<|im_start|>system
{system_message}
<|im_end|>
<|im_start|>user
{user_message}
<|im_end|>
<|im_start|>assistant
{assistant_response}
ollama run neuroequality/tunaas-r1:32b
curl http://localhost:11434/api/generate -d '{
"model": "neuroequality/tunaas-r1:32b",
"prompt": "Explain quantum computing in simple terms"
}'
import requests
import json
response = requests.post('http://localhost:11434/api/generate',
json={
"model": "neuroequality/tunaas-r1:32b",
"prompt": "Write a Python function to calculate fibonacci numbers",
"stream": False
})
print(json.loads(response.text)['response'])
Tunaas-r1:32b excels at:
The model maintains the strong performance characteristics of DeepSeek-R1:
You can further customize this model by creating your own Modelfile
:
FROM neuroequality/tunaas-r1:32b
# Add your custom parameters
PARAMETER temperature 0.8
PARAMETER top_p 0.95
# Add your custom system message
SYSTEM "Your custom system prompt here"
Then create your variant:
ollama create my-custom-model -f ./Modelfile
This model is designed to be helpful, harmless, and honest. It includes safety measures from the base DeepSeek-R1 model and additional customizations to promote positive interactions.
This model inherits the license from DeepSeek-R1. Please refer to the original model’s license for usage terms.
For issues or questions:
Made with ❤️ by NeuroEquality