Open-Orca/OpenOrca
Viewer • Updated • 2.94M • 21.4k • 1.61k
How to use QuantFactory/Eurus-7b-sft-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 QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf QuantFactory/Eurus-7b-sft-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 QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf QuantFactory/Eurus-7b-sft-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 QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M
docker model run hf.co/QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M
How to use QuantFactory/Eurus-7b-sft-GGUF with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "QuantFactory/Eurus-7b-sft-GGUF"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "QuantFactory/Eurus-7b-sft-GGUF",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M
How to use QuantFactory/Eurus-7b-sft-GGUF with Ollama:
ollama run hf.co/QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M
How to use QuantFactory/Eurus-7b-sft-GGUF with Docker Model Runner:
docker model run hf.co/QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M
How to use QuantFactory/Eurus-7b-sft-GGUF with Lemonade:
# Download Lemonade from https://lemonade-server.ai/ lemonade pull QuantFactory/Eurus-7b-sft-GGUF:Q4_K_M
lemonade run user.Eurus-7b-sft-GGUF-Q4_K_M
lemonade list
Eurus-7B-SFT is fine-tuned from Mistral-7B on all correct actions in UltraInteract, mixing a small proportion of UltraChat, ShareGPT, and OpenOrca examples.
It achieves better performance than other open-source models of similar sizes and even outperforms specialized models in corresponding domains in many cases.
We apply tailored prompts for coding and math, consistent with UltraInteract data formats:
Coding
[INST] Write Python code to solve the task:
{Instruction} [/INST]
Math-CoT
[INST] Solve the following math problem step-by-step.
Simplify your answer as much as possible. Present your final answer as \\boxed{Your Answer}.
{Instruction} [/INST]
Math-PoT
[INST] Tool available:
[1] Python interpreter
When you send a message containing Python code to python, it will be executed in a stateful Jupyter notebook environment.
Solve the following math problem step-by-step.
Simplify your answer as much as possible.
{Instruction} [/INST]

2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
docker model run hf.co/QuantFactory/Eurus-7b-sft-GGUF: