Text Generation
Transformers
GGUF
English
Merge
mergekit
lazymergekit
vllm
bfloat16
llama
llama-cpp
gguf-my-repo
Instructions to use ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-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 ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0 # Run inference directly in the terminal: llama cli -hf ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0 # Run inference directly in the terminal: llama cli -hf ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0
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 ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0 # Run inference directly in the terminal: ./llama-cli -hf ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0
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 ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0
Use Docker
docker model run hf.co/ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0
- LM Studio
- Jan
- vLLM
How to use ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0
- SGLang
How to use ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF with Ollama:
ollama run hf.co/ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0
- Unsloth Desktop
- Docker Model Runner
How to use ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF with Docker Model Runner:
docker model run hf.co/ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0
- Lemonade
How to use ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF:Q5_0
Run and chat with the model
lemonade run user.L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF-Q5_0
List all available models
lemonade list
- Atomic Chat
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,14 +11,14 @@ tags:
|
|
| 11 |
- gguf-my-repo
|
| 12 |
language:
|
| 13 |
- en
|
| 14 |
-
base_model: ZeroXClem/L3
|
| 15 |
pipeline_tag: text-generation
|
| 16 |
library_name: transformers
|
| 17 |
---
|
| 18 |
|
| 19 |
-
# ZeroXClem/L3
|
| 20 |
-
This model was converted to GGUF format from [`ZeroXClem/L3
|
| 21 |
-
Refer to the [original model card](https://huggingface.co/ZeroXClem/L3
|
| 22 |
|
| 23 |
## Use with llama.cpp
|
| 24 |
Install llama.cpp through brew (works on Mac and Linux)
|
|
@@ -31,12 +31,12 @@ Invoke the llama.cpp server or the CLI.
|
|
| 31 |
|
| 32 |
### CLI:
|
| 33 |
```bash
|
| 34 |
-
llama-cli --hf-repo ZeroXClem/L3
|
| 35 |
```
|
| 36 |
|
| 37 |
### Server:
|
| 38 |
```bash
|
| 39 |
-
llama-server --hf-repo ZeroXClem/L3
|
| 40 |
```
|
| 41 |
|
| 42 |
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
|
@@ -53,9 +53,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
| 53 |
|
| 54 |
Step 3: Run inference through the main binary.
|
| 55 |
```
|
| 56 |
-
./llama-cli --hf-repo ZeroXClem/L3
|
| 57 |
```
|
| 58 |
or
|
| 59 |
```
|
| 60 |
-
./llama-server --hf-repo ZeroXClem/L3
|
| 61 |
```
|
|
|
|
| 11 |
- gguf-my-repo
|
| 12 |
language:
|
| 13 |
- en
|
| 14 |
+
base_model: ZeroXClem/L3-Aspire-Heart-Matrix-8B
|
| 15 |
pipeline_tag: text-generation
|
| 16 |
library_name: transformers
|
| 17 |
---
|
| 18 |
|
| 19 |
+
# ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF
|
| 20 |
+
This model was converted to GGUF format from [`ZeroXClem/L3-Aspire-Heart-Matrix-8B`](https://huggingface.co/ZeroXClem/L3-Aspire-Heart-Matrix-8B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
| 21 |
+
Refer to the [original model card](https://huggingface.co/ZeroXClem/L3-Aspire-Heart-Matrix-8B) for more details on the model.
|
| 22 |
|
| 23 |
## Use with llama.cpp
|
| 24 |
Install llama.cpp through brew (works on Mac and Linux)
|
|
|
|
| 31 |
|
| 32 |
### CLI:
|
| 33 |
```bash
|
| 34 |
+
llama-cli --hf-repo ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF --hf-file l3-aspire-heart-matrix-8b-q5_0.gguf -p "The meaning to life and the universe is"
|
| 35 |
```
|
| 36 |
|
| 37 |
### Server:
|
| 38 |
```bash
|
| 39 |
+
llama-server --hf-repo ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF --hf-file l3-aspire-heart-matrix-8b-q5_0.gguf -c 2048
|
| 40 |
```
|
| 41 |
|
| 42 |
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
|
|
|
| 53 |
|
| 54 |
Step 3: Run inference through the main binary.
|
| 55 |
```
|
| 56 |
+
./llama-cli --hf-repo ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF --hf-file l3-aspire-heart-matrix-8b-q5_0.gguf -p "The meaning to life and the universe is"
|
| 57 |
```
|
| 58 |
or
|
| 59 |
```
|
| 60 |
+
./llama-server --hf-repo ZeroXClem/L3-Aspire-Heart-Matrix-8B-Q5_0-GGUF --hf-file l3-aspire-heart-matrix-8b-q5_0.gguf -c 2048
|
| 61 |
```
|