16 lines
388 B
Python
16 lines
388 B
Python
from ._base import *
|
|
|
|
|
|
class CodeGenGPTQForCausalLM(BaseGPTQForCausalLM):
|
|
layer_type = "CodeGenBlock"
|
|
layers_block_name = "transformer.h"
|
|
outside_layer_modules = ["transformer.wte", "transformer.ln_f"]
|
|
inside_layer_modules = [
|
|
["attn.qkv_proj"],
|
|
["attn.out_proj"],
|
|
["mlp.fc_in"],
|
|
["mlp.fc_out"]
|
|
]
|
|
|
|
|
|
__all__ = ["CodeGenGPTQForCausalLM"]
|