Views
No views yet
google/gemma-4-E4B-itllmcompressorGPTQModifierW8A8actorder: nullHuggingFaceH4/ultrachat_200k, split train_sftlm_head, Gemma 4 AltUp/Laurel modules, and per-layer
embedding projection paths were excluded from quantization and kept in BF16.
The language-model attention and MLP Linear layers were quantized.recipe.yaml and config.json for the serialized quantization metadata.1from transformers import AutoProcessor, AutoModelForImageTextToText
2
3model_id = "lsm0729/gemma-4-E4B-it-W8A8-INT8-GPTQ"
4
5processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)
6model = AutoModelForImageTextToText.from_pretrained(
7 model_id,
8 dtype="auto",
9 device_map="auto",
10 trust_remote_code=True,
11)linear_backend=triton.1lm-eval run \
2 --model vllm \
3 --model_args 'pretrained=lsm0729/gemma-4-E4B-it-W8A8-INT8-GPTQ,dtype=auto,add_bos_token=false,max_model_len=15000,gpu_memory_utilization=0.5,enable_chunked_prefill=True,enforce_eager=True,trust_remote_code=True,linear_backend=triton' \
4 --tasks mmlu_llama \
5 --batch_size auto \
6 --num_fewshot 5 \
7 --apply_chat_template \
8 --fewshot_as_multiturnlsm0729