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 10
10
11
11
# Architecture -> (module, class).
12
12
_MODELS = {
13
- "AquilaModel" : ("aquila " , "AquilaForCausalLM " ),
14
- "AquilaForCausalLM" : ("aquila " , "AquilaForCausalLM " ), # AquilaChat2
13
+ "AquilaModel" : ("llama " , "LlamaForCausalLM " ),
14
+ "AquilaForCausalLM" : ("llama " , "LlamaForCausalLM " ), # AquilaChat2
15
15
"BaiChuanForCausalLM" : ("baichuan" , "BaiChuanForCausalLM" ), # baichuan-7b
16
16
"BaichuanForCausalLM" : ("baichuan" , "BaichuanForCausalLM" ), # baichuan-13b
17
17
"BloomForCausalLM" : ("bloom" , "BloomForCausalLM" ),
41
41
"Qwen2ForCausalLM" : ("qwen2" , "Qwen2ForCausalLM" ),
42
42
"RWForCausalLM" : ("falcon" , "FalconForCausalLM" ),
43
43
"StableLMEpochForCausalLM" : ("stablelm" , "StablelmForCausalLM" ),
44
- "YiForCausalLM" : ("yi" , "YiForCausalLM" )
45
44
}
46
45
47
46
# Models not supported by ROCm.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
from vllm .transformers_utils .configs import *
6
6
7
7
_CONFIG_REGISTRY = {
8
- "aquila" : AquilaConfig ,
9
8
"baichuan" : BaiChuanConfig ,
10
9
"chatglm" : ChatGLMConfig ,
11
10
"mpt" : MPTConfig ,
Original file line number Diff line number Diff line change 1
- from vllm .transformers_utils .configs .aquila import AquilaConfig
2
1
from vllm .transformers_utils .configs .baichuan import BaiChuanConfig
3
2
from vllm .transformers_utils .configs .chatglm import ChatGLMConfig
4
3
from vllm .transformers_utils .configs .mpt import MPTConfig
9
8
from vllm .transformers_utils .configs .falcon import RWConfig
10
9
11
10
__all__ = [
12
- "AquilaConfig" ,
13
11
"BaiChuanConfig" ,
14
12
"ChatGLMConfig" ,
15
13
"MPTConfig" ,
You can’t perform that action at this time.
0 commit comments