Instructions to use mradermacher/OpenGrok-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/OpenGrok-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/OpenGrok-GGUF", dtype="auto") - Grok
How to use mradermacher/OpenGrok-GGUF with Grok:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- llama-cpp-python
How to use mradermacher/OpenGrok-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/OpenGrok-GGUF", filename="OpenGrok.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/OpenGrok-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/OpenGrok-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/OpenGrok-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/OpenGrok-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/OpenGrok-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/OpenGrok-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/OpenGrok-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/OpenGrok-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/OpenGrok-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/OpenGrok-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/OpenGrok-GGUF with Ollama:
ollama run hf.co/mradermacher/OpenGrok-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/OpenGrok-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/OpenGrok-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/OpenGrok-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/OpenGrok-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/OpenGrok-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/OpenGrok-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/OpenGrok-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/OpenGrok-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.OpenGrok-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from rich1
Browse files- .gitattributes +12 -0
- OpenGrok.IQ4_XS.gguf +3 -0
- OpenGrok.Q2_K.gguf +3 -0
- OpenGrok.Q3_K_L.gguf +3 -0
- OpenGrok.Q3_K_M.gguf +3 -0
- OpenGrok.Q3_K_S.gguf +3 -0
- OpenGrok.Q4_K_M.gguf +3 -0
- OpenGrok.Q4_K_S.gguf +3 -0
- OpenGrok.Q5_K_M.gguf +3 -0
- OpenGrok.Q5_K_S.gguf +3 -0
- OpenGrok.Q6_K.gguf +3 -0
- OpenGrok.Q8_0.gguf +3 -0
- OpenGrok.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 |
+
OpenGrok.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
OpenGrok.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
OpenGrok.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
OpenGrok.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
OpenGrok.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
OpenGrok.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
OpenGrok.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
OpenGrok.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
OpenGrok.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
OpenGrok.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
OpenGrok.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
OpenGrok.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
OpenGrok.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db5ae3ed2a61d3cde1e676ee73f78429cb889f82aafec507c3dec1411f27583d
|
| 3 |
+
size 2075581088
|
OpenGrok.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba667efd71d6eb6ac90c23eb039c4dcb2f2fe8511ea4ec4cc800d80af5c28ad9
|
| 3 |
+
size 1416203936
|
OpenGrok.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:553698fda759457785c8cecc4ad2d260ae91ca94fed99d5f2ae5eff268d17a03
|
| 3 |
+
size 2087597216
|
OpenGrok.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9defffad4ebd572482024ef1a2ea8222f6e2fc9e920dc56b0a8bba784fa0199
|
| 3 |
+
size 1955476640
|
OpenGrok.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4ff10d054a728ea40e36d1ce441d74511b25a1d3da76e227ccad2cfb6b271fc
|
| 3 |
+
size 1681798304
|
OpenGrok.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75ee8231230d258a96f6724f081df3563d4f402825d3f753f0ebeddc1be35e46
|
| 3 |
+
size 2393232032
|
OpenGrok.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c213991a1c3dd5e7092db2f979b1e3bf6a2bf3e60cc38c0cc23f2b72a4db2f4b
|
| 3 |
+
size 2188759712
|
OpenGrok.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:342268664424dc089bbace2d50aaa10c17c415843b76ae8d8915cdd0057e0ffc
|
| 3 |
+
size 2815275680
|
OpenGrok.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79f1bd00b0322f40d8f15739e77481b003b4c5af060640674521ed55b2e2feed
|
| 3 |
+
size 2641474208
|
OpenGrok.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a55d7c79092417def4e1c4dbe2f3bb4560674bb3cbae242839f8c61339443bc8
|
| 3 |
+
size 3135852704
|
OpenGrok.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15f1611a169cab38c7a799f2eb6657baadb701a9e1edf1faccbd6fa753df1d89
|
| 3 |
+
size 4061222048
|
OpenGrok.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a17ce5fa56340c662d7fb34fa17372a21745c6d59d5bf05a5deb7ac2073da9d9
|
| 3 |
+
size 7643296928
|