Question Answering
Transformers
GGUF
English
legal
indian-law
BNS
BNSS
BSA
criminal-law
qwen
qwen2.5
qlora
unsloth
domain-adaptation
instruction-tuning
law
india
conversational
Instructions to use mradermacher/Indian-Legal-Qwen2.5-3B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Indian-Legal-Qwen2.5-3B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="mradermacher/Indian-Legal-Qwen2.5-3B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Indian-Legal-Qwen2.5-3B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Indian-Legal-Qwen2.5-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/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Indian-Legal-Qwen2.5-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/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Indian-Legal-Qwen2.5-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/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Indian-Legal-Qwen2.5-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/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Indian-Legal-Qwen2.5-3B-GGUF with Ollama:
ollama run hf.co/mradermacher/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/Indian-Legal-Qwen2.5-3B-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/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/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/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/Indian-Legal-Qwen2.5-3B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Indian-Legal-Qwen2.5-3B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Indian-Legal-Qwen2.5-3B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/Indian-Legal-Qwen2.5-3B-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/Indian-Legal-Qwen2.5-3B-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/Indian-Legal-Qwen2.5-3B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/Indian-Legal-Qwen2.5-3B-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/Indian-Legal-Qwen2.5-3B-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/Indian-Legal-Qwen2.5-3B-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"
uploaded from leia
Browse files- .gitattributes +12 -0
- Indian-Legal-Qwen2.5-3B.IQ4_XS.gguf +3 -0
- Indian-Legal-Qwen2.5-3B.Q2_K.gguf +3 -0
- Indian-Legal-Qwen2.5-3B.Q3_K_L.gguf +3 -0
- Indian-Legal-Qwen2.5-3B.Q3_K_M.gguf +3 -0
- Indian-Legal-Qwen2.5-3B.Q3_K_S.gguf +3 -0
- Indian-Legal-Qwen2.5-3B.Q4_K_M.gguf +3 -0
- Indian-Legal-Qwen2.5-3B.Q4_K_S.gguf +3 -0
- Indian-Legal-Qwen2.5-3B.Q5_K_M.gguf +3 -0
- Indian-Legal-Qwen2.5-3B.Q5_K_S.gguf +3 -0
- Indian-Legal-Qwen2.5-3B.Q6_K.gguf +3 -0
- Indian-Legal-Qwen2.5-3B.Q8_0.gguf +3 -0
- Indian-Legal-Qwen2.5-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 |
+
Indian-Legal-Qwen2.5-3B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Indian-Legal-Qwen2.5-3B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Indian-Legal-Qwen2.5-3B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Indian-Legal-Qwen2.5-3B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Indian-Legal-Qwen2.5-3B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Indian-Legal-Qwen2.5-3B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Indian-Legal-Qwen2.5-3B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Indian-Legal-Qwen2.5-3B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Indian-Legal-Qwen2.5-3B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Indian-Legal-Qwen2.5-3B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Indian-Legal-Qwen2.5-3B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Indian-Legal-Qwen2.5-3B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Indian-Legal-Qwen2.5-3B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7b9b0a9afc8b553dafe9444292734f03b4f99cb5eaa95c2c4542a3601fea34b
|
| 3 |
+
size 1753185600
|
Indian-Legal-Qwen2.5-3B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82af6146f90baadd4ab49eaceeb70987dff4a0560ad6ef867721cd48369cdc6a
|
| 3 |
+
size 1274756416
|
Indian-Legal-Qwen2.5-3B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:582badd6a9d66bf30b1746c52f805330696f29558b3b88096a0742233d4102d3
|
| 3 |
+
size 1707392320
|
Indian-Legal-Qwen2.5-3B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19e53211e1dbc3f30fec7e2491ed20479d7d035c03175438614d08bc1d5506ae
|
| 3 |
+
size 1590476096
|
Indian-Legal-Qwen2.5-3B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e339e78440c6475570dac802941aa8ddacedebdac6970b5685884bbc462194f3
|
| 3 |
+
size 1454357824
|
Indian-Legal-Qwen2.5-3B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8dfcc5f530444c0e2228dfa5ce597872ee98732272d5d5838265326286f738b4
|
| 3 |
+
size 1929903424
|
Indian-Legal-Qwen2.5-3B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1f70ff7858332b8224b753dcdd69b752368660ab9363a52ae8c3e14ed3cb9a6
|
| 3 |
+
size 1834384704
|
Indian-Legal-Qwen2.5-3B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1b4d9a70f4c238954e1662cc5992fb4985824fd7616483e0e9f4141aa57cfc0
|
| 3 |
+
size 2224815424
|
Indian-Legal-Qwen2.5-3B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:365e81fd0db5a542c38c31c589da1e2dadb22fae86655fd26f4e2687a94e98cd
|
| 3 |
+
size 2169666880
|
Indian-Legal-Qwen2.5-3B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef535dea0d8417475ce54166dc86ff9f90b81a15afe6a4d68e5b6bc12e297908
|
| 3 |
+
size 2538159424
|
Indian-Legal-Qwen2.5-3B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:239b7f52fba53b82fdb6efea685a1b97a4998994ac1288ec7fa81a81a6f013f0
|
| 3 |
+
size 3285476672
|
Indian-Legal-Qwen2.5-3B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8539eab865899d2e8c4561823f632c639820d8dad025ea6eec549da25a70d8f
|
| 3 |
+
size 6178317632
|