Instructions to use mradermacher/Dhanishtha-2.0-preview-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Dhanishtha-2.0-preview-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Dhanishtha-2.0-preview-i1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Dhanishtha-2.0-preview-i1-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/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Dhanishtha-2.0-preview-i1-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/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Dhanishtha-2.0-preview-i1-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/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Dhanishtha-2.0-preview-i1-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/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Dhanishtha-2.0-preview-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/Dhanishtha-2.0-preview-i1-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/Dhanishtha-2.0-preview-i1-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/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/Dhanishtha-2.0-preview-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Dhanishtha-2.0-preview-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Dhanishtha-2.0-preview-i1-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/Dhanishtha-2.0-preview-i1-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/Dhanishtha-2.0-preview-i1-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/Dhanishtha-2.0-preview-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/Dhanishtha-2.0-preview-i1-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/Dhanishtha-2.0-preview-i1-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/Dhanishtha-2.0-preview-i1-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"
auto-patch README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
<!-- ### quantize_version: 2 -->
|
| 2 |
<!-- ### output_tensor_quantised: 1 -->
|
| 3 |
<!-- ### convert_type: hf -->
|
|
@@ -7,3 +70,67 @@
|
|
| 7 |
<!-- ### quants_skip: -->
|
| 8 |
<!-- ### skip_mmproj: -->
|
| 9 |
weighted/imatrix quants of https://huggingface.co/HelpingAI/Dhanishtha-2.0-preview
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: HelpingAI/Dhanishtha-2.0-preview
|
| 3 |
+
datasets:
|
| 4 |
+
- Abhaykoul/Dhanishtha-R1
|
| 5 |
+
- open-thoughts/OpenThoughts-114k
|
| 6 |
+
- Abhaykoul/Dhanishtha-2.0-SUPERTHINKER
|
| 7 |
+
- Abhaykoul/Dhanishtha-2.0
|
| 8 |
+
language:
|
| 9 |
+
- en
|
| 10 |
+
- hi
|
| 11 |
+
- zh
|
| 12 |
+
- es
|
| 13 |
+
- fr
|
| 14 |
+
- de
|
| 15 |
+
- ja
|
| 16 |
+
- ko
|
| 17 |
+
- ar
|
| 18 |
+
- pt
|
| 19 |
+
- ru
|
| 20 |
+
- it
|
| 21 |
+
- nl
|
| 22 |
+
- tr
|
| 23 |
+
- pl
|
| 24 |
+
- sv
|
| 25 |
+
- da
|
| 26 |
+
- no
|
| 27 |
+
- fi
|
| 28 |
+
- he
|
| 29 |
+
- th
|
| 30 |
+
- vi
|
| 31 |
+
- id
|
| 32 |
+
- ms
|
| 33 |
+
- tl
|
| 34 |
+
- sw
|
| 35 |
+
- yo
|
| 36 |
+
- zu
|
| 37 |
+
- am
|
| 38 |
+
- bn
|
| 39 |
+
- gu
|
| 40 |
+
- kn
|
| 41 |
+
- ml
|
| 42 |
+
- mr
|
| 43 |
+
- ne
|
| 44 |
+
- or
|
| 45 |
+
- pa
|
| 46 |
+
- ta
|
| 47 |
+
- te
|
| 48 |
+
- ur
|
| 49 |
+
- multilingual
|
| 50 |
+
library_name: transformers
|
| 51 |
+
license: apache-2.0
|
| 52 |
+
mradermacher:
|
| 53 |
+
readme_rev: 1
|
| 54 |
+
quantized_by: mradermacher
|
| 55 |
+
tags:
|
| 56 |
+
- reasoning
|
| 57 |
+
- intermediate-thinking
|
| 58 |
+
- transformers
|
| 59 |
+
- conversational
|
| 60 |
+
- bilingual
|
| 61 |
+
---
|
| 62 |
+
## About
|
| 63 |
+
|
| 64 |
<!-- ### quantize_version: 2 -->
|
| 65 |
<!-- ### output_tensor_quantised: 1 -->
|
| 66 |
<!-- ### convert_type: hf -->
|
|
|
|
| 70 |
<!-- ### quants_skip: -->
|
| 71 |
<!-- ### skip_mmproj: -->
|
| 72 |
weighted/imatrix quants of https://huggingface.co/HelpingAI/Dhanishtha-2.0-preview
|
| 73 |
+
|
| 74 |
+
<!-- provided-files -->
|
| 75 |
+
|
| 76 |
+
***For a convenient overview and download list, visit our [model page for this model](https://hf.tst.eu/model#Dhanishtha-2.0-preview-i1-GGUF).***
|
| 77 |
+
|
| 78 |
+
static quants are available at https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-GGUF
|
| 79 |
+
## Usage
|
| 80 |
+
|
| 81 |
+
If you are unsure how to use GGUF files, refer to one of [TheBloke's
|
| 82 |
+
READMEs](https://huggingface.co/TheBloke/KafkaLM-70B-German-V0.1-GGUF) for
|
| 83 |
+
more details, including on how to concatenate multi-part files.
|
| 84 |
+
|
| 85 |
+
## Provided Quants
|
| 86 |
+
|
| 87 |
+
(sorted by size, not necessarily quality. IQ-quants are often preferable over similar sized non-IQ quants)
|
| 88 |
+
|
| 89 |
+
| Link | Type | Size/GB | Notes |
|
| 90 |
+
|:-----|:-----|--------:|:------|
|
| 91 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.imatrix.gguf) | imatrix | 0.1 | imatrix file (for creating your own qwuants) |
|
| 92 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ1_S.gguf) | i1-IQ1_S | 3.7 | for the desperate |
|
| 93 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ1_M.gguf) | i1-IQ1_M | 3.9 | mostly desperate |
|
| 94 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ2_XXS.gguf) | i1-IQ2_XXS | 4.4 | |
|
| 95 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ2_XS.gguf) | i1-IQ2_XS | 4.8 | |
|
| 96 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ2_S.gguf) | i1-IQ2_S | 5.1 | |
|
| 97 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ2_M.gguf) | i1-IQ2_M | 5.4 | |
|
| 98 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q2_K_S.gguf) | i1-Q2_K_S | 5.5 | very low quality |
|
| 99 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q2_K.gguf) | i1-Q2_K | 5.9 | IQ3_XXS probably better |
|
| 100 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ3_XXS.gguf) | i1-IQ3_XXS | 6.0 | lower quality |
|
| 101 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ3_XS.gguf) | i1-IQ3_XS | 6.5 | |
|
| 102 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q3_K_S.gguf) | i1-Q3_K_S | 6.8 | IQ3_XS probably better |
|
| 103 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ3_S.gguf) | i1-IQ3_S | 6.8 | beats Q3_K* |
|
| 104 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ3_M.gguf) | i1-IQ3_M | 7.0 | |
|
| 105 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q3_K_M.gguf) | i1-Q3_K_M | 7.4 | IQ3_S probably better |
|
| 106 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q3_K_L.gguf) | i1-Q3_K_L | 8.0 | IQ3_M probably better |
|
| 107 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ4_XS.gguf) | i1-IQ4_XS | 8.2 | |
|
| 108 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-IQ4_NL.gguf) | i1-IQ4_NL | 8.6 | prefer IQ4_XS |
|
| 109 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q4_0.gguf) | i1-Q4_0 | 8.6 | fast, low quality |
|
| 110 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q4_K_S.gguf) | i1-Q4_K_S | 8.7 | optimal size/speed/quality |
|
| 111 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q4_K_M.gguf) | i1-Q4_K_M | 9.1 | fast, recommended |
|
| 112 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q4_1.gguf) | i1-Q4_1 | 9.5 | |
|
| 113 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q5_K_S.gguf) | i1-Q5_K_S | 10.4 | |
|
| 114 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q5_K_M.gguf) | i1-Q5_K_M | 10.6 | |
|
| 115 |
+
| [GGUF](https://huggingface.co/mradermacher/Dhanishtha-2.0-preview-i1-GGUF/resolve/main/Dhanishtha-2.0-preview.i1-Q6_K.gguf) | i1-Q6_K | 12.2 | practically like static Q6_K |
|
| 116 |
+
|
| 117 |
+
Here is a handy graph by ikawrakow comparing some lower-quality quant
|
| 118 |
+
types (lower is better):
|
| 119 |
+
|
| 120 |
+

|
| 121 |
+
|
| 122 |
+
And here are Artefact2's thoughts on the matter:
|
| 123 |
+
https://gist.github.com/Artefact2/b5f810600771265fc1e39442288e8ec9
|
| 124 |
+
|
| 125 |
+
## FAQ / Model Request
|
| 126 |
+
|
| 127 |
+
See https://huggingface.co/mradermacher/model_requests for some answers to
|
| 128 |
+
questions you might have and/or if you want some other model quantized.
|
| 129 |
+
|
| 130 |
+
## Thanks
|
| 131 |
+
|
| 132 |
+
I thank my company, [nethype GmbH](https://www.nethype.de/), for letting
|
| 133 |
+
me use its servers and providing upgrades to my workstation to enable
|
| 134 |
+
this work in my free time. Additional thanks to [@nicoboss](https://huggingface.co/nicoboss) for giving me access to his private supercomputer, enabling me to provide many more imatrix quants, at much higher quality, than I would otherwise be able to.
|
| 135 |
+
|
| 136 |
+
<!-- end -->
|