Instructions to use mradermacher/TinyNewsLlama-1.1B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/TinyNewsLlama-1.1B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/TinyNewsLlama-1.1B-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/TinyNewsLlama-1.1B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/TinyNewsLlama-1.1B-GGUF", filename="TinyNewsLlama-1.1B.IQ4_XS.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/TinyNewsLlama-1.1B-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/TinyNewsLlama-1.1B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/TinyNewsLlama-1.1B-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/TinyNewsLlama-1.1B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/TinyNewsLlama-1.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/TinyNewsLlama-1.1B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/TinyNewsLlama-1.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/TinyNewsLlama-1.1B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/TinyNewsLlama-1.1B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/TinyNewsLlama-1.1B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/TinyNewsLlama-1.1B-GGUF with Ollama:
ollama run hf.co/mradermacher/TinyNewsLlama-1.1B-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/TinyNewsLlama-1.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/TinyNewsLlama-1.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/TinyNewsLlama-1.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/TinyNewsLlama-1.1B-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/TinyNewsLlama-1.1B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/TinyNewsLlama-1.1B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/TinyNewsLlama-1.1B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/TinyNewsLlama-1.1B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.TinyNewsLlama-1.1B-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from nico1
Browse files- .gitattributes +12 -0
- TinyNewsLlama-1.1B.IQ4_XS.gguf +3 -0
- TinyNewsLlama-1.1B.Q2_K.gguf +3 -0
- TinyNewsLlama-1.1B.Q3_K_L.gguf +3 -0
- TinyNewsLlama-1.1B.Q3_K_M.gguf +3 -0
- TinyNewsLlama-1.1B.Q3_K_S.gguf +3 -0
- TinyNewsLlama-1.1B.Q4_K_M.gguf +3 -0
- TinyNewsLlama-1.1B.Q4_K_S.gguf +3 -0
- TinyNewsLlama-1.1B.Q5_K_M.gguf +3 -0
- TinyNewsLlama-1.1B.Q5_K_S.gguf +3 -0
- TinyNewsLlama-1.1B.Q6_K.gguf +3 -0
- TinyNewsLlama-1.1B.Q8_0.gguf +3 -0
- TinyNewsLlama-1.1B.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 |
+
TinyNewsLlama-1.1B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
TinyNewsLlama-1.1B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
TinyNewsLlama-1.1B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
TinyNewsLlama-1.1B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
TinyNewsLlama-1.1B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
TinyNewsLlama-1.1B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
TinyNewsLlama-1.1B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
TinyNewsLlama-1.1B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
TinyNewsLlama-1.1B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
TinyNewsLlama-1.1B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
TinyNewsLlama-1.1B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
TinyNewsLlama-1.1B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
TinyNewsLlama-1.1B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15bc9bedc6c8e4ae4fccdb2d71d9e850b2b1cb1d3cc80061f0eb1b3c8afcdd17
|
| 3 |
+
size 609808608
|
TinyNewsLlama-1.1B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:981cd8f695a8ce20514af54cad5ab6e947a745d8b4ff5a421255059183bf1b12
|
| 3 |
+
size 432132320
|
TinyNewsLlama-1.1B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a06e54304b9221a6db1710bb7e06fcbe31c9fea355f8c0bf836849ca2db0afd1
|
| 3 |
+
size 591528160
|
TinyNewsLlama-1.1B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9bfe9bcbce9c8883ad23e55a4d97181552774c501c8486f368ccdf94a22d118
|
| 3 |
+
size 548405472
|
TinyNewsLlama-1.1B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8da12f8807847c337276acfcafe097bfb84b396ccc08df235847b730b68cf64
|
| 3 |
+
size 499343584
|
TinyNewsLlama-1.1B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f89a0d9c9c7460bc85d937c83c19f7ce078b914dd41c645d98c1a78ecd9ea66e
|
| 3 |
+
size 667816160
|
TinyNewsLlama-1.1B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5cf9d9d1df3d7894d9c264bf2e8f54664971d7522c38e57a12c49febe0a80404
|
| 3 |
+
size 639873248
|
TinyNewsLlama-1.1B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:482b991521dc9b625d15d19b1a20309342f45eec76f7ba3072bdb29e0790ed4c
|
| 3 |
+
size 782045408
|
TinyNewsLlama-1.1B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9cf13da6e69a6be50aa122da750a1fe058c1a52cb16be2e189bbb058719f0b54
|
| 3 |
+
size 766030048
|
TinyNewsLlama-1.1B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a60cdd859a74f662b2dabd2ae474f8d07a35c54922b78ff3b6ad8444ed7a3212
|
| 3 |
+
size 903413984
|
TinyNewsLlama-1.1B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fddd058121e1b756a9ea24801789bd731ece66014d3664795699807ae517ebb
|
| 3 |
+
size 1169809632
|
TinyNewsLlama-1.1B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d790246c5c7a81c606b317fe66934d85c6eed305a35ad5e51ccc6debbc2d85eb
|
| 3 |
+
size 2201018592
|