文件最后提交记录最后更新时间
[Feature] qwen2.5omni support data balance on global batch Co-authored-by: huangdabiao<huangdabiao1@huawei.com> # message auto-generated for no-merge-commit merge: !1601 merge GBS_data_balance_1015_final into master [Feature] qwen2.5omni support data balance on global batch Created-by: huangdabiao Commit-by: huangdabiao Merged-by: ascend-robot Description: ## Motivation qwen2.5omni support data balance on global batch ## Modification qwen2.5omni support data balance on global batch ## Self-test (Optional) If modifications to this PR may cause/fix function/accuracy/performance DTSs/issues, a self-inspection record needs to be attached. ## BC-breaking (Optional) If there are compatibility issues, such as dependencies on cann/torch_npu versions, they need to be explained in the PR. ## Checklist **Before PR**: - [ ] The new code needs to comply with the Clean Code specification. - [ ] The PR content is self-checked, and the expression can be clear and the writing standardized **After PR**: - [ ] CLA has been signed and all committers have signed the CLA in this PR. - [ ] The ci-pipeline is passed, Code Check is passed. See merge request: Ascend/MindSpeed-MM!16017 个月前
[feature] qwen3vl support dynamic batching + vision encoder data balance Co-authored-by: huangdabiao<huangdabiao1@huawei.com> # message auto-generated for no-merge-commit merge: !2004 merge qwen3vl_dynamic_batching into master [feature] qwen3vl support dynamic batching + vision encoder data balance Created-by: huangdabiao Commit-by: huangdabiao Merged-by: ascend-robot Description: ## Motivation qwen3vl support dynamic batching + vision encoder data balance ## Modification qwen3vl support dynamic batching + vision encoder data balance ## Self-test (Optional) If modifications to this PR may cause/fix function/accuracy/performance DTSs/issues, a self-inspection record needs to be attached. ## BC-breaking (Optional) If there are compatibility issues, such as dependencies on cann/torch_npu versions, they need to be explained in the PR. ## Checklist **Before PR**: - [ ] The new code needs to comply with the Clean Code specification. - [ ] The PR content is self-checked, and the expression can be clear and the writing standardized **After PR**: - [ ] CLA has been signed and all committers have signed the CLA in this PR. - [ ] The ci-pipeline is passed, Code Check is passed. See merge request: Ascend/MindSpeed-MM!20044 个月前
style: pre-commit autofix cleancode (base check) Co-authored-by: liyingxuan<liyingxuan3@huawei.com> # message auto-generated for no-merge-commit merge: !2616 merge master into master style: pre-commit autofix cleancode (base check) Created-by: liyx616 Commit-by: liyingxuan Merged-by: ascend-robot Description: ## What this PR does / why we need it? Please describe the background and detailed changes of the PR. If it is a bugfix, please attach the related issue. ## Does this PR introduce any user-facing change? Please describe whether the PR will result in any user-facing usage changes. If there is related documentation, please specify its path. ## How was this patch tested? Please explain how to verify the correctness and effectiveness of this feature, as well as its usage constraints and limitations. See merge request: Ascend/MindSpeed-MM!261613 小时前
[BugFix] Fix the bug in GBS data balance where state_buffer lacks the key "non_balanced_data". Co-authored-by: huangdabiao<huangdabiao1@huawei.com> # message auto-generated for no-merge-commit merge: !2232 merge gbs_data_balance_bugfix_0302 into master [BugFix] Fix the bug in GBS data balance where state_buffer lacks the key "non_balanced_data". Created-by: huangdabiao Commit-by: huangdabiao Merged-by: ascend-robot Description: ## Motivation bug产生的原因: self.state_buffer[data_type]["non_balanced_data"]在batch中含有不可迭代对象时初始化为字典并存储不可迭代对象, 并在存储之后通过 for data_name in self.state_buffer[data_type]["non_balanced_data"]: batch.pop(data_name) 将不可迭代对象从batch中暂时删除,以避免后续均衡过程中产生数据不可拆分的bug。 但是在batch不含有不可迭代对象的情况下,self.state_buffer[data_type]["non_balanced_data"]未被初始化,造成self.state_buffer[data_type]找不到key"non_balanced_data"的bug 修复合理性: 本次pr添加判断条件,仅在存在key"non_balanced_data"的情况下调用self.state_buffer[data_type]["non_balanced_data"],规避找不到key的错误 ## Modification Please briefly describe what modification is made in this PR. ## Self-test (Optional) If modifications to this PR may cause/fix function/accuracy/performance DTSs/issues, a self-inspection record needs to be attached. ## BC-breaking (Optional) If there are compatibility issues, such as dependencies on cann/torch_npu versions, they need to be explained in the PR. ## Checklist **Before PR**: - [ ] The new code needs to comply with the Clean Code specification. - [ ] The PR content is self-checked, and the expression can be clear and the writing standardized **After PR**: - [ ] CLA has been signed and all committers have signed the CLA in this PR. - [ ] The ci-pipeline is passed, Code Check is passed. See merge request: Ascend/MindSpeed-MM!22322 个月前