teknium/OpenHermes-2.5
Viewer • Updated • 1M • 26.9k • 895
How to use vilm/Quyen-Mini-v0.1-GGUF with Transformers:
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("vilm/Quyen-Mini-v0.1-GGUF", device_map="auto")How to use vilm/Quyen-Mini-v0.1-GGUF with llama.cpp:
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M
docker model run hf.co/vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M
How to use vilm/Quyen-Mini-v0.1-GGUF with Ollama:
ollama run hf.co/vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M
How to use vilm/Quyen-Mini-v0.1-GGUF with Docker Model Runner:
docker model run hf.co/vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M
How to use vilm/Quyen-Mini-v0.1-GGUF with Lemonade:
# Download Lemonade from https://lemonade-server.ai/ lemonade pull vilm/Quyen-Mini-v0.1-GGUF:Q4_K_M
lemonade run user.Quyen-Mini-v0.1-GGUF-Q4_K_M
lemonade list
lemonade run user.Quyen-Mini-v0.1-GGUF-lemonade list
Quyen is our first flagship LLM series based on the Qwen1.5 family. We introduced 6 different versions:
All models were trained with SFT and DPO using the following dataset:
<|im_start|>system
You are a sentient, superintelligent artificial general intelligence, here to teach and assist me.<|im_end|>
<|im_start|>user
Hello world.<|im_end|>
<|im_start|>assistant
apply_chat_template:messages = [
{"role": "system", "content": "You are a sentient, superintelligent artificial general intelligence, here to teach and assist me."},
{"role": "user", "content": "Hello world."}
]
gen_input = tokenizer.apply_chat_template(message, return_tensors="pt")
model.generate(**gen_input)
Pull the model
# Download Lemonade from https://lemonade-server.ai/lemonade pull vilm/Quyen-Mini-v0.1-GGUF: