Instructions to use mradermacher/BitCPM4-1B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/BitCPM4-1B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/BitCPM4-1B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/BitCPM4-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/BitCPM4-1B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/BitCPM4-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/BitCPM4-1B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/BitCPM4-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/BitCPM4-1B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/BitCPM4-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/BitCPM4-1B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/BitCPM4-1B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/BitCPM4-1B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/BitCPM4-1B-GGUF with Ollama:
ollama run hf.co/mradermacher/BitCPM4-1B-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/BitCPM4-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/BitCPM4-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/BitCPM4-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/BitCPM4-1B-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/BitCPM4-1B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/BitCPM4-1B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/BitCPM4-1B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/BitCPM4-1B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.BitCPM4-1B-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from leia
Browse files- .gitattributes +12 -0
- BitCPM4-1B.IQ4_XS.gguf +3 -0
- BitCPM4-1B.Q2_K.gguf +3 -0
- BitCPM4-1B.Q3_K_L.gguf +3 -0
- BitCPM4-1B.Q3_K_M.gguf +3 -0
- BitCPM4-1B.Q3_K_S.gguf +3 -0
- BitCPM4-1B.Q4_K_M.gguf +3 -0
- BitCPM4-1B.Q4_K_S.gguf +3 -0
- BitCPM4-1B.Q5_K_M.gguf +3 -0
- BitCPM4-1B.Q5_K_S.gguf +3 -0
- BitCPM4-1B.Q6_K.gguf +3 -0
- BitCPM4-1B.Q8_0.gguf +3 -0
- BitCPM4-1B.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -35,3 +35,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
BitCPM4-1B.TQ1_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
BitCPM4-1B.TQ2_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
BitCPM4-1B.TQ1_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
BitCPM4-1B.TQ2_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
BitCPM4-1B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
BitCPM4-1B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
BitCPM4-1B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
BitCPM4-1B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
BitCPM4-1B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
BitCPM4-1B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
BitCPM4-1B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
BitCPM4-1B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
BitCPM4-1B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
BitCPM4-1B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
BitCPM4-1B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
BitCPM4-1B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
BitCPM4-1B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7cc33e5930c791e91279bd4aa6cdb247fa372e85b60c9f192ae0d2d902342c2b
|
| 3 |
+
size 763043232
|
BitCPM4-1B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:110a84206363e83bf2f8dbe6b0f00312d5e59e72f79be44500fff04a938cbb5d
|
| 3 |
+
size 551923104
|
BitCPM4-1B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c0dc0bd93c1be1f175f095a682e7872bd00cf376eacfd3c5afffae309ce1559
|
| 3 |
+
size 752082336
|
BitCPM4-1B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5fc4549dd756ec2b1aaae1afbf7c1b723ddf084c387aa206be48929e3e7bac22
|
| 3 |
+
size 695704992
|
BitCPM4-1B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ded8faf7bc83e8fa4ccbf15fca394c6cbe5fee0848541010f2ce21e81b145ce
|
| 3 |
+
size 630836640
|
BitCPM4-1B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d53117513571307cbeef32e4df0eda8530180520cc79757a4cdc6e6f59eb7a2c
|
| 3 |
+
size 841299360
|
BitCPM4-1B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c200e0f9a9f9669709de7efe81220165a68119be26df9c5ce3eb5d090a3e8733
|
| 3 |
+
size 801308064
|
BitCPM4-1B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c2a00b5c51b73b42bf7ec93478c733285c78c41a4d018ae607fcbb769d1d09c
|
| 3 |
+
size 975484320
|
BitCPM4-1B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f97fcd77f347de64c0d65b8a17ebe6ee2b04221d95b7b7c6377134ae3823d86
|
| 3 |
+
size 952401312
|
BitCPM4-1B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f417ea823bfeacf2b5bfb5fe6270287f936e0a37c02e71829f9da97787b8f89d
|
| 3 |
+
size 1118055840
|
BitCPM4-1B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9466ebf9886c67c14ae8d984e6d45f2f58fbf1c73fa50ac5c9ed521c5271952e
|
| 3 |
+
size 1447454400
|
BitCPM4-1B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9ed22c22d4c64e54a6a17430ea5c9750bbc7ec86f790d1b9d333954023c565d
|
| 3 |
+
size 2722545600
|