File tree Expand file tree Collapse file tree 5 files changed +2
-417
lines changed Expand file tree Collapse file tree 5 files changed +2
-417
lines changed Original file line number Diff line number Diff line change 1010
1111# Architecture -> (module, class).
1212_MODELS = {
13- "AquilaModel" : ("aquila " , "AquilaForCausalLM " ),
14- "AquilaForCausalLM" : ("aquila " , "AquilaForCausalLM " ), # AquilaChat2
13+ "AquilaModel" : ("llama " , "LlamaForCausalLM " ),
14+ "AquilaForCausalLM" : ("llama " , "LlamaForCausalLM " ), # AquilaChat2
1515 "BaiChuanForCausalLM" : ("baichuan" , "BaiChuanForCausalLM" ), # baichuan-7b
1616 "BaichuanForCausalLM" : ("baichuan" , "BaichuanForCausalLM" ), # baichuan-13b
1717 "BloomForCausalLM" : ("bloom" , "BloomForCausalLM" ),
4141 "Qwen2ForCausalLM" : ("qwen2" , "Qwen2ForCausalLM" ),
4242 "RWForCausalLM" : ("falcon" , "FalconForCausalLM" ),
4343 "StableLMEpochForCausalLM" : ("stablelm" , "StablelmForCausalLM" ),
44- "YiForCausalLM" : ("yi" , "YiForCausalLM" )
4544}
4645
4746# Models not supported by ROCm.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 55from vllm .transformers_utils .configs import *
66
77_CONFIG_REGISTRY = {
8- "aquila" : AquilaConfig ,
98 "baichuan" : BaiChuanConfig ,
109 "chatglm" : ChatGLMConfig ,
1110 "mpt" : MPTConfig ,
Original file line number Diff line number Diff line change 1- from vllm .transformers_utils .configs .aquila import AquilaConfig
21from vllm .transformers_utils .configs .baichuan import BaiChuanConfig
32from vllm .transformers_utils .configs .chatglm import ChatGLMConfig
43from vllm .transformers_utils .configs .mpt import MPTConfig
98from vllm .transformers_utils .configs .falcon import RWConfig
109
1110__all__ = [
12- "AquilaConfig" ,
1311 "BaiChuanConfig" ,
1412 "ChatGLMConfig" ,
1513 "MPTConfig" ,
You can’t perform that action at this time.
0 commit comments