PainlessInferenceAcceleration icon indicating copy to clipboard operation
PainlessInferenceAcceleration copied to clipboard

modeling_qwen attention not use multi branch position ids & attention_mask

Open snippetzero opened this issue 1 year ago • 1 comments

I reviewed the code of modeling_qwen.py, and I noticed that, within the lookahead process, the draft_ids matched from the TrieTree are such that the attention_mask and position ids associated with these draft_ids are not being utilized in the attention mechanism. This, I believe, might be an implementation error. Could you please point out where my understanding is incorrect?

snippetzero avatar Jun 05 '24 03:06 snippetzero

I believe there are issues with modeling_qwen.py. The content generated by Qwen differs significantly when using lookahead compared to when it is not used. With lookahead, the output text becomes much longer and exhibits incoherence. After fixing the attention mask issue you mentioned, the text became much more coherent, but there are still substantial differences in the content generated. I think there are still some unresolved problems in this code.

YunjiaXi avatar Jul 03 '24 07:07 YunjiaXi