Instructions to use tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF", filename="OpenThoughts3_1.5B-Q2_K.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 tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-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 tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
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 tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
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 tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF with Ollama:
ollama run hf.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-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 tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-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 tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF to start chatting
- Pi
How to use tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
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": "tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-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 tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
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 tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
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 "tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K" \ --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 tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
- Lemonade
How to use tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF:Q2_K
Run and chat with the model
lemonade run user.mlfoundations-dev_OpenThoughts3_1.5B-GGUF-Q2_K
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- OpenThoughts3_1.5B-Q2_K.gguf +3 -0
- OpenThoughts3_1.5B-Q3_K_L.gguf +3 -0
- OpenThoughts3_1.5B-Q3_K_M.gguf +3 -0
- OpenThoughts3_1.5B-Q3_K_S.gguf +3 -0
- OpenThoughts3_1.5B-Q4_0.gguf +3 -0
- OpenThoughts3_1.5B-Q4_K_M.gguf +3 -0
- OpenThoughts3_1.5B-Q4_K_S.gguf +3 -0
- OpenThoughts3_1.5B-Q5_0.gguf +3 -0
- OpenThoughts3_1.5B-Q5_K_M.gguf +3 -0
- OpenThoughts3_1.5B-Q5_K_S.gguf +3 -0
- OpenThoughts3_1.5B-Q6_K.gguf +3 -0
- OpenThoughts3_1.5B-Q8_0.gguf +3 -0
- README.md +155 -0
|
@@ -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 |
+
OpenThoughts3_1.5B-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
OpenThoughts3_1.5B-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
OpenThoughts3_1.5B-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
OpenThoughts3_1.5B-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
OpenThoughts3_1.5B-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
OpenThoughts3_1.5B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
OpenThoughts3_1.5B-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
OpenThoughts3_1.5B-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
OpenThoughts3_1.5B-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
OpenThoughts3_1.5B-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
OpenThoughts3_1.5B-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
OpenThoughts3_1.5B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ce6f7c3403053acdcbd5dcb8412a5568780f7f2962a337a7c76772024f7d9a6
|
| 3 |
+
size 676304704
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:089c41616038e1667b45513d328acce63ded8a9c75a3826bfef2bd51ba41c6c2
|
| 3 |
+
size 880162624
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04ca63044985107fd0e9795852e7ade98f713b64029911c267a6be212aac8c45
|
| 3 |
+
size 824178496
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:862337263d1767b9b56bde8c0d2d0082b46af30de77aa61d15b661e7ed6b2b89
|
| 3 |
+
size 760944448
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b4cc4be53b33822b1d8ae25e6789ef7b0a842c673c6bf2f59920cebd20f5cfc
|
| 3 |
+
size 934954816
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cac4426cb2be4962bb343b9ed2df78715a8e837ff31e8073fd594be67a265a4f
|
| 3 |
+
size 986048320
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0dd08ccfbc56b1961d895a77317fc842d905e41e0bd98252780289ae51880068
|
| 3 |
+
size 940312384
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5372abe5971b63b884a84b488572b2cd70826de4314110202befa8a3969d8c32
|
| 3 |
+
size 1098729280
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8cf66f05d3b4a6fe1e15910bd3a5402e355143f8af7b3933627fb1b557819581
|
| 3 |
+
size 1125050176
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eedbd25ce7e7a04024e377cded10e2c926555652f9b2d40450da6a2fd52a711b
|
| 3 |
+
size 1098729280
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c077b73bcd352f5834bc2f4344fe06a107adb73ba3aa74b8e7c4a44e12af836
|
| 3 |
+
size 1272739648
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ee61e9ed4f3f6c71631c5ccd0c5f75b7ae43a04aa4808553c969f297ba71ccb
|
| 3 |
+
size 1646572864
|
|
@@ -0,0 +1,155 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
license: other
|
| 4 |
+
base_model: mlfoundations-dev/OpenThoughts3_1.5B
|
| 5 |
+
tags:
|
| 6 |
+
- llama-factory
|
| 7 |
+
- full
|
| 8 |
+
- generated_from_trainer
|
| 9 |
+
- TensorBlock
|
| 10 |
+
- GGUF
|
| 11 |
+
model-index:
|
| 12 |
+
- name: OpenThoughts3_1.5B
|
| 13 |
+
results: []
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
| 17 |
+
<img src="https://i.imgur.com/jC7kdl8.jpeg" alt="TensorBlock" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
| 18 |
+
</div>
|
| 19 |
+
|
| 20 |
+
[](https://tensorblock.co)
|
| 21 |
+
[](https://twitter.com/tensorblock_aoi)
|
| 22 |
+
[](https://discord.gg/Ej5NmeHFf2)
|
| 23 |
+
[](https://github.com/TensorBlock)
|
| 24 |
+
[](https://t.me/TensorBlock)
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
## mlfoundations-dev/OpenThoughts3_1.5B - GGUF
|
| 28 |
+
|
| 29 |
+
<div style="text-align: left; margin: 20px 0;">
|
| 30 |
+
<a href="https://discord.com/invite/Ej5NmeHFf2" style="display: inline-block; padding: 10px 20px; background-color: #5865F2; color: white; text-decoration: none; border-radius: 5px; font-weight: bold;">
|
| 31 |
+
Join our Discord to learn more about what we're building β
|
| 32 |
+
</a>
|
| 33 |
+
</div>
|
| 34 |
+
|
| 35 |
+
This repo contains GGUF format model files for [mlfoundations-dev/OpenThoughts3_1.5B](https://huggingface.co/mlfoundations-dev/OpenThoughts3_1.5B).
|
| 36 |
+
|
| 37 |
+
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b5753](https://github.com/ggml-org/llama.cpp/commit/73e53dc834c0a2336cd104473af6897197b96277).
|
| 38 |
+
|
| 39 |
+
## Our projects
|
| 40 |
+
<table border="1" cellspacing="0" cellpadding="10">
|
| 41 |
+
<tr>
|
| 42 |
+
<th colspan="2" style="font-size: 25px;">Forge</th>
|
| 43 |
+
</tr>
|
| 44 |
+
<tr>
|
| 45 |
+
<th colspan="2">
|
| 46 |
+
<img src="https://imgur.com/faI5UKh.jpeg" alt="Forge Project" width="900"/>
|
| 47 |
+
</th>
|
| 48 |
+
</tr>
|
| 49 |
+
<tr>
|
| 50 |
+
<th colspan="2">An OpenAI-compatible multi-provider routing layer.</th>
|
| 51 |
+
</tr>
|
| 52 |
+
<tr>
|
| 53 |
+
<th colspan="2">
|
| 54 |
+
<a href="https://github.com/TensorBlock/forge" target="_blank" style="
|
| 55 |
+
display: inline-block;
|
| 56 |
+
padding: 8px 16px;
|
| 57 |
+
background-color: #FF7F50;
|
| 58 |
+
color: white;
|
| 59 |
+
text-decoration: none;
|
| 60 |
+
border-radius: 6px;
|
| 61 |
+
font-weight: bold;
|
| 62 |
+
font-family: sans-serif;
|
| 63 |
+
">π Try it now! π</a>
|
| 64 |
+
</th>
|
| 65 |
+
</tr>
|
| 66 |
+
|
| 67 |
+
<tr>
|
| 68 |
+
<th style="font-size: 25px;">Awesome MCP Servers</th>
|
| 69 |
+
<th style="font-size: 25px;">TensorBlock Studio</th>
|
| 70 |
+
</tr>
|
| 71 |
+
<tr>
|
| 72 |
+
<th><img src="https://imgur.com/2Xov7B7.jpeg" alt="MCP Servers" width="450"/></th>
|
| 73 |
+
<th><img src="https://imgur.com/pJcmF5u.jpeg" alt="Studio" width="450"/></th>
|
| 74 |
+
</tr>
|
| 75 |
+
<tr>
|
| 76 |
+
<th>A comprehensive collection of Model Context Protocol (MCP) servers.</th>
|
| 77 |
+
<th>A lightweight, open, and extensible multi-LLM interaction studio.</th>
|
| 78 |
+
</tr>
|
| 79 |
+
<tr>
|
| 80 |
+
<th>
|
| 81 |
+
<a href="https://github.com/TensorBlock/awesome-mcp-servers" target="_blank" style="
|
| 82 |
+
display: inline-block;
|
| 83 |
+
padding: 8px 16px;
|
| 84 |
+
background-color: #FF7F50;
|
| 85 |
+
color: white;
|
| 86 |
+
text-decoration: none;
|
| 87 |
+
border-radius: 6px;
|
| 88 |
+
font-weight: bold;
|
| 89 |
+
font-family: sans-serif;
|
| 90 |
+
">π See what we built π</a>
|
| 91 |
+
</th>
|
| 92 |
+
<th>
|
| 93 |
+
<a href="https://github.com/TensorBlock/TensorBlock-Studio" target="_blank" style="
|
| 94 |
+
display: inline-block;
|
| 95 |
+
padding: 8px 16px;
|
| 96 |
+
background-color: #FF7F50;
|
| 97 |
+
color: white;
|
| 98 |
+
text-decoration: none;
|
| 99 |
+
border-radius: 6px;
|
| 100 |
+
font-weight: bold;
|
| 101 |
+
font-family: sans-serif;
|
| 102 |
+
">π See what we built π</a>
|
| 103 |
+
</th>
|
| 104 |
+
</tr>
|
| 105 |
+
</table>
|
| 106 |
+
|
| 107 |
+
## Prompt template
|
| 108 |
+
|
| 109 |
+
```
|
| 110 |
+
<|im_start|>system
|
| 111 |
+
{system_prompt}<|im_end|>
|
| 112 |
+
<|im_start|>user
|
| 113 |
+
{prompt}<|im_end|>
|
| 114 |
+
<|im_start|>assistant
|
| 115 |
+
```
|
| 116 |
+
|
| 117 |
+
## Model file specification
|
| 118 |
+
|
| 119 |
+
| Filename | Quant type | File Size | Description |
|
| 120 |
+
| -------- | ---------- | --------- | ----------- |
|
| 121 |
+
| [OpenThoughts3_1.5B-Q2_K.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q2_K.gguf) | Q2_K | 0.676 GB | smallest, significant quality loss - not recommended for most purposes |
|
| 122 |
+
| [OpenThoughts3_1.5B-Q3_K_S.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q3_K_S.gguf) | Q3_K_S | 0.761 GB | very small, high quality loss |
|
| 123 |
+
| [OpenThoughts3_1.5B-Q3_K_M.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q3_K_M.gguf) | Q3_K_M | 0.824 GB | very small, high quality loss |
|
| 124 |
+
| [OpenThoughts3_1.5B-Q3_K_L.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q3_K_L.gguf) | Q3_K_L | 0.880 GB | small, substantial quality loss |
|
| 125 |
+
| [OpenThoughts3_1.5B-Q4_0.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q4_0.gguf) | Q4_0 | 0.935 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
|
| 126 |
+
| [OpenThoughts3_1.5B-Q4_K_S.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q4_K_S.gguf) | Q4_K_S | 0.940 GB | small, greater quality loss |
|
| 127 |
+
| [OpenThoughts3_1.5B-Q4_K_M.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q4_K_M.gguf) | Q4_K_M | 0.986 GB | medium, balanced quality - recommended |
|
| 128 |
+
| [OpenThoughts3_1.5B-Q5_0.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q5_0.gguf) | Q5_0 | 1.099 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
|
| 129 |
+
| [OpenThoughts3_1.5B-Q5_K_S.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q5_K_S.gguf) | Q5_K_S | 1.099 GB | large, low quality loss - recommended |
|
| 130 |
+
| [OpenThoughts3_1.5B-Q5_K_M.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q5_K_M.gguf) | Q5_K_M | 1.125 GB | large, very low quality loss - recommended |
|
| 131 |
+
| [OpenThoughts3_1.5B-Q6_K.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q6_K.gguf) | Q6_K | 1.273 GB | very large, extremely low quality loss |
|
| 132 |
+
| [OpenThoughts3_1.5B-Q8_0.gguf](https://huggingface.co/tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF/blob/main/OpenThoughts3_1.5B-Q8_0.gguf) | Q8_0 | 1.647 GB | very large, extremely low quality loss - not recommended |
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
## Downloading instruction
|
| 136 |
+
|
| 137 |
+
### Command line
|
| 138 |
+
|
| 139 |
+
Firstly, install Huggingface Client
|
| 140 |
+
|
| 141 |
+
```shell
|
| 142 |
+
pip install -U "huggingface_hub[cli]"
|
| 143 |
+
```
|
| 144 |
+
|
| 145 |
+
Then, downoad the individual model file the a local directory
|
| 146 |
+
|
| 147 |
+
```shell
|
| 148 |
+
huggingface-cli download tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF --include "OpenThoughts3_1.5B-Q2_K.gguf" --local-dir MY_LOCAL_DIR
|
| 149 |
+
```
|
| 150 |
+
|
| 151 |
+
If you wanna download multiple model files with a pattern (e.g., `*Q4_K*gguf`), you can try:
|
| 152 |
+
|
| 153 |
+
```shell
|
| 154 |
+
huggingface-cli download tensorblock/mlfoundations-dev_OpenThoughts3_1.5B-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
|
| 155 |
+
```
|