Instructions to use mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF", filename="EXAONE-4.0-1.2B-writing-safe.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/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF with Ollama:
ollama run hf.co/mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-GGUF to start chatting
- Pi
How to use mradermacher/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-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/EXAONE-4.0-1.2B-writing-safe-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/EXAONE-4.0-1.2B-writing-safe-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.EXAONE-4.0-1.2B-writing-safe-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- EXAONE-4.0-1.2B-writing-safe.IQ4_XS.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.Q2_K.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.Q3_K_L.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.Q3_K_M.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.Q3_K_S.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.Q4_K_M.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.Q4_K_S.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.Q5_K_M.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.Q5_K_S.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.Q6_K.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.Q8_0.gguf +3 -0
- EXAONE-4.0-1.2B-writing-safe.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 |
+
EXAONE-4.0-1.2B-writing-safe.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
EXAONE-4.0-1.2B-writing-safe.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
EXAONE-4.0-1.2B-writing-safe.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
EXAONE-4.0-1.2B-writing-safe.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
EXAONE-4.0-1.2B-writing-safe.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
EXAONE-4.0-1.2B-writing-safe.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
EXAONE-4.0-1.2B-writing-safe.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
EXAONE-4.0-1.2B-writing-safe.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
EXAONE-4.0-1.2B-writing-safe.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
EXAONE-4.0-1.2B-writing-safe.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
EXAONE-4.0-1.2B-writing-safe.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
EXAONE-4.0-1.2B-writing-safe.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
EXAONE-4.0-1.2B-writing-safe.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab059e85160c978880a25fe3d285e7dbe3c14f13406072adf2ca77a2b7d8479d
|
| 3 |
+
size 753800320
|
EXAONE-4.0-1.2B-writing-safe.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da5d3ea05c9a655e8dedb02ac401825b8cb2cc7cd39d066407806ae2254c521e
|
| 3 |
+
size 573412480
|
EXAONE-4.0-1.2B-writing-safe.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8832d8d331b220ded5a78f957c9d6f5a1eace2d593be3e39734e5e1699513a2e
|
| 3 |
+
size 741758080
|
EXAONE-4.0-1.2B-writing-safe.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75a28cff1fc1a680bbe03cbea38e765f8560d18e8e069769b25908b48de582df
|
| 3 |
+
size 691950720
|
EXAONE-4.0-1.2B-writing-safe.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:370dab5d7230a0234332364987d13023aa6ae4719da6d485c355d9af8370669b
|
| 3 |
+
size 636327040
|
EXAONE-4.0-1.2B-writing-safe.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b54a112a8cf14001424d92b85dbf9f2e5b470f49c4774b61cc8190b7d4947265
|
| 3 |
+
size 812438656
|
EXAONE-4.0-1.2B-writing-safe.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69dac22d373de397449c70813b80f4ce6579590722f9ba75b58350611ebf0abf
|
| 3 |
+
size 782046336
|
EXAONE-4.0-1.2B-writing-safe.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a552e0915a609282ee6cd7c6727ffd04d05ec88249653cff67a202d0172e0bc5
|
| 3 |
+
size 929617024
|
EXAONE-4.0-1.2B-writing-safe.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fe9781277ea3af5fc3c4626561baf000972ef98b7bc2389492efd08e5a5a08a
|
| 3 |
+
size 912069760
|
EXAONE-4.0-1.2B-writing-safe.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6733adbfa078ffd43abc3a4f50e35800d771d3dfa40e9ba5d273bd97a80d3a17
|
| 3 |
+
size 1054119040
|
EXAONE-4.0-1.2B-writing-safe.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba0b6696613fdd42d100f706df45f728c4eaedc058fb3995bf574ee43fba4b34
|
| 3 |
+
size 1363940480
|
EXAONE-4.0-1.2B-writing-safe.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f170090142a06d1e314157c0ab2654383052246d03ea68a88b1e46923796849
|
| 3 |
+
size 2563249280
|