Instructions to use mradermacher/AwA-1.5B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/AwA-1.5B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/AwA-1.5B-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/AwA-1.5B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/AwA-1.5B-GGUF", filename="AwA-1.5B.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/AwA-1.5B-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/AwA-1.5B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/AwA-1.5B-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/AwA-1.5B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/AwA-1.5B-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/AwA-1.5B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/AwA-1.5B-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/AwA-1.5B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/AwA-1.5B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/AwA-1.5B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/AwA-1.5B-GGUF with Ollama:
ollama run hf.co/mradermacher/AwA-1.5B-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/AwA-1.5B-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/AwA-1.5B-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/AwA-1.5B-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/AwA-1.5B-GGUF to start chatting
- Pi
How to use mradermacher/AwA-1.5B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/AwA-1.5B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mradermacher/AwA-1.5B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/AwA-1.5B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/AwA-1.5B-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default mradermacher/AwA-1.5B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/AwA-1.5B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/AwA-1.5B-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "mradermacher/AwA-1.5B-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use mradermacher/AwA-1.5B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/AwA-1.5B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/AwA-1.5B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/AwA-1.5B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.AwA-1.5B-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from nico1
Browse files- .gitattributes +12 -0
- AwA-1.5B.IQ4_XS.gguf +3 -0
- AwA-1.5B.Q2_K.gguf +3 -0
- AwA-1.5B.Q3_K_L.gguf +3 -0
- AwA-1.5B.Q3_K_M.gguf +3 -0
- AwA-1.5B.Q3_K_S.gguf +3 -0
- AwA-1.5B.Q4_K_M.gguf +3 -0
- AwA-1.5B.Q4_K_S.gguf +3 -0
- AwA-1.5B.Q5_K_M.gguf +3 -0
- AwA-1.5B.Q5_K_S.gguf +3 -0
- AwA-1.5B.Q6_K.gguf +3 -0
- AwA-1.5B.Q8_0.gguf +3 -0
- AwA-1.5B.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 |
+
AwA-1.5B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
AwA-1.5B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
AwA-1.5B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
AwA-1.5B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
AwA-1.5B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
AwA-1.5B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
AwA-1.5B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
AwA-1.5B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
AwA-1.5B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
AwA-1.5B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
AwA-1.5B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
AwA-1.5B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
AwA-1.5B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6cefafca731a8716bbe92aaeca2b82c84dbedb3234baf8a5dd20c57ba565dc7c
|
| 3 |
+
size 902183296
|
AwA-1.5B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ec84cb0f515fde47c8b11cb43f66247c37c042a877f34266a515a864abfa4bb
|
| 3 |
+
size 676305280
|
AwA-1.5B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30c93bd9f7da145293419a01261e24969ab2ecc1b1f45d422f5ea69266741fbe
|
| 3 |
+
size 880163200
|
AwA-1.5B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:837bdd9f4cb6e0966ab01784c41e28a3cac5dab13895b99e1e6c8ddf8790a43e
|
| 3 |
+
size 824179072
|
AwA-1.5B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c2edb2ee9fbaf4f1d318e9d394f34692af75aa1b40d59f3c9b3080167c005e3
|
| 3 |
+
size 760945024
|
AwA-1.5B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b84d1848c53aba81b8caadf9d156e05ae31960b73b421e1722c54b09e9ef62a
|
| 3 |
+
size 986048896
|
AwA-1.5B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e2a063564b2f6a49dc80286720103c6e00886ae0f891c366c1a59d2e4bf785d6
|
| 3 |
+
size 940312960
|
AwA-1.5B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:877369a817c482dbe04af3d15af359c8dacf3db82d792f90a3620ed21ba5cfe5
|
| 3 |
+
size 1125050752
|
AwA-1.5B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:742028b1dd536f71ba822f7c5319bcc66bd941d19bfa819bee960af98f501037
|
| 3 |
+
size 1098729856
|
AwA-1.5B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a4b7aebe1e339fc74d3f9718c1080e725ff976cf8a3ee1e217f8a5c9f2e6c85
|
| 3 |
+
size 1272740224
|
AwA-1.5B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:29ab45498709fc4d0573ad21567312f189c4a556ab5a7cf811f8262a77a5765c
|
| 3 |
+
size 1646573440
|
AwA-1.5B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c25cfbde31ad6d9397b84acacf60e742eecdd1e2dcc9f86c17549b0796300930
|
| 3 |
+
size 3093669760
|