Instructions to use mradermacher/Abstractive-Style-Summarizer-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Abstractive-Style-Summarizer-GGUF with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "summarization" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("summarization", model="mradermacher/Abstractive-Style-Summarizer-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Abstractive-Style-Summarizer-GGUF", device_map="auto") - llama-cpp-python
How to use mradermacher/Abstractive-Style-Summarizer-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Abstractive-Style-Summarizer-GGUF", filename="Abstractive-Style-Summarizer.IQ4_XS.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Abstractive-Style-Summarizer-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/Abstractive-Style-Summarizer-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Abstractive-Style-Summarizer-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/Abstractive-Style-Summarizer-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Abstractive-Style-Summarizer-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/Abstractive-Style-Summarizer-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Abstractive-Style-Summarizer-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/Abstractive-Style-Summarizer-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Abstractive-Style-Summarizer-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Abstractive-Style-Summarizer-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Abstractive-Style-Summarizer-GGUF with Ollama:
ollama run hf.co/mradermacher/Abstractive-Style-Summarizer-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Abstractive-Style-Summarizer-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/Abstractive-Style-Summarizer-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/Abstractive-Style-Summarizer-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/Abstractive-Style-Summarizer-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/Abstractive-Style-Summarizer-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Abstractive-Style-Summarizer-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Abstractive-Style-Summarizer-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Abstractive-Style-Summarizer-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Abstractive-Style-Summarizer-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- Abstractive-Style-Summarizer.IQ4_XS.gguf +3 -0
- Abstractive-Style-Summarizer.Q2_K.gguf +3 -0
- Abstractive-Style-Summarizer.Q3_K_L.gguf +3 -0
- Abstractive-Style-Summarizer.Q3_K_M.gguf +3 -0
- Abstractive-Style-Summarizer.Q3_K_S.gguf +3 -0
- Abstractive-Style-Summarizer.Q4_K_M.gguf +3 -0
- Abstractive-Style-Summarizer.Q4_K_S.gguf +3 -0
- Abstractive-Style-Summarizer.Q5_K_M.gguf +3 -0
- Abstractive-Style-Summarizer.Q5_K_S.gguf +3 -0
- Abstractive-Style-Summarizer.Q6_K.gguf +3 -0
- Abstractive-Style-Summarizer.Q8_0.gguf +3 -0
- Abstractive-Style-Summarizer.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 |
+
Abstractive-Style-Summarizer.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Abstractive-Style-Summarizer.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Abstractive-Style-Summarizer.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Abstractive-Style-Summarizer.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Abstractive-Style-Summarizer.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Abstractive-Style-Summarizer.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Abstractive-Style-Summarizer.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Abstractive-Style-Summarizer.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Abstractive-Style-Summarizer.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Abstractive-Style-Summarizer.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Abstractive-Style-Summarizer.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Abstractive-Style-Summarizer.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Abstractive-Style-Summarizer.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:418bcde4191b0924d033e6d28d3693739998e7ce4af4baa17054fbb3686169a8
|
| 3 |
+
size 140110400
|
Abstractive-Style-Summarizer.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf105551238fc3a6577c2ad01c6876a18aa284c54345ff4ed782c5b4b97b276d
|
| 3 |
+
size 100587584
|
Abstractive-Style-Summarizer.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ab79c947ed399d91da7fe2e46618d4dc0faa7ff5fdc4d184e1dffdf38d4df8e
|
| 3 |
+
size 132437312
|
Abstractive-Style-Summarizer.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdcb82cb0e7e71b3f5c938e737b8e4bca736e72944ea2e154c718700097c4c05
|
| 3 |
+
size 125211968
|
Abstractive-Style-Summarizer.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:afabe97375a7005ac73110a5b68d16419753d9c06f593bead261cbdfa3742188
|
| 3 |
+
size 117230912
|
Abstractive-Style-Summarizer.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c229a0e40bb9c807be6deb5ab244817e10106d310cd123dfd675c72f128162b
|
| 3 |
+
size 156865088
|
Abstractive-Style-Summarizer.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4ad11fefa306249be797d7e0451c1b0ab56c706da5824de8a0f7cb3a81cda2e
|
| 3 |
+
size 147320384
|
Abstractive-Style-Summarizer.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77e0aa793b7a92c9de51155c747809078389dce1d2b9832d65e4f5d906dc4d41
|
| 3 |
+
size 179855936
|
Abstractive-Style-Summarizer.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f588a7642be2f247a1dfb4aea5122916e7061b45f6dd1efd1b0fa03e1eeec124
|
| 3 |
+
size 174685760
|
Abstractive-Style-Summarizer.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:def5439e223a8722a530ad1d5f766cf96d60e769cdd57da91fd4c6004fcfe84a
|
| 3 |
+
size 204283712
|
Abstractive-Style-Summarizer.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e927ea28e58771e0bf38a44a206e9b12c44c476f85dcc02416f8f7f83d70aaf
|
| 3 |
+
size 264232256
|
Abstractive-Style-Summarizer.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31ef2256e7cf1d201a483866b7c4309eb5be29ccc9709c4713de9b4bba868a50
|
| 3 |
+
size 496291136
|