Instructions to use mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Llama-3.2-3B-Fluxed-uncensored-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/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Llama-3.2-3B-Fluxed-uncensored-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/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Llama-3.2-3B-Fluxed-uncensored-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/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Llama-3.2-3B-Fluxed-uncensored-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/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF with Ollama:
ollama run hf.co/mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/Llama-3.2-3B-Fluxed-uncensored-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/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/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/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Llama-3.2-3B-Fluxed-uncensored-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/Llama-3.2-3B-Fluxed-uncensored-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/Llama-3.2-3B-Fluxed-uncensored-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/Llama-3.2-3B-Fluxed-uncensored-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/Llama-3.2-3B-Fluxed-uncensored-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/Llama-3.2-3B-Fluxed-uncensored-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/Llama-3.2-3B-Fluxed-uncensored-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"
uploaded from rich1
Browse files- .gitattributes +12 -0
- Llama-3.2-3B-Fluxed-uncensored.IQ4_XS.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.Q2_K.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.Q3_K_L.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.Q3_K_M.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.Q3_K_S.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.Q4_K_M.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.Q4_K_S.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.Q5_K_M.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.Q5_K_S.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.Q6_K.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.Q8_0.gguf +3 -0
- Llama-3.2-3B-Fluxed-uncensored.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 |
+
Llama-3.2-3B-Fluxed-uncensored.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Llama-3.2-3B-Fluxed-uncensored.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Llama-3.2-3B-Fluxed-uncensored.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Llama-3.2-3B-Fluxed-uncensored.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Llama-3.2-3B-Fluxed-uncensored.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Llama-3.2-3B-Fluxed-uncensored.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Llama-3.2-3B-Fluxed-uncensored.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Llama-3.2-3B-Fluxed-uncensored.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Llama-3.2-3B-Fluxed-uncensored.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Llama-3.2-3B-Fluxed-uncensored.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Llama-3.2-3B-Fluxed-uncensored.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Llama-3.2-3B-Fluxed-uncensored.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Llama-3.2-3B-Fluxed-uncensored.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a643d8bf2e9f376029a2aaefb80c5af48dc1b3807077d4ff15f5a1d83ae657a2
|
| 3 |
+
size 1840908064
|
Llama-3.2-3B-Fluxed-uncensored.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a23210af6de1ede71f0c1d847fababd4d5330df48d1f417b60d2f8cc0dae89c2
|
| 3 |
+
size 1363937056
|
Llama-3.2-3B-Fluxed-uncensored.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a3d1c0f7d228a52fb22d6a8f1c0476e56e1e4117b1cbd0569ef00af1c76e49d
|
| 3 |
+
size 1815349024
|
Llama-3.2-3B-Fluxed-uncensored.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a24130ee88d32b25d20d46b4332d9a7d63208186312d9754a181d182c097e14
|
| 3 |
+
size 1687160608
|
Llama-3.2-3B-Fluxed-uncensored.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ee67589753bd0f3479092c5269bda1cdd2ca8bc21cb762ccd9d60d939b38471
|
| 3 |
+
size 1542850336
|
Llama-3.2-3B-Fluxed-uncensored.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e658aad408b1661f3408ff7caad1df9808d4ddd65cf5c0e7f2b8bb28d06e1c3
|
| 3 |
+
size 2019378976
|
Llama-3.2-3B-Fluxed-uncensored.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:468c48ef006a6b8a6dfd75b5387d866e1441548e7551d148c8f5b029230d3cd0
|
| 3 |
+
size 1928202016
|
Llama-3.2-3B-Fluxed-uncensored.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6c2e6ea25fcb6fcad0ea1caa13698a94fca69148ffd060132ca03890be7b532
|
| 3 |
+
size 2322155296
|
Llama-3.2-3B-Fluxed-uncensored.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8f2e5090e4d0fb3eb9b4092b52cc09678aeeb7c2f3a5a0ddead5ef0b2e0eb85
|
| 3 |
+
size 2269513504
|
Llama-3.2-3B-Fluxed-uncensored.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a054062f494e5723a54147351e93e42f83b90b359f6d8ce032a8635c193d62d2
|
| 3 |
+
size 2643855136
|
Llama-3.2-3B-Fluxed-uncensored.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d3455bd4d7d5c58842b2c4d68df3f1b71b277809579662d533be3603d1e5487
|
| 3 |
+
size 3421900576
|
Llama-3.2-3B-Fluxed-uncensored.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5ca96347555f1af97d0ca7a8347fd9d617c41074fdc7bd534e8ae747e6388f3
|
| 3 |
+
size 6433689376
|