Instructions to use mradermacher/esbieta-ec-qwen-2.5-3B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/esbieta-ec-qwen-2.5-3B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/esbieta-ec-qwen-2.5-3B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/esbieta-ec-qwen-2.5-3B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
Use pre-built binary
# 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 mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
Build from source code
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 mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/esbieta-ec-qwen-2.5-3B-GGUF with Ollama:
ollama run hf.co/mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/esbieta-ec-qwen-2.5-3B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mradermacher/esbieta-ec-qwen-2.5-3B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mradermacher/esbieta-ec-qwen-2.5-3B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/esbieta-ec-qwen-2.5-3B-GGUF to start chatting
- Pi
How to use mradermacher/esbieta-ec-qwen-2.5-3B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/esbieta-ec-qwen-2.5-3B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/esbieta-ec-qwen-2.5-3B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use mradermacher/esbieta-ec-qwen-2.5-3B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/esbieta-ec-qwen-2.5-3B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/esbieta-ec-qwen-2.5-3B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.esbieta-ec-qwen-2.5-3B-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from marco
Browse files- .gitattributes +12 -0
- esbieta-ec-qwen-2.5-3B.IQ4_XS.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.Q2_K.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.Q3_K_L.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.Q3_K_M.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.Q3_K_S.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.Q4_K_M.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.Q4_K_S.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.Q5_K_M.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.Q5_K_S.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.Q6_K.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.Q8_0.gguf +3 -0
- esbieta-ec-qwen-2.5-3B.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
esbieta-ec-qwen-2.5-3B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
esbieta-ec-qwen-2.5-3B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
esbieta-ec-qwen-2.5-3B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
esbieta-ec-qwen-2.5-3B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
esbieta-ec-qwen-2.5-3B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
esbieta-ec-qwen-2.5-3B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
esbieta-ec-qwen-2.5-3B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
esbieta-ec-qwen-2.5-3B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
esbieta-ec-qwen-2.5-3B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
esbieta-ec-qwen-2.5-3B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
esbieta-ec-qwen-2.5-3B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
esbieta-ec-qwen-2.5-3B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
esbieta-ec-qwen-2.5-3B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe09f63e83d64f6ca81d5bf0b843b0ff2eebd8a4beb3a6253971651a3e5645af
|
| 3 |
+
size 1752724192
|
esbieta-ec-qwen-2.5-3B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d9d5c20c1e8d43332828e1f39d16ec901ff2d5beeeafd0bd4bd7e3751542b26
|
| 3 |
+
size 1274295008
|
esbieta-ec-qwen-2.5-3B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6529eee9c4f3d9d4a65e7aaac833ea473610630a82e3246e847745539177847c
|
| 3 |
+
size 1706930912
|
esbieta-ec-qwen-2.5-3B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb3dc7a732b1e378f8c6687af1d077579606ff36811500f8ae0b863ba333e073
|
| 3 |
+
size 1590014688
|
esbieta-ec-qwen-2.5-3B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0d9c8e821f179368e615525d2b90a1e24258e5b4f5deed4211bcb8e805bd023
|
| 3 |
+
size 1453896416
|
esbieta-ec-qwen-2.5-3B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7fec98f259bfa35c345abdafa63fee9662f02bb8fa87f1550571705257dbcf18
|
| 3 |
+
size 1929442016
|
esbieta-ec-qwen-2.5-3B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a4160a29b04f1b3e45d3e823a24af6d0e1a905f3e58d0df8defa2423354a2a2
|
| 3 |
+
size 1833923296
|
esbieta-ec-qwen-2.5-3B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6464060aa5f8ce67da8cac4a6d3904a889f5f150558873eba9015dae9778d947
|
| 3 |
+
size 2224354016
|
esbieta-ec-qwen-2.5-3B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6dfd3c042ec56ca20c5b4bbd0e0a85561f09ce517f23edd217c8b5aa25365e4
|
| 3 |
+
size 2169205472
|
esbieta-ec-qwen-2.5-3B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:286e78aa2dc6821d3236d072962f2921973d464e780768ff79ecfabaf23ef51d
|
| 3 |
+
size 2537698016
|
esbieta-ec-qwen-2.5-3B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be8ff08563bd8968d03befb93b4da3dafdf9cb6a585f9ad348da9a6a0e01f7e2
|
| 3 |
+
size 3284880832
|
esbieta-ec-qwen-2.5-3B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75a7e01984c795184da42be5dc948710712605af989038ecda2f3280e4b3186e
|
| 3 |
+
size 6177201472
|