Instructions to use douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF", filename="gemma-4-31b-jang-crack-Q3_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf douyamv/Gemma-4-31B-JANG_4M-CRACK-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 douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf douyamv/Gemma-4-31B-JANG_4M-CRACK-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 douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf douyamv/Gemma-4-31B-JANG_4M-CRACK-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 douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M
Use Docker
docker model run hf.co/douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "douyamv/Gemma-4-31B-JANG_4M-CRACK-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": "douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M
- Ollama
How to use douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF with Ollama:
ollama run hf.co/douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M
- Unsloth Studio new
How to use douyamv/Gemma-4-31B-JANG_4M-CRACK-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 douyamv/Gemma-4-31B-JANG_4M-CRACK-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 douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF to start chatting
- Pi new
How to use douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf douyamv/Gemma-4-31B-JANG_4M-CRACK-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": "douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use douyamv/Gemma-4-31B-JANG_4M-CRACK-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 douyamv/Gemma-4-31B-JANG_4M-CRACK-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 douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF with Docker Model Runner:
docker model run hf.co/douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M
- Lemonade
How to use douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull douyamv/Gemma-4-31B-JANG_4M-CRACK-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Gemma-4-31B-JANG_4M-CRACK-GGUF-Q4_K_M
List all available models
lemonade list
Add files using upload-large-folder tool
Browse files- .gitattributes +9 -0
- gemma-4-31b-jang-crack-Q8_0-00001-of-00009.gguf +3 -0
- gemma-4-31b-jang-crack-Q8_0-00002-of-00009.gguf +3 -0
- gemma-4-31b-jang-crack-Q8_0-00003-of-00009.gguf +3 -0
- gemma-4-31b-jang-crack-Q8_0-00004-of-00009.gguf +3 -0
- gemma-4-31b-jang-crack-Q8_0-00005-of-00009.gguf +3 -0
- gemma-4-31b-jang-crack-Q8_0-00006-of-00009.gguf +3 -0
- gemma-4-31b-jang-crack-Q8_0-00007-of-00009.gguf +3 -0
- gemma-4-31b-jang-crack-Q8_0-00008-of-00009.gguf +3 -0
- gemma-4-31b-jang-crack-Q8_0-00009-of-00009.gguf +3 -0
.gitattributes
CHANGED
|
@@ -35,3 +35,12 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
gemma-4-31b-jang-crack-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
gemma-4-31b-jang-crack-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
gemma-4-31b-jang-crack-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
gemma-4-31b-jang-crack-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
gemma-4-31b-jang-crack-Q8_0-00006-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
gemma-4-31b-jang-crack-Q8_0-00002-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
gemma-4-31b-jang-crack-Q8_0-00005-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
gemma-4-31b-jang-crack-Q8_0-00001-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
gemma-4-31b-jang-crack-Q8_0-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
gemma-4-31b-jang-crack-Q8_0-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
gemma-4-31b-jang-crack-Q8_0-00004-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
gemma-4-31b-jang-crack-Q8_0-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
gemma-4-31b-jang-crack-Q8_0-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
gemma-4-31b-jang-crack-Q8_0-00001-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3194e06834d6e4df8ad8b92701f4ccf26d1eef38b950262fcfd86bd2fa16aab0
|
| 3 |
+
size 3935089728
|
gemma-4-31b-jang-crack-Q8_0-00002-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3038a7dcb6f63544c613af743215327d9ccda8d73ce882e0ad5d22202f92a7c2
|
| 3 |
+
size 3942979136
|
gemma-4-31b-jang-crack-Q8_0-00003-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee63ba2abec0b3817322996305067aabc50360a43a1b68e0627a69e361a97261
|
| 3 |
+
size 3989767648
|
gemma-4-31b-jang-crack-Q8_0-00004-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45308b26548d60f8b966f1382bfa9aee2fc94b2470337715e5de931e9cc8f34e
|
| 3 |
+
size 3884443136
|
gemma-4-31b-jang-crack-Q8_0-00005-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b26a9c315ffc7e155531092877204cc3ebaf461c5cb0d1cf91fe1f4ba8be96f
|
| 3 |
+
size 3972244096
|
gemma-4-31b-jang-crack-Q8_0-00006-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4fb201454d6561099fd02d7ae4d70f14edc6b17e232c3ddd363f5e6530c1ecd5
|
| 3 |
+
size 3960481088
|
gemma-4-31b-jang-crack-Q8_0-00007-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e294d61e9e911c9e7212f7be44e7b9d00a1202b0a445ea24d81e2d52d08be784
|
| 3 |
+
size 3884486336
|
gemma-4-31b-jang-crack-Q8_0-00008-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8ccb562b088d99ed36515a924b62ffec28217036ac21733646840725b6a3177
|
| 3 |
+
size 3989767648
|
gemma-4-31b-jang-crack-Q8_0-00009-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da198b3dadf0721bcba9d718759b7cb3f5cbd1bd6a01313c9f0b2ce207ab745e
|
| 3 |
+
size 1076412160
|