File size: 7,585 Bytes
630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 630d0e8 1443f71 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | ---
license: apache-2.0
base_model: Dream-org/Dream-v0-Instruct-7B
tags:
- fp8
- quantized
- llmcompressor
- tevunahai
- professional-grade
- diffusion-lm
- dream
- dllm
---
# Dream-v0-Instruct-7B-FP8
## TevunahAi Professional Quantization
**๐ First FP8 quantized Dream model for native PyTorch/transformers inference.**
This is an FP8 quantized version of [Dream-v0-Instruct-7B](https://huggingface.co/Dream-org/Dream-v0-Instruct-7B),
a diffusion-based large language model from HKU NLP Group.
### What is Dream?
Dream 7B is a **Diffusion Large Language Model (dLLM)** - unlike traditional autoregressive models
(GPT, LLaMA, Claude) that generate text left-to-right one token at a time, Dream uses
**parallel denoising** to refine the entire sequence simultaneously.
Key advantages:
- ๐ **Bidirectional context modeling** - considers full context in both directions
- ๐ฏ **Flexible text generation order** - not constrained to left-to-right
- ๐ง **Superior planning abilities** - excels at tasks requiring multi-step reasoning
- โก **Adjustable quality-speed tradeoff** - control inference steps for your needs
### Quantization Details
| Property | Value |
|----------|-------|
| **Base Model** | Dream-v0-Instruct-7B |
| **Quantization** | FP8 Dynamic (Weight-only) |
| **Method** | llmcompressor FP8_DYNAMIC |
| **Calibration** | Data-free |
| **Storage Size** | ~8.7GB |
| **VRAM Required** | ~10GB |
| **Quantization Time** | 1.7 minutes |
### Quantization Infrastructure
Professional hardware ensures consistent, high-quality quantization:
- **CPUs:** Dual Intel Xeon Max 9480 (112 cores / 224 threads, 128GB HBM2e)
- **GPU:** NVIDIA RTX 5000 Ada Generation (32GB VRAM, native FP8 support)
- **Memory:** 256GB DDR5 + 128GB HBM2e = 384GB total system memory
- **Software Stack:** Ubuntu 25.10 | Python 3.12 | PyTorch 2.8 | CUDA 13.0 | llm-compressor
### Memory Comparison
| Precision | Size | VRAM Required |
|-----------|------|---------------|
| BF16 | ~14 GB | ~16 GB |
| **FP8** | **~8.7 GB** | **~10 GB** |
## Usage
### With Transformers (Required for Diffusion Models)
**Note:** Dream uses a custom diffusion architecture that requires transformers with `trust_remote_code=True`. It is not compatible with standard inference frameworks like vLLM.
```python
import torch
from transformers import AutoModel, AutoTokenizer
model_path = "TevunahAi/Dream-v0-Instruct-7B-FP8"
# Load FP8 model - will decompress to BF16 during inference
model = AutoModel.from_pretrained(
model_path,
torch_dtype="auto", # Auto-detects FP8, decompresses to BF16
trust_remote_code=True, # Required for diffusion architecture
device_map="auto",
low_cpu_mem_usage=True,
)
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
# Prepare input
messages = [
{"role": "user", "content": "Explain quantum computing in simple terms."}
]
inputs = tokenizer.apply_chat_template(
messages,
return_tensors="pt",
return_dict=True,
add_generation_prompt=True
)
input_ids = inputs.input_ids.to(model.device)
attention_mask = inputs.attention_mask.to(model.device)
# Dream uses diffusion_generate, not generate!
output = model.diffusion_generate(
input_ids,
attention_mask=attention_mask,
max_new_tokens=512,
steps=256, # More steps = better quality
temperature=0.7,
top_p=0.9,
alg="entropy",
alg_temp=0.,
)
# Decode and clean up response
response = tokenizer.decode(output[0][input_ids.shape[1]:].tolist())
response = response.split("<|endoftext|>")[0].strip()
print(response)
```
### Requirements
```bash
pip install torch>=2.1.0 transformers>=4.40.0 accelerate compressed-tensors
```
**System Requirements:**
- **~10GB VRAM** (FP8 weights decompress to BF16 during inference)
- CUDA 11.8 or newer
- PyTorch 2.1+ with CUDA support
### Generation Parameters
| Parameter | Description | Recommended Values |
|-----------|-------------|-------------------|
| `steps` | Number of diffusion steps | 128-512 (more = better quality) |
| `max_new_tokens` | Maximum tokens to generate | 256-1024 |
| `temperature` | Randomness (higher = creative) | 0.7-1.0 |
| `top_p` | Nucleus sampling threshold | 0.9-0.95 |
| `alg` | Decoding algorithm | "entropy" |
| `alg_temp` | Algorithm temperature | 0.0 |
**Quality vs Speed:**
- **Fast (128 steps):** Quick responses, good for simple queries
- **Balanced (256 steps):** Default setting, good quality
- **High Quality (512 steps):** Best output, slower generation
## Important Notes
1. โ ๏ธ **Use `diffusion_generate()`** not `generate()` - Dream is a diffusion model!
2. โ ๏ธ **Requires `trust_remote_code=True`** for custom diffusion architecture
3. ๐ฆ **FP8 decompresses to BF16** during inference (~10GB VRAM)
4. ๐ **Stop token cleanup**: split response on `<|endoftext|>`
5. ๐ **Context length**: 2048 tokens
6. ๐ซ **Not compatible with vLLM** - requires transformers with custom code
## Why FP8 for Dream?
### Benefits:
- โ
**Smaller download size** (~8.7GB vs ~14GB BF16)
- โ
**Faster model loading** from disk
- โ
**Storage efficiency** for model archives
- โ
**Compatible** with standard transformers workflow
### Trade-offs:
- โ ๏ธ **Decompresses to BF16** during inference (~10GB VRAM)
- โ ๏ธ **No runtime memory benefit** (diffusion models need full precision)
- โ ๏ธ **Not vLLM compatible** (custom architecture)
**FP8 primarily benefits storage and download speed for this model.**
## Diffusion vs Autoregressive
**Traditional Autoregressive (GPT-style):**
```
The quick | โ | brown | โ | fox | โ | jumps | โ | ...
```
Generates left-to-right, one token at a time.
**Diffusion (Dream):**
```
[noise] โ [rough text] โ [refined text] โ [final output]
```
Generates entire sequence through iterative refinement.
**Result:** Better at:
- Long-range planning and coherence
- Complex reasoning tasks
- Bidirectional context understanding
- Flexible generation strategies
## Use Cases
Dream excels at tasks requiring:
- ๐ **Long-form writing** with complex structure
- ๐งฎ **Multi-step reasoning** and problem solving
- ๐ **Text revision** and refinement
- ๐ฏ **Planning-heavy tasks** like stories, essays, arguments
- ๐ง **Tasks requiring global coherence**
## ๐ Original Model
This quantization is based on [Dream-org/Dream-v0-Instruct-7B](https://huggingface.co/Dream-org/Dream-v0-Instruct-7B) by HKU NLP Group.
For comprehensive information about:
- Diffusion LM architecture
- Training methodology
- Evaluation benchmarks
- Research papers
Please refer to the [original model card](https://huggingface.co/Dream-org/Dream-v0-Instruct-7B).
## ๐ License
This model inherits the **Apache 2.0 License** from the original Dream model.
## ๐ Acknowledgments
- **Original Model:** [Dream-org / HKU NLP Group](https://huggingface.co/Dream-org) - Pioneering diffusion-based language models
- **Quantization Framework:** Neural Magic's llm-compressor
- **Quantized by:** [TevunahAi](https://huggingface.co/TevunahAi)
## ๐ Citation
If you use Dream, please cite the original paper:
```bibtex
@article{dream2025,
title={Dream 7B: Diffusion Large Language Models},
author={Ye, Jiacheng and Xie, Zhihui and others},
journal={arXiv preprint},
year={2025}
}
```
---
<div align="center">
**Professional AI Model Quantization by TevunahAi**
*Enterprise-grade quantization on specialized hardware*
[View all models](https://huggingface.co/TevunahAi) | [Contact for custom quantization](https://huggingface.co/TevunahAi)
</div> |