Instructions to use AtomicChat/gemma-4-E4B-it-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use AtomicChat/gemma-4-E4B-it-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 AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
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 AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
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 AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
Use Docker
docker model run hf.co/AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use AtomicChat/gemma-4-E4B-it-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AtomicChat/gemma-4-E4B-it-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AtomicChat/gemma-4-E4B-it-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
- Ollama
How to use AtomicChat/gemma-4-E4B-it-GGUF with Ollama:
ollama run hf.co/AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
- Unsloth Studio
How to use AtomicChat/gemma-4-E4B-it-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 AtomicChat/gemma-4-E4B-it-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 AtomicChat/gemma-4-E4B-it-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for AtomicChat/gemma-4-E4B-it-GGUF to start chatting
- Pi
How to use AtomicChat/gemma-4-E4B-it-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
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": "AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use AtomicChat/gemma-4-E4B-it-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
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 "AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL" \ --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 AtomicChat/gemma-4-E4B-it-GGUF with Docker Model Runner:
docker model run hf.co/AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
- Lemonade
How to use AtomicChat/gemma-4-E4B-it-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
Run and chat with the model
lemonade run user.gemma-4-E4B-it-GGUF-UD-Q4_K_XL
List all available models
lemonade list
- Hermes Agent
How to use AtomicChat/gemma-4-E4B-it-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 AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
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 AtomicChat/gemma-4-E4B-it-GGUF:UD-Q4_K_XL
Run Hermes
hermes
- Atomic Chat
forge: дедуп квантов -> единое имя
Browse files- .gitattributes +6 -0
- gemma-4-E4B-it-coding-IQ3_M.gguf → gemma-4-E4B-it-IQ3_M.gguf +0 -0
- gemma-4-E4B-it-coding-IQ4_XS.gguf → gemma-4-E4B-it-IQ4_XS.gguf +0 -0
- gemma-4-E4B-it-coding-Q2_K.gguf → gemma-4-E4B-it-Q2_K.gguf +0 -0
- gemma-4-E4B-it-coding-Q3_K_L.gguf → gemma-4-E4B-it-Q3_K_L.gguf +0 -0
- gemma-4-E4B-it-coding-Q3_K_M.gguf → gemma-4-E4B-it-Q3_K_M.gguf +0 -0
- gemma4-e4b-it-UD-Q4_K_XL.gguf → gemma-4-E4B-it-UD-Q4_K_XL.gguf +0 -0
- gemma4-e4b-it-IQ3_M.gguf +0 -3
- gemma4-e4b-it-IQ4_XS.gguf +0 -3
- gemma4-e4b-it-Q2_K.gguf +0 -3
- gemma4-e4b-it-Q3_K_L.gguf +0 -3
- gemma4-e4b-it-Q3_K_M.gguf +0 -3
- gemma4-e4b-it-Q4_K_M.gguf +0 -3
- gemma4-e4b-it-Q4_K_S.gguf +0 -3
- gemma4-e4b-it-Q5_K_M.gguf +0 -3
- gemma4-e4b-it-Q5_K_S.gguf +0 -3
- gemma4-e4b-it-Q6_K.gguf +0 -3
- gemma4-e4b-it-Q8_0.gguf +0 -3
.gitattributes
CHANGED
|
@@ -59,3 +59,9 @@ gemma-4-E4B-it-coding-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 59 |
gemma-4-E4B-it-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
gemma-4-E4B-it-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
gemma-4-E4B-it-coding-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
gemma-4-E4B-it-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
gemma-4-E4B-it-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
gemma-4-E4B-it-coding-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
gemma-4-E4B-it-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
gemma-4-E4B-it-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
gemma-4-E4B-it-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
gemma-4-E4B-it-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
gemma-4-E4B-it-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
gemma-4-E4B-it-UD-Q4_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
gemma-4-E4B-it-coding-IQ3_M.gguf → gemma-4-E4B-it-IQ3_M.gguf
RENAMED
|
File without changes
|
gemma-4-E4B-it-coding-IQ4_XS.gguf → gemma-4-E4B-it-IQ4_XS.gguf
RENAMED
|
File without changes
|
gemma-4-E4B-it-coding-Q2_K.gguf → gemma-4-E4B-it-Q2_K.gguf
RENAMED
|
File without changes
|
gemma-4-E4B-it-coding-Q3_K_L.gguf → gemma-4-E4B-it-Q3_K_L.gguf
RENAMED
|
File without changes
|
gemma-4-E4B-it-coding-Q3_K_M.gguf → gemma-4-E4B-it-Q3_K_M.gguf
RENAMED
|
File without changes
|
gemma4-e4b-it-UD-Q4_K_XL.gguf → gemma-4-E4B-it-UD-Q4_K_XL.gguf
RENAMED
|
File without changes
|
gemma4-e4b-it-IQ3_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5408286c230d253d831d208651d79c1d68dcae88d995721415f975825e67c078
|
| 3 |
-
size 4714696192
|
|
|
|
|
|
|
|
|
|
|
|
gemma4-e4b-it-IQ4_XS.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ee912d0c765ac8480b8aa3904bc02b8e0564f93124988d5af7a3effa15382ac4
|
| 3 |
-
size 5070956032
|
|
|
|
|
|
|
|
|
|
|
|
gemma4-e4b-it-Q2_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:12dd2286d2f05155cd14e1ac32e71f1b06065b8df1990f80b368ea95936d404a
|
| 3 |
-
size 4401321472
|
|
|
|
|
|
|
|
|
|
|
|
gemma4-e4b-it-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8ecbeba83958494f61254434217e4ed5fbd5ae8eb4a195c65b59a58179845928
|
| 3 |
-
size 5021281792
|
|
|
|
|
|
|
|
|
|
|
|
gemma4-e4b-it-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:abfac21502a357ddd116dba66a29a5ee11cf039618a9f353408d84bf12bed49a
|
| 3 |
-
size 4850396672
|
|
|
|
|
|
|
|
|
|
|
|
gemma4-e4b-it-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:bf4b60853354d05a8fc21aa7bb9e1f292a7e74c328331d7229499913b9d77dbd
|
| 3 |
-
size 5335291392
|
|
|
|
|
|
|
|
|
|
|
|
gemma4-e4b-it-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:97eefd53f47bb99758244219392a043eeed83998114a7005e2deacd9400850a9
|
| 3 |
-
size 5202970112
|
|
|
|
|
|
|
|
|
|
|
|
gemma4-e4b-it-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0e28ec8266d0aafea0d2bae333e17e2fd9e43ea0e012454ef81ddccf329314a6
|
| 3 |
-
size 5762913792
|
|
|
|
|
|
|
|
|
|
|
|
gemma4-e4b-it-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:838c9b56271b09afc67512ebb11d01b5fb9e8becccb5836d6e048db7d8fd243e
|
| 3 |
-
size 5685970432
|
|
|
|
|
|
|
|
|
|
|
|
gemma4-e4b-it-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1ce1c3a87ca8e877f82da9d8af8bbc1726199a8f5e8482929ab2e79a20af509b
|
| 3 |
-
size 6217262592
|
|
|
|
|
|
|
|
|
|
|
|
gemma4-e4b-it-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e68160d4c432e12b83ef42d9f82b450c394c308c7f828d37dac17e54ff02d94b
|
| 3 |
-
size 8031241728
|
|
|
|
|
|
|
|
|
|
|
|