Releases: hippke/wotan
Releases · hippke/wotan
v1.10
Added feature stdev_cut
to the penalized spline method. The new parameter takes a floating point value. Outliers larger than stdev_cut
are removed in each iteration. The threshold is calculated in standard deviations from the mean (after trend fitting). Older versions of wotan had this parameter hardcoded as PSPLINES_STDEV_CUT = 2
. Now it is user variable. If no value is given, it will fall back on the default.
v1.9
v1.7
v1.6
v1.5
Fixed a bug in pspline where outliers were only clipped in one direction. Thanks to @GijsMulders
v1.4
v1.2
FIXED:
- Bug in
cosine
which caused rounding errors innumpy.linalg.lstsq
CHANGED
- API of
transit_mask
to use the keywordtime
(instead oft
) - API of
flatten
to use the keywordmask
instead ofweights
, and avoid the requirement of inverting masks (see updated example, it is much simpler now)
ADDED
lowess
detrending now available in combination withtransit_mask
v1.1
v1.0.7
v1.0.6
Additional methods:
Fitting a model that is a sum of Gaussian bases:
ridge
Ridge regression (L2 loss, Tikhonov regularization)lasso
LASSO regression
(L1 loss, Least Absolute Shrinkage Selector Operator, Tibshirani (1996))elasticnet
Linear regression model trained with 50% L1 and 50% L2 norm regularization