Releases: derb12/pybaselines
Releases · derb12/pybaselines
Release list
Release v0.4.0
Version 0.4.0 (2021-05-30)
This is a minor version with new features, bug fixes, and deprecations.
New Features
- Significantly reduced both the calculation time and memory usage of polynomial.loess.
For example, getting the baseline for a dataset with 20,000 points now takes ~12 seconds
and ~0.7 Gb of memory compared to ~55 seconds and ~3 Gb of memory in version 0.3. - Added a
conserve_memoryparameter to polynomial.loess that will recalculate the distance
kernels each iteration, which is slower than the default but uses very little memory. For
example, using loess withconserve_memoryset to True on a dataset with 20,000 points
takes ~18 seconds while using ~0 Gb of memory. - Allow more user inputs for optimizers.optimize_extended_range to allow specifying the range
oflam/poly_ordervalues to test and to have more control over the added lines and
Gaussians on the sides. - Added a constant called PERMC_SPEC (accessed from pybaselines.utils.PERMC_SPEC),
which is used by SciPy's sparse solver when using Whittaker-smoothing-based algorithms.
Changed the default value to "NATURAL", which reduced the computation time of all
Whittaker-smoothing-based algorithms by ~5-35% compared to other permc_spec options
on the tested system. - misc.interp_pts (formerly manual.linear_interp) now allows specifying any interpolation
method supported by scipy.interpolate.interp1d, allowing for methods such as spline
interpolation.
Bug Fixes
- Fixed poly_order calculation for optimizers.adaptive_minmax when poly_order was a
single item within a container. - Potential fix for namespace error with utils; accessing pybaselines.utils gave an
attribute error in very specific envinronments, so changed the import order in
pybaselines.init to potentially fix it. Updated the quick start example in case
the fix is not correct so that the example will still work. - Increased minimum NumPy version to 1.14 to use rcond=None with numpy.linalg.lstsq.
Other Changes
- polynomial.loess now allows inputting weights, specifying a
use_originalkeyword for
thresholding to match the modpoly and imodpoly functions, and specifying areturn_coef
keyword to allow returning the polynomial coefficients for each x-value to recreate
the fitted polynomial, to match all other polynomial functions. - Changed the default
smooth_half_windowvalue in window.noise_median, window.snip, and
morphological.mormol to None, rather than being fixed values. Each function sets its default
slightly different but still follows the behavior in previous versions, except for
window.noise_median as noted below. - Changed default
smooth_half_windowvalue for window.noise_median to match specified
half_windowvalue rather than 1. - Changed default
sigmavalue for window.noise_median to scale with the specified
smooth_half_window, rather than being a fixed value.
Deprecations/Breaking Changes
- Renamed pybaselines.manual to pybaselines.misc to allow for adding any future
miscellaneous algorithms that will not fit elsewhere. - Renamed the manual.linear_interp function to misc.interp_pts to reflect its more
general interpolation usage. - The parameter dictionary returned from Whittaker-smoothing-based functions
no longer includes 'roughness' and 'fidelity' values since the values were not used
elsewhere.
Release v0.3.0
Version 0.3.0 (2021-04-29)
This is a minor version with new features, bug fixes, deprecations,
and documentation improvements.
New Features
- Added the small-window moving average (swima) baseline to pybaselines.window,
which iteratively smooths the data with a moving average to eliminate peaks
and obtain the baseline. - Added the rolling_ball function to pybaselines.morphological, which applies
a minimum and then maximum moving window, and subsequently smooths the result,
giving a baseline that resembles rolling a ball across the data. Also allows
giving an array of half-window values to allow the ball to change size as it
moves across the data. - Added the adaptive_minmax algorithm to pybaselines.optimizers, which uses the
modpoly or imodpoly functions and performs polynomial fits with two different
orders and two different weighting schemes and then uses the maximum values of
all the baselines. - Added the Peaked Signal's Asymmetric Least Squares Algorithm (psalsa)
function to pybaselines.whittaker, which uses exponentially decaying weighting
to better fit noisy data. - The imodpoly and loess functions in pybaselines.polynomial now use
num_std
to specify the number of standard deviations to use when thresholding. - The pybaselines.polynomial.penalized_poly function now allows weights to be used.
Also made the default threshold value scale with the data better. - Added higher order filters for pybaselines.window.snip to allow for more
complicated baselines. Also allow inputting a sequence of ints for
max_half_windowto better fit asymmetric peaks.
Bug Fixes
- Fixed a bug that would not allow even morphological half windows,
since it is not needed for the half windows, only the full windows. - Fixed the thresholding for pybaselines.polynomial.imodpoly, which was incorrectly
not adding the standard deviation to the baseline when thresholding. - Fixed weighting for pybaselines.whittaker.airpls so that weights no longer
get values greater than 1. - Removed the append and prepend keywords for np.diff in the
pybaselines.morphological.mpls function, since the keywords
were not added until numpy version 1.16, which is higher than
the minimum stated version for pybaselines.
Other Changes
- Allow utils.pad_edges to work with a pad_length of 0 (no padding).
- Added a 'min_half_window' parameter for pybaselines.morphological.optimize_window
so that small window sizes can be skipped to speed up the calculation. - Changed the default method from 'aspls' to 'asls' for optimizers.optimize_extended_range.
Deprecations/Breaking Changes
- Removed the 'smooth' keyword argument for pybaselines.window.snip. Smoothing is
now performed if the given smooth half window is greater than 0. - pybaselines.polynomial.loess no longer has an
include_stdevkeyword argument.
Equivalent behavior can be obtained by settingnum_stdto 0.
Documentation/Examples
- Updated the documentation to include simple explanations for some techniques.
Release v0.2.0
Version 0.2.0 (2021-04-02)
New Features
- Added the morphological and mollified (mormol) function to pybaselines.morphological,
which uses a combination of morphology for baseline estimation and mollification for
smoothing. - Added the loess function to pybaselines.polynomial, which does local robust polynomial
fitting. Allows using symmetric or asymmetric weighting, or using thresholding, similar
to the modpoly and imodpoly functions. - Added the penalized_poly function to pybaselines.polynomial, which fits a polynomial baseline
using a non=quadratic cost function. The non=quadratic cost functions include
huber, truncated=quadratic, and indec, and can be either symmetric or asymmetric. - Added options for padding data when doing convolution or window=based
operations to reduce edge effects and give better results.
Bug Fixes
- Fixed the mollification kernel used for the morphological.iamor (now amormol) function.
- Fixed a miscalculation with the weighting for whittaker.aspls.
Other Changes
- Slightly sped up several functions in whittaker.py by precomputing terms.
- Added tests for all baseline algorithms
Deprecations/Breaking Changes
- Renamed morphology.iamor to morphology.amormol (averaging morphological and
mollified baseline) to make it more clear that mormol and amormol are similar methods. - Renamed penalized_least_squares.py to whittaker.py, to be more specific, since other
techniques also use penalized least squares for polynomial fitting.
Documentation/Examples
- Updated the example program to match the changes to pybaselines.
- Setup initial documentation.
Release v0.1.0
Version 0.1.0 (2021-03-22)
- Initial release to pypi.