-
Notifications
You must be signed in to change notification settings - Fork 36
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
pymultifit
presubmission
#221
Comments
Thanks for submitting your package! It's a great tool, but at this point, I wonder if it is within the scope of pyOpenSci. You have written that
You have stated that your package has better usability and performance; I've checked your package's documentation (https://pymultifit.readthedocs.io/index.html#), and you don't provide examples of how to use your package - thus, I wasn't able to compare functionalities. Could you prepare some comparisons of overlapping functionalities as the code examples? It could be a part of your |
Thank you for reaching out. I apologize for my oversight of incomplete documentation before presumission. Currently the documentation of the package is in development in the |
In this situation, please let me know when the docs build is ready! |
I will, and once again, thank you for your time and consideration @SimonMolinsky |
Submitting Author: Syed Ali Mohsin Bukhari (@syedalimohsinbukhari)
Package Name:
pymultifit
One-Line Description of Package: A python library for fitting data with multiple models.
Repository Link (if existing): https://github.com/syedalimohsinbukhari/pyMultiFit
EiC: Szymon Moliński (@SimonMolinsky)
Code of Conduct & Commitment to Maintain Package
Description
pymultifit
is built primarily to solve one problem, to fit multiple models (and mixture models) to a given data. Be it multiple Gaussians, multiple Laplacians, or a mixture of such models, this package aims to deal with multi-model data fitting. The package also provides easy-to-useBaseDistribution
andBaseFitter
classes for respective user-defined functions.Community Partnerships
We partner with communities to support peer review with an additional layer of
checks that satisfy community requirements. If your package fits into an
existing community please check below:
Scope
Please indicate which category or categories this package falls under:
Domain Specific
This library falls under the "data processing/munging" category as it takes the given data and tries to fit the given model(s) to the data via minimization processes. It also allows the user to extract the parameters for further analysis of the data fitters via helpful functions. Visualization is done internally for the fitted model with options of separable views on total data fitting and individual fits via the
fitter
module. On the other hand, thedistribution
module providespdf
,cdf
, andstats
functionality for any user-defined or pre-built distribution selected.Researchers, data scientists, and statisticians who work with datasets requiring multi-model fitting for robust analysis and modeling.
Apart from
scipy
,lmfit
, andscikit-learn
the general purpose scientific packages, there exists PyAutoFit, a Python-based probabilistic programming language built on Bayesian inference. Another notable library is Mixture-Models, which specializes in advanced optimization techniques for fitting various families of mixture models, including Gaussian mixture models and their variants. Both libraries are powerful tools for specific use cases, and I recently came to know about them during my search of existing options.While these libraries offer robust solutions for hierarchical modeling (
PyAutoFit
) or a diverse array of pre-defined mixture models (Mixture-Models
),pymultifit
distinguishes itself through its simplicity of use and its focus on a different target audience and intended use case. Specifically,pymultifit
is designed to provide a lightweight and user-friendly framework for fitting multi-model data, including custom mixture models (for example,gaussian
+laplace
+line
).pymultifit
also provides easy-to-use base classes that can be modified for any distribution/fitter purposes.P.S. Have feedback/comments about our review process? Leave a comment here
The text was updated successfully, but these errors were encountered: