Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
library_name: vllm
|
4 |
+
pipeline_tag: image-text-to-text
|
5 |
+
tags:
|
6 |
+
- int4
|
7 |
+
- vllm
|
8 |
+
- llmcompressor
|
9 |
+
base_model: mistralai/Mistral-Small-3.1-24B-Instruct-2503
|
10 |
+
---
|
11 |
+
|
12 |
+
# Mistral-Small-3.1-24B-Instruct-2503-GPTQ-4b-128g
|
13 |
+
|
14 |
+
## Model Overview
|
15 |
+
|
16 |
+
This model was obtained by quantizing the weights of [Mistral-Small-3.1-24B-Instruct-2503](https://huggingface.co/mistralai/Mistral-Small-3.1-24B-Instruct-2503) to INT4 data type. This optimization reduces the number of bits per parameter from 16 to 4, reducing the disk size and GPU memory requirements by approximately 75%.
|
17 |
+
|
18 |
+
Only the weights of the linear operators within `language_model` transformers blocks are quantized. Vision model and multimodal projection are kept in original precision. Weights are quantized using a symmetric per-group scheme, with group size 128. The GPTQ algorithm is applied for quantization.
|
19 |
+
|
20 |
+
Model checkpoint is saved in [compressed_tensors](https://github.com/neuralmagic/compressed-tensors) format.
|
21 |
+
|
22 |
+
## Usage
|
23 |
+
|
24 |
+
* To use the model in `transformers` update the package to stable release of Mistral-3
|
25 |
+
|
26 |
+
`pip install git+https://github.com/huggingface/[email protected]`
|
27 |
+
* To use the model in `vLLM` update the package to version `vllm>=0.8.0`.
|