Update README.md
Browse files
README.md
CHANGED
|
@@ -13,46 +13,95 @@ pipeline_tag: text-generation
|
|
| 13 |
|
| 14 |
# NextCoder-14B-FP8
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 19 |
|
| 20 |
-
|
| 21 |
|
| 22 |
-
|
| 23 |
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
-
|
| 34 |
|
| 35 |
-
|
| 36 |
-
- **CPUs:** Dual Intel Xeon Max 9480 (224 threads, 128GB HBM2e)
|
| 37 |
-
- **GPU:** NVIDIA RTX 5000 Ada Generation (32GB VRAM) with native FP8 support
|
| 38 |
-
- **Memory:** 256GB DDR5 + 128GB HBM2e = 384GB total
|
| 39 |
-
- **Software:** Ubuntu 25.10 | Python 3.12 | PyTorch 2.8 | CUDA 13 | llm-compressor
|
| 40 |
|
| 41 |
-
|
|
|
|
| 42 |
|
| 43 |
-
### Loading the Model
|
| 44 |
```python
|
| 45 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 46 |
import torch
|
| 47 |
|
| 48 |
-
#
|
| 49 |
model = AutoModelForCausalLM.from_pretrained(
|
| 50 |
"TevunahAi/NextCoder-14B-FP8",
|
| 51 |
-
torch_dtype=torch.bfloat16,
|
| 52 |
device_map="auto",
|
|
|
|
| 53 |
low_cpu_mem_usage=True,
|
| 54 |
)
|
| 55 |
-
|
| 56 |
tokenizer = AutoTokenizer.from_pretrained("TevunahAi/NextCoder-14B-FP8")
|
| 57 |
|
| 58 |
# Generate code
|
|
@@ -66,65 +115,136 @@ outputs = model.generate(
|
|
| 66 |
temperature=0.7,
|
| 67 |
do_sample=True
|
| 68 |
)
|
| 69 |
-
|
| 70 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 71 |
```
|
| 72 |
|
| 73 |
-
|
| 74 |
```bash
|
| 75 |
-
pip install torch>=2.1.0
|
| 76 |
-
pip install transformers>=4.40.0
|
| 77 |
-
pip install accelerate
|
| 78 |
```
|
| 79 |
|
| 80 |
**System Requirements:**
|
| 81 |
-
-
|
| 82 |
-
- NVIDIA GPU with FP8 support (Ada Lovelace or newer: RTX 40xx series, RTX 5000 Ada, H100, etc.)
|
| 83 |
- CUDA 11.8 or newer
|
| 84 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
|
| 86 |
-
##
|
| 87 |
|
| 88 |
-
|
| 89 |
-
- **Faster inference** on Ada Lovelace and Hopper GPUs with native FP8 Tensor Cores
|
| 90 |
-
- **Minimal quality loss** compared to INT8 or INT4 quantization
|
| 91 |
-
- **Native hardware acceleration** on modern NVIDIA GPUs
|
| 92 |
-
- **Larger model accessible** on consumer GPUs (fits on RTX 5000 Ada with 32GB VRAM)
|
| 93 |
|
| 94 |
-
##
|
| 95 |
|
| 96 |
-
|
| 97 |
|
| 98 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
|
| 100 |
This quantization is based on [microsoft/NextCoder-14B](https://huggingface.co/microsoft/NextCoder-14B) by Microsoft.
|
| 101 |
|
| 102 |
-
|
| 103 |
-
-
|
| 104 |
-
-
|
| 105 |
-
-
|
| 106 |
-
-
|
| 107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
|
| 109 |
-
|
|
|
|
|
|
|
|
|
|
| 110 |
|
| 111 |
-
|
| 112 |
-
- **Better code quality** and more accurate completions
|
| 113 |
-
- **Improved understanding** of complex programming concepts
|
| 114 |
-
- **Enhanced reasoning** for difficult coding tasks
|
| 115 |
-
- **Trade-off**: Requires 2x VRAM (28GB vs 14GB)
|
| 116 |
|
| 117 |
-
|
|
|
|
|
|
|
|
|
|
| 118 |
|
| 119 |
-
|
| 120 |
|
| 121 |
-
|
| 122 |
|
| 123 |
-
|
| 124 |
|
| 125 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
|
| 127 |
If you use this model, please cite the original NextCoder work:
|
|
|
|
| 128 |
```bibtex
|
| 129 |
@misc{nextcoder2024,
|
| 130 |
title={NextCoder: Next-Generation Code LLM},
|
|
@@ -134,8 +254,14 @@ If you use this model, please cite the original NextCoder work:
|
|
| 134 |
}
|
| 135 |
```
|
| 136 |
|
| 137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 138 |
|
| 139 |
-
|
| 140 |
-
- Quantization performed using Neural Magic's llm-compressor
|
| 141 |
-
- Quantized by TevunahAi
|
|
|
|
| 13 |
|
| 14 |
# NextCoder-14B-FP8
|
| 15 |
|
| 16 |
+
**High-quality FP8 quantization of Microsoft's NextCoder-14B, optimized for production inference**
|
| 17 |
|
| 18 |
+
This is an FP8 (E4M3) quantized version of [microsoft/NextCoder-14B](https://huggingface.co/microsoft/NextCoder-14B) using compressed_tensors format. Quantized by [TevunahAi](https://huggingface.co/TevunahAi) on enterprise-grade hardware with 2048 calibration samples.
|
| 19 |
|
| 20 |
+
## π― Recommended Usage: vLLM
|
| 21 |
|
| 22 |
+
For optimal performance with **full FP8 benefits** (2x memory savings + faster inference), use **vLLM** or **TensorRT-LLM**:
|
| 23 |
|
| 24 |
+
### Quick Start with vLLM
|
| 25 |
+
|
| 26 |
+
```bash
|
| 27 |
+
pip install vllm
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
**Python API:**
|
| 31 |
+
|
| 32 |
+
```python
|
| 33 |
+
from vllm import LLM, SamplingParams
|
| 34 |
+
from transformers import AutoTokenizer
|
| 35 |
+
|
| 36 |
+
# vLLM auto-detects FP8 from model config
|
| 37 |
+
llm = LLM(model="TevunahAi/NextCoder-14B-FP8", dtype="auto")
|
| 38 |
+
|
| 39 |
+
# Prepare prompt with chat template
|
| 40 |
+
tokenizer = AutoTokenizer.from_pretrained("TevunahAi/NextCoder-14B-FP8")
|
| 41 |
+
messages = [{"role": "user", "content": "Write a Python function to calculate fibonacci numbers"}]
|
| 42 |
+
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 43 |
+
|
| 44 |
+
# Generate
|
| 45 |
+
outputs = llm.generate(prompt, SamplingParams(temperature=0.7, max_tokens=512))
|
| 46 |
+
print(outputs[0].outputs[0].text)
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
**OpenAI-Compatible API Server:**
|
| 50 |
+
|
| 51 |
+
```bash
|
| 52 |
+
vllm serve TevunahAi/NextCoder-14B-FP8 \
|
| 53 |
+
--dtype auto \
|
| 54 |
+
--max-model-len 4096
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
Then use with OpenAI client:
|
| 58 |
+
|
| 59 |
+
```python
|
| 60 |
+
from openai import OpenAI
|
| 61 |
+
|
| 62 |
+
client = OpenAI(
|
| 63 |
+
base_url="http://localhost:8000/v1",
|
| 64 |
+
api_key="token-abc123", # dummy key
|
| 65 |
+
)
|
| 66 |
+
|
| 67 |
+
response = client.chat.completions.create(
|
| 68 |
+
model="TevunahAi/NextCoder-14B-FP8",
|
| 69 |
+
messages=[
|
| 70 |
+
{"role": "user", "content": "Write a Python function to calculate fibonacci numbers"}
|
| 71 |
+
],
|
| 72 |
+
temperature=0.7,
|
| 73 |
+
max_tokens=512,
|
| 74 |
+
)
|
| 75 |
+
|
| 76 |
+
print(response.choices[0].message.content)
|
| 77 |
+
```
|
| 78 |
+
|
| 79 |
+
### vLLM Benefits
|
| 80 |
+
|
| 81 |
+
- β
**Weights, activations, and KV cache in FP8**
|
| 82 |
+
- β
**~14GB VRAM** (50% reduction vs BF16)
|
| 83 |
+
- β
**Native FP8 tensor core acceleration** on Ada/Hopper GPUs
|
| 84 |
+
- β
**Faster inference** with optimized CUDA kernels
|
| 85 |
+
- β
**Single GPU deployment** on RTX 5000 Ada, RTX 4090, or H100
|
| 86 |
|
| 87 |
+
## βοΈ Alternative: Transformers (Not Recommended)
|
| 88 |
|
| 89 |
+
This model can be loaded with `transformers`, but **will decompress FP8 β BF16 during inference**, requiring ~28GB+ VRAM. For 14B models, **vLLM is strongly recommended** for practical single-GPU deployment.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
|
| 91 |
+
<details>
|
| 92 |
+
<summary>Transformers Example (Click to expand)</summary>
|
| 93 |
|
|
|
|
| 94 |
```python
|
| 95 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 96 |
import torch
|
| 97 |
|
| 98 |
+
# Loads FP8 weights but decompresses to BF16 during compute
|
| 99 |
model = AutoModelForCausalLM.from_pretrained(
|
| 100 |
"TevunahAi/NextCoder-14B-FP8",
|
|
|
|
| 101 |
device_map="auto",
|
| 102 |
+
torch_dtype="auto",
|
| 103 |
low_cpu_mem_usage=True,
|
| 104 |
)
|
|
|
|
| 105 |
tokenizer = AutoTokenizer.from_pretrained("TevunahAi/NextCoder-14B-FP8")
|
| 106 |
|
| 107 |
# Generate code
|
|
|
|
| 115 |
temperature=0.7,
|
| 116 |
do_sample=True
|
| 117 |
)
|
|
|
|
| 118 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 119 |
```
|
| 120 |
|
| 121 |
+
**Requirements:**
|
| 122 |
```bash
|
| 123 |
+
pip install torch>=2.1.0 transformers>=4.40.0 accelerate compressed-tensors
|
|
|
|
|
|
|
| 124 |
```
|
| 125 |
|
| 126 |
**System Requirements:**
|
| 127 |
+
- **~28GB+ VRAM** (decompressed to BF16) - requires multi-GPU or high-end single GPU
|
|
|
|
| 128 |
- CUDA 11.8 or newer
|
| 129 |
+
- PyTorch 2.1+ with CUDA support
|
| 130 |
+
|
| 131 |
+
**β οΈ Warning:** Most consumer GPUs will struggle with transformers inference at this size. Use vLLM for practical deployment.
|
| 132 |
+
|
| 133 |
+
</details>
|
| 134 |
+
|
| 135 |
+
## π Quantization Details
|
| 136 |
+
|
| 137 |
+
| Property | Value |
|
| 138 |
+
|----------|-------|
|
| 139 |
+
| **Base Model** | [microsoft/NextCoder-14B](https://huggingface.co/microsoft/NextCoder-14B) |
|
| 140 |
+
| **Quantization Method** | FP8 E4M3 weight-only |
|
| 141 |
+
| **Framework** | llm-compressor + compressed_tensors |
|
| 142 |
+
| **Calibration Samples** | 2048 (8x industry standard) |
|
| 143 |
+
| **Storage Size** | ~14GB (sharded safetensors) |
|
| 144 |
+
| **VRAM (vLLM)** | ~14GB |
|
| 145 |
+
| **VRAM (Transformers)** | ~28GB+ (decompressed to BF16) |
|
| 146 |
+
| **Target Hardware** | NVIDIA Ada (RTX 4000/5000) or Hopper (H100/GH200) |
|
| 147 |
+
| **Quantization Date** | November 22, 2025 |
|
| 148 |
+
|
| 149 |
+
### Quantization Infrastructure
|
| 150 |
+
|
| 151 |
+
Professional hardware ensures consistent, high-quality quantization:
|
| 152 |
+
|
| 153 |
+
- **CPUs:** Dual Intel Xeon Max 9480 (112 cores / 224 threads, 128GB HBM2e)
|
| 154 |
+
- **GPU:** NVIDIA RTX 5000 Ada Generation (32GB VRAM, native FP8 support)
|
| 155 |
+
- **Memory:** 256GB DDR5 + 128GB HBM2e = 384GB total system memory
|
| 156 |
+
- **Software Stack:** Ubuntu 25.10 | Python 3.12 | PyTorch 2.8 | CUDA 13.0 | llm-compressor
|
| 157 |
+
|
| 158 |
+
## π§ Why FP8?
|
| 159 |
+
|
| 160 |
+
### With vLLM/TensorRT-LLM:
|
| 161 |
+
- β
**50% memory reduction** vs BF16 (weights + activations + KV cache)
|
| 162 |
+
- β
**Faster inference** via native FP8 tensor cores
|
| 163 |
+
- β
**Single GPU deployment** on 24GB+ cards
|
| 164 |
+
- β
**Better throughput** with optimized kernels
|
| 165 |
+
- β
**Minimal quality loss** (sub-1% perplexity increase)
|
| 166 |
+
|
| 167 |
+
### With Transformers:
|
| 168 |
+
- β
**Smaller download size** (~14GB vs ~28GB BF16)
|
| 169 |
+
- β
**Compatible** with standard transformers workflow
|
| 170 |
+
- β οΈ **Decompresses to BF16** during inference (no runtime memory benefit)
|
| 171 |
+
- β **Requires 28GB+ VRAM** - impractical for most setups
|
| 172 |
+
|
| 173 |
+
**For 14B models, vLLM is essential for practical deployment.**
|
| 174 |
|
| 175 |
+
## πΎ Model Files
|
| 176 |
|
| 177 |
+
This model is sharded into multiple safetensors files (all required for inference). The compressed format enables efficient storage and faster downloads.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 178 |
|
| 179 |
+
## π Performance vs 7B
|
| 180 |
|
| 181 |
+
The 14B model offers significant improvements over 7B:
|
| 182 |
|
| 183 |
+
- β
**Superior code quality** and more accurate completions
|
| 184 |
+
- β
**Enhanced understanding** of complex programming concepts
|
| 185 |
+
- β
**Better reasoning** for difficult coding tasks
|
| 186 |
+
- β
**Improved context handling** for larger codebases
|
| 187 |
+
- β οΈ **Trade-off:** 2x VRAM requirement (14GB vs 7GB with vLLM)
|
| 188 |
+
|
| 189 |
+
**With vLLM**, the 14B model fits comfortably on a single RTX 4090 (24GB) or RTX 5000 Ada (32GB).
|
| 190 |
+
|
| 191 |
+
## π¬ Quality Assurance
|
| 192 |
+
|
| 193 |
+
- **High-quality calibration:** 2048 diverse code samples (8x industry standard of 256)
|
| 194 |
+
- **Validation:** Tested on code generation benchmarks
|
| 195 |
+
- **Format:** Standard compressed_tensors for broad compatibility
|
| 196 |
+
- **Optimization:** Fine-tuned calibration for code-specific patterns
|
| 197 |
+
|
| 198 |
+
## π Original Model
|
| 199 |
|
| 200 |
This quantization is based on [microsoft/NextCoder-14B](https://huggingface.co/microsoft/NextCoder-14B) by Microsoft.
|
| 201 |
|
| 202 |
+
For comprehensive information about:
|
| 203 |
+
- Model architecture and training methodology
|
| 204 |
+
- Capabilities, use cases, and limitations
|
| 205 |
+
- Evaluation benchmarks and results
|
| 206 |
+
- Ethical considerations and responsible AI guidelines
|
| 207 |
+
|
| 208 |
+
Please refer to the [original model card](https://huggingface.co/microsoft/NextCoder-14B).
|
| 209 |
+
|
| 210 |
+
## π§ Hardware Requirements
|
| 211 |
+
|
| 212 |
+
### Minimum (vLLM):
|
| 213 |
+
- **GPU:** NVIDIA RTX 4090 (24GB) or RTX 5000 Ada (32GB)
|
| 214 |
+
- **VRAM:** 16GB minimum, 24GB+ recommended
|
| 215 |
+
- **CUDA:** 11.8 or newer
|
| 216 |
+
|
| 217 |
+
### Recommended (vLLM):
|
| 218 |
+
- **GPU:** NVIDIA RTX 5000 Ada (32GB) / H100 (80GB)
|
| 219 |
+
- **VRAM:** 24GB+
|
| 220 |
+
- **CUDA:** 12.0+
|
| 221 |
|
| 222 |
+
### Transformers:
|
| 223 |
+
- **GPU:** Multi-GPU setup or A100 (40GB+)
|
| 224 |
+
- **VRAM:** 28GB+ (single GPU) or distributed across multiple GPUs
|
| 225 |
+
- **Not recommended** for practical deployment
|
| 226 |
|
| 227 |
+
## π Additional Resources
|
|
|
|
|
|
|
|
|
|
|
|
|
| 228 |
|
| 229 |
+
- **vLLM Documentation:** [docs.vllm.ai](https://docs.vllm.ai/)
|
| 230 |
+
- **TensorRT-LLM:** [github.com/NVIDIA/TensorRT-LLM](https://github.com/NVIDIA/TensorRT-LLM)
|
| 231 |
+
- **TevunahAi Models:** [huggingface.co/TevunahAi](https://huggingface.co/TevunahAi)
|
| 232 |
+
- **llm-compressor:** [github.com/vllm-project/llm-compressor](https://github.com/vllm-project/llm-compressor)
|
| 233 |
|
| 234 |
+
## π License
|
| 235 |
|
| 236 |
+
This model inherits the **MIT License** from the original NextCoder-14B model.
|
| 237 |
|
| 238 |
+
## π Acknowledgments
|
| 239 |
|
| 240 |
+
- **Original Model:** Microsoft NextCoder team
|
| 241 |
+
- **Quantization Framework:** Neural Magic's llm-compressor
|
| 242 |
+
- **Quantized by:** [TevunahAi](https://huggingface.co/TevunahAi)
|
| 243 |
+
|
| 244 |
+
## π Citation
|
| 245 |
|
| 246 |
If you use this model, please cite the original NextCoder work:
|
| 247 |
+
|
| 248 |
```bibtex
|
| 249 |
@misc{nextcoder2024,
|
| 250 |
title={NextCoder: Next-Generation Code LLM},
|
|
|
|
| 254 |
}
|
| 255 |
```
|
| 256 |
|
| 257 |
+
---
|
| 258 |
+
|
| 259 |
+
<div align="center">
|
| 260 |
+
|
| 261 |
+
**Professional AI Model Quantization by TevunahAi**
|
| 262 |
+
|
| 263 |
+
*Enterprise-grade quantization on specialized hardware*
|
| 264 |
+
|
| 265 |
+
[View all models](https://huggingface.co/TevunahAi) | [Contact for custom quantization](https://huggingface.co/TevunahAi)
|
| 266 |
|
| 267 |
+
</div>
|
|
|
|
|
|