Instructions to use mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-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/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-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/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-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/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-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/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF with Ollama:
ollama run hf.co/mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.TinyLlama-1.1B-Chat-v1.0-Heretic-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from rain
Browse files- .gitattributes +12 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.IQ4_XS.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.Q2_K.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.Q3_K_L.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.Q3_K_M.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.Q3_K_S.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.Q4_K_M.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.Q4_K_S.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.Q5_K_M.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.Q5_K_S.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.Q6_K.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.Q8_0.gguf +3 -0
- TinyLlama-1.1B-Chat-v1.0-Heretic.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 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
TinyLlama-1.1B-Chat-v1.0-Heretic.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
TinyLlama-1.1B-Chat-v1.0-Heretic.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5dd88138cea2ac68b5487cc04376260b9d5ea0c0d78cc91f33a5e48a0fd1cd89
|
| 3 |
+
size 609809824
|
TinyLlama-1.1B-Chat-v1.0-Heretic.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c758f2d72eda4aa9779984321f358cc62296f22f26721efd44716e82487f5573
|
| 3 |
+
size 432133536
|
TinyLlama-1.1B-Chat-v1.0-Heretic.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a061cd7f83d585166c1a94067e6461e49a967febf81c1c39442ce1d463aeb641
|
| 3 |
+
size 591529376
|
TinyLlama-1.1B-Chat-v1.0-Heretic.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:537c5357140aadc0b44ed81ba7fd2b05d56cfa2b7d9bbcb6a0ae0cf54e933a3e
|
| 3 |
+
size 548406688
|
TinyLlama-1.1B-Chat-v1.0-Heretic.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0519ec1447d09c07ec3cf1bea150b3de0fae87aacacb5045bfe4dc60ba238ab9
|
| 3 |
+
size 499344800
|
TinyLlama-1.1B-Chat-v1.0-Heretic.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51224008ceef4c16584c3371caa3102dcb3a8c0b21ebe6e6f55a133ab8316249
|
| 3 |
+
size 667817376
|
TinyLlama-1.1B-Chat-v1.0-Heretic.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ef6b20f6217c83e735acd4162be18f44c0e12fdb11eb560cd2c1794df93b0f2
|
| 3 |
+
size 639874464
|
TinyLlama-1.1B-Chat-v1.0-Heretic.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c401f5215a6dcb4525eee6f2c5e2fd9a9df3f372a869da3af2c283f91d3a8dfa
|
| 3 |
+
size 782046624
|
TinyLlama-1.1B-Chat-v1.0-Heretic.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8354f59ba9ff665bd0010b46a42efad6fa9e8f641fb0dee5e29d9c85ab3ab257
|
| 3 |
+
size 766031264
|
TinyLlama-1.1B-Chat-v1.0-Heretic.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba23d96e4bcdef010e82006f12c9db571a2a6f2c1db2b4280e6df06977ffa79e
|
| 3 |
+
size 903415200
|
TinyLlama-1.1B-Chat-v1.0-Heretic.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:658b90a5b40df001aef3e9d026cf644d92eb505de6f6c5d0d9d844fe625b8867
|
| 3 |
+
size 1169810848
|
TinyLlama-1.1B-Chat-v1.0-Heretic.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5dab9f4f45c2eb6a6d88be69aefa3d8a49ba76789afb5817579e85b549e0977a
|
| 3 |
+
size 2201019808
|