Instructions to use mradermacher/Gemma-mindHaven-3b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Gemma-mindHaven-3b-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Gemma-mindHaven-3b-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Gemma-mindHaven-3b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Gemma-mindHaven-3b-GGUF", filename="Gemma-mindHaven-3b.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/Gemma-mindHaven-3b-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/Gemma-mindHaven-3b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Gemma-mindHaven-3b-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/Gemma-mindHaven-3b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Gemma-mindHaven-3b-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/Gemma-mindHaven-3b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Gemma-mindHaven-3b-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/Gemma-mindHaven-3b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Gemma-mindHaven-3b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Gemma-mindHaven-3b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Gemma-mindHaven-3b-GGUF with Ollama:
ollama run hf.co/mradermacher/Gemma-mindHaven-3b-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Gemma-mindHaven-3b-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/Gemma-mindHaven-3b-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/Gemma-mindHaven-3b-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/Gemma-mindHaven-3b-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/Gemma-mindHaven-3b-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Gemma-mindHaven-3b-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Gemma-mindHaven-3b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Gemma-mindHaven-3b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Gemma-mindHaven-3b-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- Gemma-mindHaven-3b.IQ4_XS.gguf +3 -0
- Gemma-mindHaven-3b.Q2_K.gguf +3 -0
- Gemma-mindHaven-3b.Q3_K_L.gguf +3 -0
- Gemma-mindHaven-3b.Q3_K_M.gguf +3 -0
- Gemma-mindHaven-3b.Q3_K_S.gguf +3 -0
- Gemma-mindHaven-3b.Q4_K_M.gguf +3 -0
- Gemma-mindHaven-3b.Q4_K_S.gguf +3 -0
- Gemma-mindHaven-3b.Q5_K_M.gguf +3 -0
- Gemma-mindHaven-3b.Q5_K_S.gguf +3 -0
- Gemma-mindHaven-3b.Q6_K.gguf +3 -0
- Gemma-mindHaven-3b.Q8_0.gguf +3 -0
- Gemma-mindHaven-3b.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 |
+
Gemma-mindHaven-3b.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Gemma-mindHaven-3b.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Gemma-mindHaven-3b.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Gemma-mindHaven-3b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Gemma-mindHaven-3b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Gemma-mindHaven-3b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Gemma-mindHaven-3b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Gemma-mindHaven-3b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Gemma-mindHaven-3b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Gemma-mindHaven-3b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Gemma-mindHaven-3b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Gemma-mindHaven-3b.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Gemma-mindHaven-3b.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d142385cd07eaf9df32e75c436cab20f8e83e4036dd356fad0ac351bbc10f3c
|
| 3 |
+
size 718167712
|
Gemma-mindHaven-3b.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82ce3e9d93e995d3fa1154e8cc0e9396dc19a5fbfce3ffbba101395335930c25
|
| 3 |
+
size 689814688
|
Gemma-mindHaven-3b.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89c8d423b75e326d2cdb4728470756d2c3e5e6836096c3df9d11fd2600c3d1b1
|
| 3 |
+
size 751575712
|
Gemma-mindHaven-3b.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0db1933df697ff9ea816855f10fb2e1a2e617c187e2c580d70846883600cb3a8
|
| 3 |
+
size 722416288
|
Gemma-mindHaven-3b.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8542e4f920ec610a24a1500d920d350b2b4ce0b6a67a792ecafd0fdaf7a735a
|
| 3 |
+
size 688856224
|
Gemma-mindHaven-3b.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3c8544cd8539e20004c6dc97d23fa128828985026321d242b4d04d7cea243c0
|
| 3 |
+
size 806058400
|
Gemma-mindHaven-3b.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f6f4351cc3a9ec7f0996ff5a8b198ec215a0e6d37ff6c07923a1234efd54617
|
| 3 |
+
size 780993184
|
Gemma-mindHaven-3b.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5cac633a4171944c9e081f0abd86b8037e46bc626862dafa6357e901f9d9a4b8
|
| 3 |
+
size 851345824
|
Gemma-mindHaven-3b.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db8ff7b42181d179d62b73453ae76c291af54d8da9bdcdd972b45dee8fa6ff8b
|
| 3 |
+
size 836399776
|
Gemma-mindHaven-3b.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8cf5dfa539bf817856a28272746ec095313f0dcc8249a2050be8359764fd2af
|
| 3 |
+
size 1011738784
|
Gemma-mindHaven-3b.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3477a38109828aa132c9e4152dbd10d7135bed41336f151230dcb1a71a8394a9
|
| 3 |
+
size 1069306528
|
Gemma-mindHaven-3b.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a1759d62c8411827afb159fff5ff8ff9adfdaf4710215c9e26561d8a8a0e73d
|
| 3 |
+
size 2006573728
|