fix: check all speaker diarization imports to prevent silent failures#2824
Conversation
Addresses the issue flagged in PR modelscope#2818 review where only ClusterBackend was checked but sv_chunk, postprocess and distribute_spk could also be None if imports fail, causing a cryptic TypeError later. This fix: - Initializes all 4 variables to None before the try block - Replaces bare except with except Exception as e + warning log - Checks all 4 variables together before usage with a clear ImportError Related: modelscope#2806, modelscope#2818
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request refines the error handling for speaker diarization module imports, preventing silent failures and providing more informative feedback to users when dependencies are not met. By initializing variables, logging specific import errors, and adding a runtime check, the system becomes more robust and user-friendly regarding optional functionalities. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request effectively addresses the issue of silent failures when speaker diarization dependencies are not met. By initializing the module variables to None, catching import exceptions with proper logging, and adding an explicit check at the usage site to raise a clear ImportError, the changes significantly improve the code's robustness and provide better diagnostics for users. The implementation is solid. I have one minor suggestion to improve code cleanliness by removing a redundant import.
funasr/auto/auto_model.py
Outdated
| except: | ||
| pass | ||
| except Exception as e: | ||
| import logging |
Removed unnecessary import of the logging module when speaker diarization modules fail to import.
Summary
PR #2818 correctly fixes the NameError for ClusterBackend but as flagged
in its Gemini code review, sv_chunk, postprocess and distribute_spk
could also be None if imports fail — causing a cryptic TypeError later.
Changes
except: passwithexcept Exception as e+ warning logRelated
Fixes #2806
Related to #2818