Translation
Transformers
GGUF
multilingual
low-resource
underrepresented-languages
language-detection
tool-use
function-calling
gemma
gemma-4
unsloth
lora
qlora
text-generation
conversational
Instructions to use mradermacher/Hypa-Gemma4-E2B-v1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Hypa-Gemma4-E2B-v1-GGUF with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="mradermacher/Hypa-Gemma4-E2B-v1-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Hypa-Gemma4-E2B-v1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Hypa-Gemma4-E2B-v1-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/Hypa-Gemma4-E2B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Hypa-Gemma4-E2B-v1-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/Hypa-Gemma4-E2B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Hypa-Gemma4-E2B-v1-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/Hypa-Gemma4-E2B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Hypa-Gemma4-E2B-v1-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/Hypa-Gemma4-E2B-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Hypa-Gemma4-E2B-v1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Hypa-Gemma4-E2B-v1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Hypa-Gemma4-E2B-v1-GGUF with Ollama:
ollama run hf.co/mradermacher/Hypa-Gemma4-E2B-v1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Hypa-Gemma4-E2B-v1-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/Hypa-Gemma4-E2B-v1-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/Hypa-Gemma4-E2B-v1-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/Hypa-Gemma4-E2B-v1-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/Hypa-Gemma4-E2B-v1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Hypa-Gemma4-E2B-v1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Hypa-Gemma4-E2B-v1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Hypa-Gemma4-E2B-v1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Hypa-Gemma4-E2B-v1-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from nico1
Browse files- .gitattributes +12 -0
- Hypa-Gemma4-E2B-v1.IQ4_XS.gguf +3 -0
- Hypa-Gemma4-E2B-v1.Q2_K.gguf +3 -0
- Hypa-Gemma4-E2B-v1.Q3_K_L.gguf +3 -0
- Hypa-Gemma4-E2B-v1.Q3_K_M.gguf +3 -0
- Hypa-Gemma4-E2B-v1.Q3_K_S.gguf +3 -0
- Hypa-Gemma4-E2B-v1.Q4_K_M.gguf +3 -0
- Hypa-Gemma4-E2B-v1.Q4_K_S.gguf +3 -0
- Hypa-Gemma4-E2B-v1.Q5_K_M.gguf +3 -0
- Hypa-Gemma4-E2B-v1.Q5_K_S.gguf +3 -0
- Hypa-Gemma4-E2B-v1.Q6_K.gguf +3 -0
- Hypa-Gemma4-E2B-v1.Q8_0.gguf +3 -0
- Hypa-Gemma4-E2B-v1.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -35,3 +35,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
Hypa-Gemma4-E2B-v1.mmproj-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
Hypa-Gemma4-E2B-v1.mmproj-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
Hypa-Gemma4-E2B-v1.mmproj-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
Hypa-Gemma4-E2B-v1.mmproj-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Hypa-Gemma4-E2B-v1.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Hypa-Gemma4-E2B-v1.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Hypa-Gemma4-E2B-v1.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Hypa-Gemma4-E2B-v1.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Hypa-Gemma4-E2B-v1.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Hypa-Gemma4-E2B-v1.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Hypa-Gemma4-E2B-v1.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Hypa-Gemma4-E2B-v1.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Hypa-Gemma4-E2B-v1.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Hypa-Gemma4-E2B-v1.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Hypa-Gemma4-E2B-v1.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Hypa-Gemma4-E2B-v1.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Hypa-Gemma4-E2B-v1.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5de02f3cf17c26c3a57d11ed1c9b650cf57600a649ffd653bb0322bc57d260bc
|
| 3 |
+
size 3309813536
|
Hypa-Gemma4-E2B-v1.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e841a8a6269f63b45880de79066f3b39793aa7c40427e0b99dfa5925209c33ee
|
| 3 |
+
size 2989072160
|
Hypa-Gemma4-E2B-v1.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:357e403e711c022b9c9456fd28b0bfb1e765288999eb5957e828e7577adf52d3
|
| 3 |
+
size 3282337568
|
Hypa-Gemma4-E2B-v1.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25d779b1b490f5508eb9c73faaed65740e1dec66da72534ae701bc71000a17c9
|
| 3 |
+
size 3201335072
|
Hypa-Gemma4-E2B-v1.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0de8ea7ac8dc0968e83f3742c1049e1b5d2dbcbd18996c6db2d30bbdd1d06d9
|
| 3 |
+
size 3110201120
|
Hypa-Gemma4-E2B-v1.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b06c41b30b63c319eb6a869c25c7a0f5a6425ce27c684f4ffa25c98c819c4b8b
|
| 3 |
+
size 3427864352
|
Hypa-Gemma4-E2B-v1.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9e299097177dc07d30543f738fc8afa3d22e22c5e890500ba6ae0228d54d34b
|
| 3 |
+
size 3365060384
|
Hypa-Gemma4-E2B-v1.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c21533eb613897042f7a543e37b6bad8dd5f9f35515f4f92ec268cb4e97dc66
|
| 3 |
+
size 3630272288
|
Hypa-Gemma4-E2B-v1.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16b135315f92c424100cdf36243726fc646045ad2e0e175f8a0a040c0d244da2
|
| 3 |
+
size 3595386656
|
Hypa-Gemma4-E2B-v1.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f1b4219f492e0e5d348e07471a31e5a5637d07633e5a9e7aea85bc9f2bb8bb1
|
| 3 |
+
size 3845330720
|
Hypa-Gemma4-E2B-v1.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:123d0aceb6a40343bdab677b032852153ad4a3c2313a58e32cc0f589f842dc61
|
| 3 |
+
size 4967481120
|
Hypa-Gemma4-E2B-v1.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:488aba096dd05c0825703d6f8ae36cea53f481dd18257a7ff6bef42bd13d37f3
|
| 3 |
+
size 9311289120
|