Views
No views yet
pravdin/Qwen2.5-1.5B-DeepSeek-R1-dare_linear
├── Merge Method: dare_ties
├── Gensyn/Qwen2.5-1.5B-Instruct
└── deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
├── density: 0.6
├── weight: 0.51# Download a specific quantization
2wget https://huggingface.co/pravdin/Qwen2.5-1.5B-DeepSeek-R1-dare_linear/resolve/main/Qwen2.5-1.5B-DeepSeek-R1-dare_linear.q4_k_m.gguf
3
4# Run with llama.cpp
5./main -m Qwen2.5-1.5B-DeepSeek-R1-dare_linear.q4_k_m.gguf -p "Your prompt here"1from llama_cpp import Llama
2
3# Load the model
4llm = Llama(model_path="Qwen2.5-1.5B-DeepSeek-R1-dare_linear.q4_k_m.gguf")
5
6# Generate text
7output = llm("Your prompt here", max_tokens=512)
8print(output['choices'][0]['text'])1# Create a Modelfile
2echo 'FROM ./Qwen2.5-1.5B-DeepSeek-R1-dare_linear.q4_k_m.gguf' > Modelfile
3
4# Create and run the model
5ollama create Qwen2.5-1.5B-DeepSeek-R1-dare_linear -f Modelfile
6ollama run Qwen2.5-1.5B-DeepSeek-R1-dare_linear "Your prompt here"