@@ -97,6 +97,12 @@ class _HfExamplesInfo:
97
97
max_num_seqs : Optional [int ] = None
98
98
"""Maximum number of sequences to be processed in a single iteration."""
99
99
100
+ use_original_num_layers : bool = False
101
+ """
102
+ If True, use the original number of layers from the model config
103
+ instead of minimal layers for testing.
104
+ """
105
+
100
106
def check_transformers_version (
101
107
self ,
102
108
* ,
@@ -597,18 +603,21 @@ def check_available_online(
597
603
"EagleDeepSeekMTPModel" : _HfExamplesInfo ("eagle618/deepseek-v3-random" ,
598
604
speculative_model = "eagle618/eagle-deepseek-v3-random" , # noqa: E501
599
605
trust_remote_code = True ),
600
- "EagleLlamaForCausalLM" : _HfExamplesInfo ("yuhuili/EAGLE-LLaMA3-Instruct -8B" ,
606
+ "EagleLlamaForCausalLM" : _HfExamplesInfo ("meta-llama/Meta-Llama-3 -8B-Instruct" , # noqa: E501
601
607
trust_remote_code = True ,
602
608
speculative_model = "yuhuili/EAGLE-LLaMA3-Instruct-8B" ,
603
- tokenizer = "meta-llama/Meta-Llama-3-8B-Instruct" ), # noqa: E501
604
- "Eagle3LlamaForCausalLM" : _HfExamplesInfo ("yuhuili/EAGLE3-LLaMA3 .1-Instruct-8B " , # noqa: E501
609
+ tokenizer = "meta-llama/Meta-Llama-3-8B-Instruct" ), # noqa: E501
610
+ "Eagle3LlamaForCausalLM" : _HfExamplesInfo ("meta-llama/Llama-3 .1-8B-Instruct " , # noqa: E501
605
611
trust_remote_code = True ,
606
- speculative_model = "yuhuili/EAGLE3-LLaMA3.1-Instruct-8B" ,
607
- tokenizer = "meta-llama/Llama-3.1-8B-Instruct" ),
608
- "LlamaForCausalLMEagle3" : _HfExamplesInfo ("AngelSlim/Qwen3-8B_eagle3" , # noqa: E501
612
+ speculative_model = "yuhuili/EAGLE3-LLaMA3.1-Instruct-8B" , # noqa: E501
613
+ tokenizer = "meta-llama/Llama-3.1-8B-Instruct" ,
614
+ use_original_num_layers = True ,
615
+ max_model_len = 10240 ),
616
+ "LlamaForCausalLMEagle3" : _HfExamplesInfo ("Qwen/Qwen3-8B" , # noqa: E501
609
617
trust_remote_code = True ,
610
618
speculative_model = "AngelSlim/Qwen3-8B_eagle3" , # noqa: E501
611
- tokenizer = "Qwen/Qwen3-8B" ),
619
+ tokenizer = "Qwen/Qwen3-8B" ,
620
+ use_original_num_layers = True ),
612
621
"EagleLlama4ForCausalLM" : _HfExamplesInfo (
613
622
"morgendave/EAGLE-Llama-4-Scout-17B-16E-Instruct" ,
614
623
trust_remote_code = True ,
0 commit comments