Instructions to use mradermacher/bartleby-qwen2.5-3b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/bartleby-qwen2.5-3b-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/bartleby-qwen2.5-3b-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/bartleby-qwen2.5-3b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/bartleby-qwen2.5-3b-GGUF", filename="bartleby-qwen2.5-3b.IQ4_XS.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/bartleby-qwen2.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/bartleby-qwen2.5-3b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/bartleby-qwen2.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/bartleby-qwen2.5-3b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/bartleby-qwen2.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/bartleby-qwen2.5-3b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/bartleby-qwen2.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/bartleby-qwen2.5-3b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/bartleby-qwen2.5-3b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/bartleby-qwen2.5-3b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/bartleby-qwen2.5-3b-GGUF with Ollama:
ollama run hf.co/mradermacher/bartleby-qwen2.5-3b-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/bartleby-qwen2.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/bartleby-qwen2.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/bartleby-qwen2.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/bartleby-qwen2.5-3b-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/bartleby-qwen2.5-3b-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/bartleby-qwen2.5-3b-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/bartleby-qwen2.5-3b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/bartleby-qwen2.5-3b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.bartleby-qwen2.5-3b-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- bartleby-qwen2.5-3b.IQ4_XS.gguf +3 -0
- bartleby-qwen2.5-3b.Q2_K.gguf +3 -0
- bartleby-qwen2.5-3b.Q3_K_L.gguf +3 -0
- bartleby-qwen2.5-3b.Q3_K_M.gguf +3 -0
- bartleby-qwen2.5-3b.Q3_K_S.gguf +3 -0
- bartleby-qwen2.5-3b.Q4_K_M.gguf +3 -0
- bartleby-qwen2.5-3b.Q4_K_S.gguf +3 -0
- bartleby-qwen2.5-3b.Q5_K_M.gguf +3 -0
- bartleby-qwen2.5-3b.Q5_K_S.gguf +3 -0
- bartleby-qwen2.5-3b.Q6_K.gguf +3 -0
- bartleby-qwen2.5-3b.Q8_0.gguf +3 -0
- bartleby-qwen2.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 |
+
bartleby-qwen2.5-3b.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
bartleby-qwen2.5-3b.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
bartleby-qwen2.5-3b.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
bartleby-qwen2.5-3b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
bartleby-qwen2.5-3b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
bartleby-qwen2.5-3b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
bartleby-qwen2.5-3b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
bartleby-qwen2.5-3b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
bartleby-qwen2.5-3b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
bartleby-qwen2.5-3b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
bartleby-qwen2.5-3b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
bartleby-qwen2.5-3b.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
bartleby-qwen2.5-3b.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15ff18ee32d140d65ca6a4da0229536735a578cbc7059e5d57fa86e543ff4958
|
| 3 |
+
size 1753182688
|
bartleby-qwen2.5-3b.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1aa008204a4afe3f7daa9c01d2fb22d7fc87d57d218753b61247c506da4b900d
|
| 3 |
+
size 1274753504
|
bartleby-qwen2.5-3b.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:865d24581e593dc941d5ae6508118814ef8bb937fef6488efb4373abe08e6791
|
| 3 |
+
size 1707389408
|
bartleby-qwen2.5-3b.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07ebb50bab867f7a20bb9d10e025eb76263e6aad72d4c68a9a0622215707acd1
|
| 3 |
+
size 1590473184
|
bartleby-qwen2.5-3b.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38cf4ec5ae4e5b3a27f48de09649dd8d59ac7b00b406d9494753b56ccd3166e4
|
| 3 |
+
size 1454354912
|
bartleby-qwen2.5-3b.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da010f7d18f75283679d732101d8ed3dd5ef521be46f4e582ba8facc94c55521
|
| 3 |
+
size 1929900512
|
bartleby-qwen2.5-3b.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1cb22fc8edc4669c3f29883186dda10e1c88eb07f733bb5b296edb2d928cf4f
|
| 3 |
+
size 1834381792
|
bartleby-qwen2.5-3b.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:478f50e2eefba36999348439374741cb96b815418f38c90098e6ed7284c2eb12
|
| 3 |
+
size 2224812512
|
bartleby-qwen2.5-3b.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c10d2771e4b2a59eefffb6f5cdf6ea84420b3dfe988cecdb3f8ddcc9579a7df
|
| 3 |
+
size 2169663968
|
bartleby-qwen2.5-3b.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36768c69aa1dea5fe2e646fd2b11c74aea04181869e400831e11ead3d53a0d02
|
| 3 |
+
size 2538156512
|
bartleby-qwen2.5-3b.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e8562e14d970a8bb91a8fd02402fd30daee76046b2568f04cedb0b8eda45371
|
| 3 |
+
size 3285473760
|
bartleby-qwen2.5-3b.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1eff77cebb1e44993e81457294cc349c8ad30ba28f92d29b014de6c8ba6b7f27
|
| 3 |
+
size 6178314720
|