starcoder2.py 526 Bytes
Newer Older
yangql's avatar
yangql committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from logging import getLogger

from ._base import BaseGPTQForCausalLM


logger = getLogger(__name__)


class Starcoder2GPTQForCausalLM(BaseGPTQForCausalLM):
    layer_type = "Starcoder2DecoderLayer"
    layers_block_name = "model.layers"
    outside_layer_modules = ["model.embed_tokens", "model.norm"]
    inside_layer_modules = [
        ["self_attn.k_proj", "self_attn.v_proj", "self_attn.q_proj"],
        ["self_attn.o_proj"],
        ["mlp.c_fc"],
        ["mlp.c_proj"],
    ]


__all__ = ["Starcoder2GPTQForCausalLM"]