Instructions to use mradermacher/SciJudge-4B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/SciJudge-4B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/SciJudge-4B-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/SciJudge-4B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/SciJudge-4B-GGUF", filename="SciJudge-4B.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/SciJudge-4B-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/SciJudge-4B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/SciJudge-4B-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/SciJudge-4B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/SciJudge-4B-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/SciJudge-4B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/SciJudge-4B-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/SciJudge-4B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/SciJudge-4B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/SciJudge-4B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/SciJudge-4B-GGUF with Ollama:
ollama run hf.co/mradermacher/SciJudge-4B-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/SciJudge-4B-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/SciJudge-4B-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/SciJudge-4B-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/SciJudge-4B-GGUF to start chatting
- Pi
How to use mradermacher/SciJudge-4B-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/SciJudge-4B-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/SciJudge-4B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/SciJudge-4B-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/SciJudge-4B-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/SciJudge-4B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/SciJudge-4B-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/SciJudge-4B-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/SciJudge-4B-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/SciJudge-4B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/SciJudge-4B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/SciJudge-4B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/SciJudge-4B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.SciJudge-4B-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- SciJudge-4B.IQ4_XS.gguf +3 -0
- SciJudge-4B.Q2_K.gguf +3 -0
- SciJudge-4B.Q3_K_L.gguf +3 -0
- SciJudge-4B.Q3_K_M.gguf +3 -0
- SciJudge-4B.Q3_K_S.gguf +3 -0
- SciJudge-4B.Q4_K_M.gguf +3 -0
- SciJudge-4B.Q4_K_S.gguf +3 -0
- SciJudge-4B.Q5_K_M.gguf +3 -0
- SciJudge-4B.Q5_K_S.gguf +3 -0
- SciJudge-4B.Q6_K.gguf +3 -0
- SciJudge-4B.Q8_0.gguf +3 -0
- SciJudge-4B.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 |
+
SciJudge-4B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
SciJudge-4B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
SciJudge-4B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
SciJudge-4B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
SciJudge-4B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
SciJudge-4B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
SciJudge-4B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
SciJudge-4B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
SciJudge-4B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
SciJudge-4B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
SciJudge-4B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
SciJudge-4B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
SciJudge-4B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:803e14223ec39f84629d7bf35d5bf3f4724b54640dbf383b2d5b11679c04af8d
|
| 3 |
+
size 2492948320
|
SciJudge-4B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6166082eb5a9cde5fe623f339fd670f0ce63cb141bf84de5b772b488c05d3b3a
|
| 3 |
+
size 1797124960
|
SciJudge-4B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b153fb2f81ab1533c43e7107b9350c1cbe9a86cb95334b385e72e43c71a81029
|
| 3 |
+
size 2406914400
|
SciJudge-4B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:efa8c2f977c6c661e8884a716a2602afc80cd8700597b67fc2432302e128eaa7
|
| 3 |
+
size 2242746720
|
SciJudge-4B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5089fec3e258b342f96f62f1942eb8a20206fa2f81460234787865115685ca6e
|
| 3 |
+
size 2054125920
|
SciJudge-4B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea433d6c70739602339e1f4a085600f4102a544587373f62f925225400b60f15
|
| 3 |
+
size 2716067680
|
SciJudge-4B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e189ffe548d65a2fcfc5690d5c1b92ef96774526fc406fe3d1fc69626a1efb90
|
| 3 |
+
size 2602096480
|
SciJudge-4B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5b33b3a40d241d4c9ca2a7f49f1de27e3478a6849dec4e320f3bc294e19e753
|
| 3 |
+
size 3156920160
|
SciJudge-4B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d04387be75a54791015a91042dbac7ffef4e15b2c0e134d1481467877fc74455
|
| 3 |
+
size 3091117920
|
SciJudge-4B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d00badb099564c205791394c714eebf0b689a1c7911f44b60292ad851871ccb3
|
| 3 |
+
size 3625325920
|
SciJudge-4B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4f12a2424d375ae286ff48a3942ca5b05d59f6cdd47d07bcedd11b01a1a5b3e
|
| 3 |
+
size 4693670240
|
SciJudge-4B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55458c27f3b6d0f8c31e3a23eb22b2bc47812e33f3677f8e68a9e7d46ebf0a60
|
| 3 |
+
size 8829196640
|