We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c332efa commit 81665a6Copy full SHA for 81665a6
lmdeploy/lite/apis/smooth_quant.py
@@ -49,7 +49,7 @@
49
'AutoModelForCausalLM': 'modeling_internlm.InternLMForCausalLM'
50
},
51
'InternLM2ForCausalLM': {
52
- 'AutoConfig': 'configuration_internlm.InternLMConfig',
+ 'AutoConfig': 'configuration_internlm2.InternLMConfig',
53
'AutoModelForCausalLM': 'modeling_internlm2.InternLM2ForCausalLM',
54
'AutoModel': 'modeling_internlm2.InternLM2ForCausalLM'
55
lmdeploy/pytorch/modeling/modeling_internlm2.py
@@ -45,7 +45,7 @@
45
except: # noqa # pylint: disable=bare-except
46
BaseStreamer = None
47
48
-from .configuration_internlm import InternLMConfig as InternLM2Config
+from .configuration_internlm2 import InternLM2Config
logger = get_logger('lmdeploy')
0 commit comments