Text Generation
GGUF
legal
hearsay
classification
grpo
reinforcement-learning
legalbench
lora
Eval Results (legacy)
conversational
Instructions to use Flexan/DoodDood-TOMAGPT-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Flexan/DoodDood-TOMAGPT-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 Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Flexan/DoodDood-TOMAGPT-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 Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Flexan/DoodDood-TOMAGPT-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 Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Flexan/DoodDood-TOMAGPT-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 Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Flexan/DoodDood-TOMAGPT-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Flexan/DoodDood-TOMAGPT-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Flexan/DoodDood-TOMAGPT-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M
- Ollama
How to use Flexan/DoodDood-TOMAGPT-GGUF with Ollama:
ollama run hf.co/Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use Flexan/DoodDood-TOMAGPT-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Flexan/DoodDood-TOMAGPT-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": "Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Flexan/DoodDood-TOMAGPT-GGUF with Docker Model Runner:
docker model run hf.co/Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M
- Lemonade
How to use Flexan/DoodDood-TOMAGPT-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.DoodDood-TOMAGPT-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Flexan/DoodDood-TOMAGPT-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 Flexan/DoodDood-TOMAGPT-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 Flexan/DoodDood-TOMAGPT-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Flexan/DoodDood-TOMAGPT-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Flexan/DoodDood-TOMAGPT-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 "Flexan/DoodDood-TOMAGPT-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"
Upload folder using huggingface_hub
Browse files- .gitattributes +10 -0
- README.md +10 -3
- TOMAGPT.IQ3_M.gguf +3 -0
- TOMAGPT.IQ3_S.gguf +3 -0
- TOMAGPT.IQ4_XS.gguf +3 -0
- TOMAGPT.Q3_K_L.gguf +3 -0
- TOMAGPT.Q3_K_M.gguf +3 -0
- TOMAGPT.Q3_K_S.gguf +3 -0
- TOMAGPT.Q4_K_S.gguf +3 -0
- TOMAGPT.Q5_K_M.gguf +3 -0
- TOMAGPT.Q5_K_S.gguf +3 -0
- TOMAGPT.Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -37,3 +37,13 @@ TOMAGPT.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 37 |
TOMAGPT.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
TOMAGPT.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
TOMAGPT.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
TOMAGPT.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
TOMAGPT.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
TOMAGPT.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
TOMAGPT.IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
TOMAGPT.IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
TOMAGPT.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
TOMAGPT.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
TOMAGPT.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
TOMAGPT.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
TOMAGPT.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
TOMAGPT.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
TOMAGPT.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
TOMAGPT.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -31,16 +31,23 @@ model-index:
|
|
| 31 |
# GGUF Files for TOMAGPT
|
| 32 |
|
| 33 |
These are the GGUF files for [DoodDood/TOMAGPT](https://huggingface.co/DoodDood/TOMAGPT).
|
| 34 |
-
|
| 35 |
-
> [!NOTE]
|
| 36 |
-
> **Note:** this model has only been quantized to **Q2_K**, **Q4_K_M**, and **Q8_0**. Other quantizations may become available later.
|
| 37 |
|
| 38 |
## Downloads
|
| 39 |
|
| 40 |
| GGUF Link | Quantization | Description |
|
| 41 |
| ---- | ----- | ----------- |
|
| 42 |
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q2_K.gguf) | Q2_K | Lowest quality |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q4_K_M.gguf) | Q4_K_M | **Recommended:** Perfect mix of speed and performance |
|
|
|
|
|
|
|
|
|
|
| 44 |
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q8_0.gguf) | Q8_0 | Best quality |
|
| 45 |
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.f16.gguf) | f16 | Full precision, don't bother; use a quant |
|
| 46 |
|
|
|
|
| 31 |
# GGUF Files for TOMAGPT
|
| 32 |
|
| 33 |
These are the GGUF files for [DoodDood/TOMAGPT](https://huggingface.co/DoodDood/TOMAGPT).
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
## Downloads
|
| 36 |
|
| 37 |
| GGUF Link | Quantization | Description |
|
| 38 |
| ---- | ----- | ----------- |
|
| 39 |
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q2_K.gguf) | Q2_K | Lowest quality |
|
| 40 |
+
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q3_K_S.gguf) | Q3_K_S | |
|
| 41 |
+
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.IQ3_S.gguf) | IQ3_S | Integer quant, preferable over Q3_K_S |
|
| 42 |
+
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.IQ3_M.gguf) | IQ3_M | Integer quant |
|
| 43 |
+
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q3_K_M.gguf) | Q3_K_M | |
|
| 44 |
+
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q3_K_L.gguf) | Q3_K_L | |
|
| 45 |
+
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.IQ4_XS.gguf) | IQ4_XS | Integer quant |
|
| 46 |
+
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q4_K_S.gguf) | Q4_K_S | Fast with good performance |
|
| 47 |
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q4_K_M.gguf) | Q4_K_M | **Recommended:** Perfect mix of speed and performance |
|
| 48 |
+
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q5_K_S.gguf) | Q5_K_S | |
|
| 49 |
+
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q5_K_M.gguf) | Q5_K_M | |
|
| 50 |
+
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q6_K.gguf) | Q6_K | Very good quality |
|
| 51 |
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.Q8_0.gguf) | Q8_0 | Best quality |
|
| 52 |
| [Download](https://huggingface.co/Flexan/DoodDood-TOMAGPT-GGUF/resolve/main/TOMAGPT.f16.gguf) | f16 | Full precision, don't bother; use a quant |
|
| 53 |
|
TOMAGPT.IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ecfc2bd2b750ed79ef21d044875c79f87ab5ffd5300d09489cbb548d5bf2dcea
|
| 3 |
+
size 1962894912
|
TOMAGPT.IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c126f00cdaafe634f0ce50ded77dd1a0d0521cc257ca9e6b269cf0412ed79a03
|
| 3 |
+
size 1899529792
|
TOMAGPT.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1792ea57d0135390cbcb5c5410c85ec4eb5e2aa8207e7cf9345bedfae78a637f
|
| 3 |
+
size 2286315072
|
TOMAGPT.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00aed792a00fb4f3c71d04c0ccd1bb366bd134d8b5e24e9958d55319f8bab6cc
|
| 3 |
+
size 2239784512
|
TOMAGPT.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58c2c03e96662e4dc835139a94fdf86efb86302703bf3487bbf2343384f54e9a
|
| 3 |
+
size 2075616832
|
TOMAGPT.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9c5acd646d51fdca444bd113d66d92eab1092390e9e1f39fcb5b06dc190034f
|
| 3 |
+
size 1886996032
|
TOMAGPT.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c84df91c282e639c289d8d970297aabdadac4869fefbbf10170f8d3a0b10683
|
| 3 |
+
size 2383308352
|
TOMAGPT.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a346bee109b482d84851eacb608c2107c60a505d1817f6a408e2f172cc5a4da
|
| 3 |
+
size 2889512512
|
TOMAGPT.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2922e6c9daa99d7bd71777ba4342b2cb53ce6cc3b89a4628aaead5e307379c4
|
| 3 |
+
size 2823710272
|
TOMAGPT.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5938c85b6286037495d025bc5b1654ab9ab65db3448759d25318521b2cb194b9
|
| 3 |
+
size 3306260032
|