Instructions to use mradermacher/Llama3.2-3B-Arcee-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-Arcee-Math-Code-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Llama3.2-3B-Arcee-Math-Code-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Llama3.2-3B-Arcee-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-Arcee-Math-Code-GGUF", filename="Llama3.2-3B-Arcee-Math-Code.IQ4_XS.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use mradermacher/Llama3.2-3B-Arcee-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-Arcee-Math-Code-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Llama3.2-3B-Arcee-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-Arcee-Math-Code-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Llama3.2-3B-Arcee-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-Arcee-Math-Code-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Llama3.2-3B-Arcee-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-Arcee-Math-Code-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Llama3.2-3B-Arcee-Math-Code-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Llama3.2-3B-Arcee-Math-Code-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Llama3.2-3B-Arcee-Math-Code-GGUF with Ollama:
ollama run hf.co/mradermacher/Llama3.2-3B-Arcee-Math-Code-GGUF:Q4_K_M
- Unsloth Studio new
How to use mradermacher/Llama3.2-3B-Arcee-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-Arcee-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-Arcee-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-Arcee-Math-Code-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/Llama3.2-3B-Arcee-Math-Code-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Llama3.2-3B-Arcee-Math-Code-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Llama3.2-3B-Arcee-Math-Code-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Llama3.2-3B-Arcee-Math-Code-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Llama3.2-3B-Arcee-Math-Code-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- Llama3.2-3B-Arcee-Math-Code.IQ4_XS.gguf +3 -0
- Llama3.2-3B-Arcee-Math-Code.Q2_K.gguf +3 -0
- Llama3.2-3B-Arcee-Math-Code.Q3_K_L.gguf +3 -0
- Llama3.2-3B-Arcee-Math-Code.Q3_K_M.gguf +3 -0
- Llama3.2-3B-Arcee-Math-Code.Q3_K_S.gguf +3 -0
- Llama3.2-3B-Arcee-Math-Code.Q4_K_M.gguf +3 -0
- Llama3.2-3B-Arcee-Math-Code.Q4_K_S.gguf +3 -0
- Llama3.2-3B-Arcee-Math-Code.Q5_K_M.gguf +3 -0
- Llama3.2-3B-Arcee-Math-Code.Q5_K_S.gguf +3 -0
- Llama3.2-3B-Arcee-Math-Code.Q6_K.gguf +3 -0
- Llama3.2-3B-Arcee-Math-Code.Q8_0.gguf +3 -0
- Llama3.2-3B-Arcee-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-Arcee-Math-Code.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Llama3.2-3B-Arcee-Math-Code.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Llama3.2-3B-Arcee-Math-Code.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Llama3.2-3B-Arcee-Math-Code.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Llama3.2-3B-Arcee-Math-Code.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Llama3.2-3B-Arcee-Math-Code.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Llama3.2-3B-Arcee-Math-Code.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Llama3.2-3B-Arcee-Math-Code.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Llama3.2-3B-Arcee-Math-Code.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Llama3.2-3B-Arcee-Math-Code.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Llama3.2-3B-Arcee-Math-Code.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Llama3.2-3B-Arcee-Math-Code.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Llama3.2-3B-Arcee-Math-Code.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d01e852e601b1c6d446f3cf81e3b648193aae185c656006167aa93229bd47d1a
|
| 3 |
+
size 1840903520
|
Llama3.2-3B-Arcee-Math-Code.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad17077af5566ac7037dedc4d2f204f5b982d5437a33c34ca71a63bfeb012b3f
|
| 3 |
+
size 1363932512
|
Llama3.2-3B-Arcee-Math-Code.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e6ad203d9d0cc82123d5ddf6f0ded8d94c080de146ec2dcccb05f5b16c8d835
|
| 3 |
+
size 1815344480
|
Llama3.2-3B-Arcee-Math-Code.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8575c2bf69b9b697c67798f1fa646d1ee7d0d3e13441e3f5401bb0287575ca7b
|
| 3 |
+
size 1687156064
|
Llama3.2-3B-Arcee-Math-Code.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f63a04b8095a91ff3f782740fb3e6b9569dbbcfd550c3c02c3965f0eb1eb15a
|
| 3 |
+
size 1542845792
|
Llama3.2-3B-Arcee-Math-Code.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00d580a676486ce63919a387b6250f1a8e9da79aa5cb8a141626ec8387f34201
|
| 3 |
+
size 2019374432
|
Llama3.2-3B-Arcee-Math-Code.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6bafd7400a2a103b50b6781a7fb4b097e7a7a347dcdf419c2adea4367da42af7
|
| 3 |
+
size 1928197472
|
Llama3.2-3B-Arcee-Math-Code.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e7850f87b497cc8e327dd37571e326d1306191e5ae46b9968ac4040fa783915
|
| 3 |
+
size 2322150752
|
Llama3.2-3B-Arcee-Math-Code.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df0c39e4d8afecb05c31327553b1f44bc3602d3438aacbe9d9caf6a5ed779cb0
|
| 3 |
+
size 2269508960
|
Llama3.2-3B-Arcee-Math-Code.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c2a75761e61ee1a6c481648b5e98bd937c50126cd33f9a80edec0e6dc7d19b8
|
| 3 |
+
size 2643850592
|
Llama3.2-3B-Arcee-Math-Code.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:265cabf5b5cb88e1706694290ac8fb16f1da300458fcba910585a7a075e96be2
|
| 3 |
+
size 3421896032
|
Llama3.2-3B-Arcee-Math-Code.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a92123094f316ccc59abe14a099f5f4dfd40e279a6fc5d22de6eeee85b578c9
|
| 3 |
+
size 6433684832
|