Instructions to use mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF", filename="Llama3.2-3B-SLERP-Math-Code.IQ4_XS.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Llama3.2-3B-SLERP-Math-Code-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/Llama3.2-3B-SLERP-Math-Code-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Llama3.2-3B-SLERP-Math-Code-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/Llama3.2-3B-SLERP-Math-Code-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF with Ollama:
ollama run hf.co/mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Llama3.2-3B-SLERP-Math-Code-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/Llama3.2-3B-SLERP-Math-Code-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/Llama3.2-3B-SLERP-Math-Code-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/Llama3.2-3B-SLERP-Math-Code-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Llama3.2-3B-SLERP-Math-Code-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Llama3.2-3B-SLERP-Math-Code-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- Llama3.2-3B-SLERP-Math-Code.IQ4_XS.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.Q2_K.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.Q3_K_L.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.Q3_K_M.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.Q3_K_S.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.Q4_K_M.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.Q4_K_S.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.Q5_K_M.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.Q5_K_S.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.Q6_K.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.Q8_0.gguf +3 -0
- Llama3.2-3B-SLERP-Math-Code.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 |
+
Llama3.2-3B-SLERP-Math-Code.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Llama3.2-3B-SLERP-Math-Code.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Llama3.2-3B-SLERP-Math-Code.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Llama3.2-3B-SLERP-Math-Code.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Llama3.2-3B-SLERP-Math-Code.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Llama3.2-3B-SLERP-Math-Code.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Llama3.2-3B-SLERP-Math-Code.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Llama3.2-3B-SLERP-Math-Code.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Llama3.2-3B-SLERP-Math-Code.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Llama3.2-3B-SLERP-Math-Code.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Llama3.2-3B-SLERP-Math-Code.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Llama3.2-3B-SLERP-Math-Code.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Llama3.2-3B-SLERP-Math-Code.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e82bae2645dcbbabf3f1b38f9d0c9dc3f765018a4a8d9697ec52b31f2be7819e
|
| 3 |
+
size 1840903520
|
Llama3.2-3B-SLERP-Math-Code.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cccee837bbc9fad5050a97a7a328bff4eda9e68ca256128a90ed6348ccc54946
|
| 3 |
+
size 1363932512
|
Llama3.2-3B-SLERP-Math-Code.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08b430e57ff40124ee2857831a91aefd17eadbc07dc9c8e0f110ef437c7a798f
|
| 3 |
+
size 1815344480
|
Llama3.2-3B-SLERP-Math-Code.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c57ade6120b6c105adbef9d1299e8ae7ddadc87d6f1e4c9428065cf0c117cb4
|
| 3 |
+
size 1687156064
|
Llama3.2-3B-SLERP-Math-Code.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a522ed3329d68a764c7433e4dc0c9e1434b67505d418b24ee168e2e908db548
|
| 3 |
+
size 1542845792
|
Llama3.2-3B-SLERP-Math-Code.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce16b1540eee4a7dee43b3db80199abda801e539b2083101535ccc9c39c10f27
|
| 3 |
+
size 2019374432
|
Llama3.2-3B-SLERP-Math-Code.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9116569fc162c37ab845238ebe25ba2d4fbe501a52df63fd2e8cd9ca11a2c8f
|
| 3 |
+
size 1928197472
|
Llama3.2-3B-SLERP-Math-Code.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ebdd408b22adce97f39706d533b45a49f402461a26850810ef0ee52f52da70ef
|
| 3 |
+
size 2322150752
|
Llama3.2-3B-SLERP-Math-Code.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ec43d2f90381165a749ed420b2c18d85eee792e64d9260aada6d5552447dcc5
|
| 3 |
+
size 2269508960
|
Llama3.2-3B-SLERP-Math-Code.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98449d8f0c31a0ae9e1cb25c83ae28781fe6e9d85f42e5b7e4066760ba96a0f3
|
| 3 |
+
size 2643850592
|
Llama3.2-3B-SLERP-Math-Code.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8762d552bb4797e503ef9154429738b9d7b84962bd2b180bdc77ad1f7d9a796d
|
| 3 |
+
size 3421896032
|
Llama3.2-3B-SLERP-Math-Code.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a826619dfd0b64977ca35ef12e81fb94ede09dafe39edc3677e640d3114b824b
|
| 3 |
+
size 6433684832
|