-
Notifications
You must be signed in to change notification settings - Fork 1
Refactor fit_gmm to support weighted particle resampling #181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Updated the `fit_gmm` method in `flekspy/amrex/particle_data.py` to automatically detect a "weight" variable in the particle data. If present, the method now performs weighted resampling of the particles before fitting the Gaussian Mixture Model. This ensures that the GMM fit correctly reflects the weighted distribution of the particle population. This change also implicitly updates `extract_core_population` to respect particle weights, as it relies on `fit_gmm`. Added a regression test to verify the fix.
Summary of ChangesHello @henry2004y, 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 enhances the 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. 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
|
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #181 +/- ##
==========================================
+ Coverage 78.34% 78.79% +0.45%
==========================================
Files 31 32 +1
Lines 4341 4391 +50
==========================================
+ Hits 3401 3460 +59
+ Misses 940 931 -9 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request adds support for weighted particle resampling in fit_gmm, which is a great feature. The implementation is mostly correct, and the new regression test is well-designed.
I've identified a couple of areas for improvement:
- In
flekspy/amrex/particle_data.py, the resampling logic can be made more robust by applying it directly tordatabefore any transformations. This avoids potential bugs if a transform function alters the number of particles. I've also suggested adding a check for negative particle weights to prevent runtime errors. - In
tests/test_weighted_gmm.py, making the random data generation deterministic by using a fixed seed will make the test more reliable.
These changes should improve the robustness and reliability of the new functionality. Overall, this is a valuable addition.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Updated the
fit_gmmmethod inflekspy/amrex/particle_data.pyto automatically detect a "weight" variable in the particle data. If present, the method now performs weighted resampling of the particles before fitting the Gaussian Mixture Model. This ensures that the GMM fit correctly reflects the weighted distribution of the particle population.This change also implicitly updates
extract_core_populationto respect particle weights, as it relies onfit_gmm.Added a regression test to verify the fix.