Instructions to use mradermacher/bartleby-llama-3.2-1b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/bartleby-llama-3.2-1b-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/bartleby-llama-3.2-1b-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/bartleby-llama-3.2-1b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/bartleby-llama-3.2-1b-GGUF", filename="bartleby-llama-3.2-1b.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-llama-3.2-1b-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-llama-3.2-1b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/bartleby-llama-3.2-1b-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-llama-3.2-1b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/bartleby-llama-3.2-1b-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-llama-3.2-1b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/bartleby-llama-3.2-1b-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-llama-3.2-1b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/bartleby-llama-3.2-1b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/bartleby-llama-3.2-1b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/bartleby-llama-3.2-1b-GGUF with Ollama:
ollama run hf.co/mradermacher/bartleby-llama-3.2-1b-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/bartleby-llama-3.2-1b-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-llama-3.2-1b-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-llama-3.2-1b-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-llama-3.2-1b-GGUF to start chatting
- Pi
How to use mradermacher/bartleby-llama-3.2-1b-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/bartleby-llama-3.2-1b-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/bartleby-llama-3.2-1b-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/bartleby-llama-3.2-1b-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/bartleby-llama-3.2-1b-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/bartleby-llama-3.2-1b-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/bartleby-llama-3.2-1b-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/bartleby-llama-3.2-1b-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/bartleby-llama-3.2-1b-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/bartleby-llama-3.2-1b-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/bartleby-llama-3.2-1b-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/bartleby-llama-3.2-1b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/bartleby-llama-3.2-1b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.bartleby-llama-3.2-1b-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- bartleby-llama-3.2-1b.IQ4_XS.gguf +3 -0
- bartleby-llama-3.2-1b.Q2_K.gguf +3 -0
- bartleby-llama-3.2-1b.Q3_K_L.gguf +3 -0
- bartleby-llama-3.2-1b.Q3_K_M.gguf +3 -0
- bartleby-llama-3.2-1b.Q3_K_S.gguf +3 -0
- bartleby-llama-3.2-1b.Q4_K_M.gguf +3 -0
- bartleby-llama-3.2-1b.Q4_K_S.gguf +3 -0
- bartleby-llama-3.2-1b.Q5_K_M.gguf +3 -0
- bartleby-llama-3.2-1b.Q5_K_S.gguf +3 -0
- bartleby-llama-3.2-1b.Q6_K.gguf +3 -0
- bartleby-llama-3.2-1b.Q8_0.gguf +3 -0
- bartleby-llama-3.2-1b.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-llama-3.2-1b.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
bartleby-llama-3.2-1b.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
bartleby-llama-3.2-1b.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
bartleby-llama-3.2-1b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
bartleby-llama-3.2-1b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
bartleby-llama-3.2-1b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
bartleby-llama-3.2-1b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
bartleby-llama-3.2-1b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
bartleby-llama-3.2-1b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
bartleby-llama-3.2-1b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
bartleby-llama-3.2-1b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
bartleby-llama-3.2-1b.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
bartleby-llama-3.2-1b.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22c33bb0b0276b98a13c9b9a4814e3bd4e0228d9f7ef4f3796b686603d8e37c7
|
| 3 |
+
size 748385088
|
bartleby-llama-3.2-1b.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6228c37bed004d42137d09df99050c0e0fb1920fea8b004f4bebc80dc866bf12
|
| 3 |
+
size 580875072
|
bartleby-llama-3.2-1b.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:686c8b0d5ba01123462e47c1300c80403b1d7a14f0362600637d1701c556a0c6
|
| 3 |
+
size 732525376
|
bartleby-llama-3.2-1b.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e83d8b28d9711ded156e517967b365071f038a51eefb395b234873bde89539aa
|
| 3 |
+
size 690844480
|
bartleby-llama-3.2-1b.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c6ab3fd0fd4e297b1f4c7bab0ba27c992695bdf5efa1e008b3d3d53908c8981
|
| 3 |
+
size 641692480
|
bartleby-llama-3.2-1b.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b0b436c778d61fd0add7d7dd4c8b708894663e41db1ad055e546809b330b9ec
|
| 3 |
+
size 807695168
|
bartleby-llama-3.2-1b.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8726a04cf35e3c4673951728ae44c60b14f5e0e37a913ef774c407744fa1a703
|
| 3 |
+
size 775648064
|
bartleby-llama-3.2-1b.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:403daaca6ec233c402021a572bf95cb8f40314e45da80d9cf6a0d4f6b6013924
|
| 3 |
+
size 911504192
|
bartleby-llama-3.2-1b.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95beae98f9bcb247f6ef1d6bacb809371bd90dd3163c0b0b2cb5328c7603922e
|
| 3 |
+
size 892564288
|
bartleby-llama-3.2-1b.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9be317cf873a0ecef7c110481c8cb7e0a99b25b4145583639421903cf32a6445
|
| 3 |
+
size 1021801280
|
bartleby-llama-3.2-1b.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:714f77e959182a3f9cd027d98c9a07509272a6102d08bcfe00f3b9714c46d89d
|
| 3 |
+
size 1321083712
|
bartleby-llama-3.2-1b.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a925a79243bff500a2d69c19303897b864e664656c2ba152b612cff36ae9f13
|
| 3 |
+
size 2479596352
|