-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update MoE examples * Add top-level link * Fix deepseek_moe_w8a8_int8.py * Add deepseek_moe_w8a8_fp8.py * Quality * Quality
- Loading branch information
Showing
5 changed files
with
98 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
from datasets import load_dataset | ||
from transformers import AutoTokenizer | ||
|
||
from llmcompressor.modifiers.quantization import QuantizationModifier | ||
from llmcompressor.transformers import SparseAutoModelForCausalLM, oneshot | ||
|
||
# select a Mixture of Experts model for quantization | ||
MODEL_ID = "deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct" | ||
|
||
model = SparseAutoModelForCausalLM.from_pretrained( | ||
MODEL_ID, device_map="auto", torch_dtype="auto", trust_remote_code=True | ||
) | ||
tokenizer = AutoTokenizer.from_pretrained(MODEL_ID) | ||
|
||
# Select calibration dataset. | ||
# its recommended to use more calibration samples for MoE models so each expert is hit | ||
DATASET_ID = "HuggingFaceH4/ultrachat_200k" | ||
DATASET_SPLIT = "train_sft" | ||
NUM_CALIBRATION_SAMPLES = 2048 | ||
MAX_SEQUENCE_LENGTH = 2048 | ||
|
||
|
||
# Load dataset and preprocess. | ||
ds = load_dataset(DATASET_ID, split=DATASET_SPLIT) | ||
ds = ds.shuffle(seed=42).select(range(NUM_CALIBRATION_SAMPLES)) | ||
|
||
|
||
def preprocess(example): | ||
return { | ||
"text": tokenizer.apply_chat_template( | ||
example["messages"], | ||
tokenize=False, | ||
) | ||
} | ||
|
||
|
||
ds = ds.map(preprocess) | ||
|
||
|
||
# Tokenize inputs. | ||
def tokenize(sample): | ||
return tokenizer( | ||
sample["text"], | ||
padding=False, | ||
max_length=MAX_SEQUENCE_LENGTH, | ||
truncation=True, | ||
add_special_tokens=False, | ||
) | ||
|
||
|
||
ds = ds.map(tokenize, remove_columns=ds.column_names) | ||
|
||
# define a llmcompressor recipe for FP8 W8A8 quantization | ||
# since the MoE gate layers are sensitive to quantization, we add them to the ignore | ||
# list so they remain at full precision | ||
recipe = [ | ||
QuantizationModifier( | ||
targets="Linear", | ||
scheme="FP8", | ||
ignore=["lm_head", "re:.*mlp.gate$"], | ||
), | ||
] | ||
|
||
SAVE_DIR = MODEL_ID.split("/")[1] + "-FP8" | ||
|
||
oneshot( | ||
model=model, | ||
dataset=ds, | ||
recipe=recipe, | ||
max_seq_length=MAX_SEQUENCE_LENGTH, | ||
num_calibration_samples=NUM_CALIBRATION_SAMPLES, | ||
save_compressed=True, | ||
output_dir=SAVE_DIR, | ||
) | ||
|
||
|
||
print("========== SAMPLE GENERATION ==============") | ||
SAMPLE_INPUT = ["I love quantization because"] | ||
tokenizer = AutoTokenizer.from_pretrained(MODEL_ID) | ||
inputs = tokenizer(SAMPLE_INPUT, return_tensors="pt", padding=True).to(model.device) | ||
output = model.generate(**inputs, max_length=50) | ||
text_output = tokenizer.batch_decode(output) | ||
print(text_output) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters