Update README with token match rate on text backbone#52
Open
sdeeptan-aws wants to merge 1 commit intoaws-neuron:mainfrom
Open
Update README with token match rate on text backbone#52sdeeptan-aws wants to merge 1 commit intoaws-neuron:mainfrom
sdeeptan-aws wants to merge 1 commit intoaws-neuron:mainfrom
Conversation
aws-yishanm
approved these changes
Feb 20, 2026
aws-yishanm
left a comment
There was a problem hiding this comment.
Approved because Readme and test were present.
petesraj-aws
approved these changes
Feb 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Updated Qwen2.5-VL-32B-Instruct contrib model README with 100% token match accuracy on text backbone. Qwen2.5-VL is a vision-language model with 64 decoder layers. Two key validation findings: (1)
AutoModelForCausalLMdoes not work for VLMs — must useQwen2ForCausalLMto load the HF reference, and (2) compiled model must use the full 64 layers, not a reduced test build. With the correct text backbone extraction and full layer count, the model achieves 100% token match.Model Information
Model Name: Qwen2.5-VL-32B-Instruct
Model Architecture: Multimodal vision-language model (Qwen2-based decoder-only transformer, 64 layers)
Purpose: Vision-language understanding and text generation / instruction following
Checklist
Required Components
test/integration/test_model.py)src/)Optional Components
Folder Structure
Testing
Model was compiled and tested with TP=2, batch_size=1, seq_len=128, bfloat16. Text backbone validated only — vision modalities not yet verified.
AutoModelForCausalLMfails for VLMs — must useQwen2ForCausalLMto load HF referenceTest Results:
Compatibility
Tested with:
Additional Information
AutoModelForVision2Seqor similar. UseQwen2ForCausalLMdirectly for the text backbone.num_hidden_layersin compiledconfig.jsonbefore validation.Related Issues
N/A
vLLM Integration
By submitting this PR, I confirm that: