fix: mutable default arg and bool comparison#10297
fix: mutable default arg and bool comparison#10297LincolnBurrows2017 wants to merge 1 commit intohiyouga:mainfrom
Conversation
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 focuses on enhancing the robustness and readability of the Highlights
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. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request correctly refactors the compare_model function to address a mutable default argument and improve boolean comparisons, aligning with Python best practices. I've added one suggestion to further improve the test utility by adding descriptive messages to assertions, which will enhance debuggability.
| if any(key in name for key in diff_keys): | ||
| assert torch.allclose(state_dict_a[name], state_dict_b[name], rtol=1e-4, atol=1e-5) is False | ||
| assert not torch.allclose(state_dict_a[name], state_dict_b[name], rtol=1e-4, atol=1e-5) | ||
| else: | ||
| assert torch.allclose(state_dict_a[name], state_dict_b[name], rtol=1e-4, atol=1e-5) is True | ||
| assert torch.allclose(state_dict_a[name], state_dict_b[name], rtol=1e-4, atol=1e-5) |
There was a problem hiding this comment.
It's good practice to include a message with assert statements. This can be very helpful for debugging when a test fails, as it provides immediate context on what condition was not met. Consider adding descriptive messages to your assertions to improve debuggability.
| if any(key in name for key in diff_keys): | |
| assert torch.allclose(state_dict_a[name], state_dict_b[name], rtol=1e-4, atol=1e-5) is False | |
| assert not torch.allclose(state_dict_a[name], state_dict_b[name], rtol=1e-4, atol=1e-5) | |
| else: | |
| assert torch.allclose(state_dict_a[name], state_dict_b[name], rtol=1e-4, atol=1e-5) is True | |
| assert torch.allclose(state_dict_a[name], state_dict_b[name], rtol=1e-4, atol=1e-5) | |
| if any(key in name for key in diff_keys): | |
| assert not torch.allclose(state_dict_a[name], state_dict_b[name], rtol=1e-4, atol=1e-5), f"Tensors for key '{name}' should be different but are close." | |
| else: | |
| assert torch.allclose(state_dict_a[name], state_dict_b[name], rtol=1e-4, atol=1e-5), f"Tensors for key '{name}' should be close but are different." |
Fixed 3 issues: