SUPEROXIDES/HIVEMIND_PREVIEW_32B_-_GGUF overview
GGUF QUANTIZATIONS FOR HIVELABSAI'S "hivemind 32b preview" https://huggingface.co/HiveLabsAI/hivemind 32b preview These quantizations were made with llama.cpp …
Runs locally from ~8.40 GB disk (12 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| HivemindPreview-32B-BF16.gguf | GGUF | BF16 | 61.03 GB | Download |
| HivemindPreview-32B-F16.gguf | GGUF | F16 | 61.03 GB | Download |
| HivemindPreview-32B-IQ2_S.gguf | GGUF | IQ2_S | 9.79 GB | Download |
| HivemindPreview-32B-IQ2_XS.gguf | GGUF | IQ2_XS | 9.27 GB | Download |
| HivemindPreview-32B-IQ2_XXS.gguf | GGUF | IQ2_XXS | 8.40 GB | Download |
| HivemindPreview-32B-IQ3_S.gguf | GGUF | IQ3_S | 13.44 GB | Download |
| HivemindPreview-32B-IQ3_XS.gguf | GGUF | IQ3_XS | 12.76 GB | Download |
| HivemindPreview-32B-IQ3_XXS.gguf | GGUF | IQ3_XXS | 11.94 GB | Download |
| HivemindPreview-32B-IQ4_XS.gguf | GGUF | IQ4_XS | 16.48 GB | Download |
| HivemindPreview-32B-Q2_K.gguf | GGUF | Q2_K | 11.50 GB | Download |
| HivemindPreview-32B-Q2_K_S.gguf | GGUF | Q2_K_S | 10.68 GB | Download |
| HivemindPreview-32B-Q3_K_M.gguf | GGUF | Q3_K_M | 14.87 GB | Download |
| HivemindPreview-32B-Q3_K_S.gguf | GGUF | Q3_K_S | 13.40 GB | Download |
| HivemindPreview-32B-Q4_K_M.gguf | GGUF | Q4_K_M | 18.40 GB | Download |
| HivemindPreview-32B-Q4_K_S.gguf | GGUF | Q4_K_S | 17.48 GB | Download |
| HivemindPreview-32B-Q5_K_M.gguf | GGUF | Q5_K_M | 21.62 GB | Download |
| HivemindPreview-32B-Q5_K_S.gguf | GGUF | Q5_K_S | 21.08 GB | Download |
| HivemindPreview-32B-Q6_K.gguf | GGUF | Q6_K | 25.04 GB | Download |
| HivemindPreview-32B-Q8_0.gguf | GGUF | Q8_0 | 32.43 GB | Download |
Model Details
| Model ID | SUPEROXIDES/HIVEMIND_PREVIEW_32B_-_GGUF |
|---|---|
| Author | SUPEROXIDES |
| Pipeline | text-generation |
| License | apache-2.0 |
| Base model | HiveLabsAI/hivemind-32b-preview |
| Last modified | 2026-06-21T11:11:18.000Z |
Model README
---
license: apache-2.0
language:
- en
base_model:
- HiveLabsAI/hivemind-32b-preview
pipeline_tag: text-generation
---
GGUF QUANTIZATIONS FOR HIVELABSAI'S "hivemind-32b-preview"
These quantizations were made with llama.cpp build 9181 using Bartowski's sample dataset for an importance matrix. The Q8_0, BF16, and F16 quantizations do not use any importance matrix.
As the original model is a preview release, these quantizations should be considered experimental, though functioning. I [SUPEROXIDES] am not endorsed or sponsored by Hive Labs.
<details>
<summary>ORIGINAL README.MD FOR HIVEMIND PREVIEW 32B:</summary>
# Hivemind-32B-Preview
Hivemind-32B-Preview is a 32B-parameter model fine-tuned for multi-turn, emotionally attentive conversation in human-facing enterprise contexts. It is built on Qwen3-32B with a training set focused on conversational depth, emotional subtext, and sustained engagement across complex interpersonal scenarios.
Model Details
- Parameters: 32B
- Context length: 40,960 tokens
- Precision: bfloat16
- Base model: Qwen3-32B
- License: Proprietary, subject to upstream Qwen license terms
Training
Hivemind-32B-Preview was fine-tuned for multi-turn, human-facing conversations involving ambiguity and emotional subtext. The training set was purpose-built from enterprise interaction data.
Intended Use
Hivemind-32B-Preview is designed for enterprise human-agent partnership contexts: customer support, coaching-style interactions, and similar conversational deployments where sustained emotional attentiveness matters.
Scope and Ongoing Work
Hivemind-32B-Preview is a preview release. As with any conversational model, it has scope boundaries we are actively refining:
- It is not intended as a source of medical, legal, financial, or safety-critical advice, and should not be deployed in those contexts or as a replacement for professional human support.
- Performance is strongest in standard conversational scenarios.
We welcome failure-case reports from researchers and deployment partners at contact@hivelabs.dev.
Usage
vLLM (recommended)
vllm serve HiveLabsAI/hivemind-32b-preview --dtype bfloat16
Transformers
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "HiveLabsAI/hivemind-32b-preview"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype="bfloat16",
device_map="auto",
)
messages = [{"role": "user", "content": "Your message here"}]
inputs = tokenizer.apply_chat_template(
messages, return_tensors="pt", add_generation_prompt=True
).to(model.device)
outputs = model.generate(
inputs, max_new_tokens=2048, temperature=0.6, top_p=0.95, top_k=20
)
print(tokenizer.decode(outputs[0][inputs.shape[-1]:], skip_special_tokens=True))
About
Hivemind is developed by Hive Labs. For research collaboration, deployment questions, or to report failure cases, contact contact@hivelabs.dev.
</details>
Run SUPEROXIDES/HIVEMIND_PREVIEW_32B_-_GGUF with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models