Instructions to use mradermacher/ChickaQ-Large-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/ChickaQ-Large-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/ChickaQ-Large-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/ChickaQ-Large-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/ChickaQ-Large-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/ChickaQ-Large-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/ChickaQ-Large-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/ChickaQ-Large-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/ChickaQ-Large-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/ChickaQ-Large-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/ChickaQ-Large-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/ChickaQ-Large-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/ChickaQ-Large-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/ChickaQ-Large-GGUF with Ollama:
ollama run hf.co/mradermacher/ChickaQ-Large-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use mradermacher/ChickaQ-Large-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/ChickaQ-Large-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/ChickaQ-Large-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/ChickaQ-Large-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.ChickaQ-Large-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from marco
Browse files- .gitattributes +12 -0
- ChickaQ-Large.IQ4_XS.gguf +3 -0
- ChickaQ-Large.Q2_K.gguf +3 -0
- ChickaQ-Large.Q3_K_L.gguf +3 -0
- ChickaQ-Large.Q3_K_M.gguf +3 -0
- ChickaQ-Large.Q3_K_S.gguf +3 -0
- ChickaQ-Large.Q4_K_M.gguf +3 -0
- ChickaQ-Large.Q4_K_S.gguf +3 -0
- ChickaQ-Large.Q5_K_M.gguf +3 -0
- ChickaQ-Large.Q5_K_S.gguf +3 -0
- ChickaQ-Large.Q6_K.gguf +3 -0
- ChickaQ-Large.Q8_0.gguf +3 -0
- ChickaQ-Large.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 |
+
ChickaQ-Large.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
ChickaQ-Large.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
ChickaQ-Large.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
ChickaQ-Large.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
ChickaQ-Large.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
ChickaQ-Large.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
ChickaQ-Large.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
ChickaQ-Large.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
ChickaQ-Large.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
ChickaQ-Large.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
ChickaQ-Large.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
ChickaQ-Large.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
ChickaQ-Large.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27e46169906148bf9c49041fd470517910f4cd2a60daaf5b773407a46f41a812
|
| 3 |
+
size 1087362080
|
ChickaQ-Large.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4dfcee49c6439e819eb4b9a63a95c03d689bb24d0cc123af28fb038160197ef
|
| 3 |
+
size 846570528
|
ChickaQ-Large.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d9a91aec70b922bc47aa28990261ce75ec6d8fd255ebab3e650b6eb47a6d241
|
| 3 |
+
size 1056201760
|
ChickaQ-Large.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:850568bffa83a7f00b76a0e324bbc8dcbfb238000cb4232ee0d5b760984fc439
|
| 3 |
+
size 1015880736
|
ChickaQ-Large.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d73163b954b85497d35119060c1eca9fa376826d47f0e13f3ad5774dc8107e81
|
| 3 |
+
size 953572384
|
ChickaQ-Large.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a4156513cc81c4eaaf3ee44e6aab8724c1c6483c60057d775658719a3994f27
|
| 3 |
+
size 1217754144
|
ChickaQ-Large.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfd66340246bbbb3aafbb092131944ea8f0df2ca72f296ca8fac7f98ac526462
|
| 3 |
+
size 1158263840
|
ChickaQ-Large.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aab0fff8eb6cddaa2d2403367e982310bca7a99c8a9b2dda022a416def98c84d
|
| 3 |
+
size 1376777248
|
ChickaQ-Large.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48b763c3d022e0f144e856bf63cab3bf15c4da7e8553fe4466d359700a0aafec
|
| 3 |
+
size 1327821856
|
ChickaQ-Large.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:327c7d5694b0ea43057095dfef8b3ceb8c20864733cb60c57ad121840057997e
|
| 3 |
+
size 1579027488
|
ChickaQ-Large.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72288c92a3a32b59643644d4a2021bc98c8602fd93065e9c2d82444b2e6a4fd9
|
| 3 |
+
size 1958304800
|
ChickaQ-Large.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc26316849b2e2d9927e80a8515f62b8c3f1f2457d004d4f0e5167344f7dadb4
|
| 3 |
+
size 3680099360
|