You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that's because the new base class doesn't use the scipy find_peaks_cwt function to identify peaks. Looks like it needs peaks to be specified. I think we'll need to change that in the base class to get it to estimate the peak locations. Maybe run it by @Zsailer?
I think that's because the new base class doesn't use the scipy find_peaks_cwt function to identify peaks. Looks like it needs peaks to be specified.
This is true for @jharman25's first point. Currently, you have to specify the number of peaks or it will throw an error. We need to reimplement find_peaks_cwt. This should be easy to do.
@jharman25's second point is a little more subtle. The lorentzian model may need more precise guess parameters for the width and amplitudes of the peaks. I think we should include logic somewhere that computes smarter guesses for each parameter. Right now, it sets all parameters equal to 1.
Not sure if this is an ambigauss problem or just a general fitting problem, but wanted to note it here.
The text was updated successfully, but these errors were encountered: