Instructions to use mradermacher/aera-4b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/aera-4b-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/aera-4b-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/aera-4b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/aera-4b-GGUF", filename="aera-4b.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/aera-4b-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/aera-4b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/aera-4b-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/aera-4b-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/aera-4b-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/aera-4b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/aera-4b-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/aera-4b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/aera-4b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/aera-4b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/aera-4b-GGUF with Ollama:
ollama run hf.co/mradermacher/aera-4b-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/aera-4b-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/aera-4b-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/aera-4b-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/aera-4b-GGUF to start chatting
- Pi
How to use mradermacher/aera-4b-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/aera-4b-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/aera-4b-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/aera-4b-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/aera-4b-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/aera-4b-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use mradermacher/aera-4b-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/aera-4b-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/aera-4b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/aera-4b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.aera-4b-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from kaos
Browse files- .gitattributes +12 -0
- aera-4b.IQ4_XS.gguf +3 -0
- aera-4b.Q2_K.gguf +3 -0
- aera-4b.Q3_K_L.gguf +3 -0
- aera-4b.Q3_K_M.gguf +3 -0
- aera-4b.Q3_K_S.gguf +3 -0
- aera-4b.Q4_K_M.gguf +3 -0
- aera-4b.Q4_K_S.gguf +3 -0
- aera-4b.Q5_K_M.gguf +3 -0
- aera-4b.Q5_K_S.gguf +3 -0
- aera-4b.Q6_K.gguf +3 -0
- aera-4b.Q8_0.gguf +3 -0
- aera-4b.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 |
+
aera-4b.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
aera-4b.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
aera-4b.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
aera-4b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
aera-4b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
aera-4b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
aera-4b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
aera-4b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
aera-4b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
aera-4b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
aera-4b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
aera-4b.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
aera-4b.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a476345eaafd64f9d6391eebd49c5771fbd94991e068e394252eb66ed107b95
|
| 3 |
+
size 2286314720
|
aera-4b.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de8bf7ca3898a04d169a4d1cd6e71a6715d0dc8e054ca40c6384f62c7ead3f4f
|
| 3 |
+
size 1669498080
|
aera-4b.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b0df4e743b29c85ec51ca788d7eeb800a5a1dc6687928ba77d795b80b63d027
|
| 3 |
+
size 2239784160
|
aera-4b.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d33e649d615c9b7f1f5c5f785d23565b64e3fae8bf43a0ebced8c0d33e736ad
|
| 3 |
+
size 2075616480
|
aera-4b.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b997e36b5d960783d033f760213fe6dc8d446bed287514bc56e3a07dee45f41
|
| 3 |
+
size 1886995680
|
aera-4b.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e2d131a15bcda3407f060685b034441e9e3f1e17fbb7b4ab9e52de2cd0ba1ed3
|
| 3 |
+
size 2497279200
|
aera-4b.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5bdf41b9ed02c30b1dd429457e61ba80702e5b524dff5f52598dfc186ee99ab
|
| 3 |
+
size 2383308000
|
aera-4b.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:510db8953b627a679c5eeabf52ff405cf750ebeebcc0c38c414b5264403a83a6
|
| 3 |
+
size 2889512160
|
aera-4b.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb1945647c8dbcdbd006f93443995d07f0debe3cf7846f7e747ade86c51e8545
|
| 3 |
+
size 2823709920
|
aera-4b.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d3b592d53ce7eddedcfee6e956e93f123e4340f9b8b65264ee821a18a99cc84
|
| 3 |
+
size 3306259680
|
aera-4b.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:154ae6dcf5c665ea68fb4802aaeba63e84a4697205ffcec34a2981eda10666c9
|
| 3 |
+
size 4280403680
|
aera-4b.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab10cf3f76241d53c961e3455a94f3b382ffadbf8018ab66dc883fda9c349b2f
|
| 3 |
+
size 8051283680
|