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 6857d9a commit 4ea16c9Copy full SHA for 4ea16c9
vllm/config/__init__.py
@@ -2165,8 +2165,13 @@ def __post_init__(self):
2165
# Automatically detect the method
2166
if self.method in ('eagle', 'eagle3'):
2167
pass
2168
+ # examples:
2169
+ # yuhuili/EAGLE-LLaMA3-Instruct-8B
2170
+ # yuhuili/EAGLE3-LLaMA3.1-Instruct-8B
2171
+ # AngelSlim/Qwen3-8B_eagle3
2172
elif "eagle-" in self.draft_model_config.model.lower() or \
- "eagle3-" in self.draft_model_config.model.lower():
2173
+ "eagle3-" in self.draft_model_config.model.lower() or \
2174
+ self.draft_model_config.model.endswith("_eagle3"):
2175
self.method = "eagle"
2176
elif self.draft_model_config.hf_config.model_type == "medusa":
2177
self.method = "medusa"
0 commit comments