Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • askarpza-main-patch-76094
  • main
  • optimization
  • polynomial_regression
  • v0.2.0
  • v0.3.0
  • v0.4.0
  • v0.4.1
  • v0.5.0
  • v0.6.0
  • v0.7.0
  • v0.7.1
  • v0.8.0
13 results

Target

Select target project
  • nottolme/gext
1 result
Select Git revision
  • askarpza-main-patch-76094
  • main
  • optimization
  • polynomial_regression
  • v0.2.0
  • v0.3.0
  • v0.4.0
  • v0.4.1
  • v0.5.0
  • v0.6.0
  • v0.7.0
  • v0.7.1
  • v0.8.0
13 results
Show changes

Commits on Source 2

......@@ -51,7 +51,7 @@ This is an up to date list of available keyword options:
- `store_overlap`: bool, default True. Store the overlaps for later usage in calling guess without passing the current overlap. It can be disabled for performance, but calling guess will require passing the overlap.
Some options can be piped to the fitting modules.
- `fitting_regularization`: float, default 0.0. Controls the regularization for both the "leastsquare" and "qtr" fitting schemes. In both the fitting schemes, an additional term of the form $\varepsilon^2 ||\alpha||^2$ is added to the error function, in this expression $\alpha$ is the vector of coefficients and $\varepsilon$ is the regularization.
- `fitting_regularization`: float, default 0.001. Controls the regularization for both the "leastsquare" and "qtr" fitting schemes. In both the fitting schemes, an additional term of the form $\varepsilon^2 ||\alpha||^2$ is added to the error function, in this expression $\alpha$ is the vector of coefficients and $\varepsilon$ is the regularization.
## Acknowledgments
......
......@@ -46,7 +46,7 @@ class LeastSquare(AbstractFitting):
"""Simple least square minimization fitting."""
supported_options = {
"regularization": 0.0,
"regularization": 1e-3,
}
def set_options(self, **kwargs):
......@@ -73,7 +73,7 @@ class QuasiTimeReversible(AbstractFitting):
"""Quasi time reversible fitting scheme."""
supported_options = {
"regularization": 0.0,
"regularization": 1e-3,
}
def set_options(self, **kwargs):
......
[bumpversion]
current_version = 0.8.0
current_version = 0.8.1
commit = True
tag = True
......
......@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="gext",
version="0.8.0",
version="0.8.1",
packages=find_packages(),
install_requires=["numpy", "scipy"],
extras_require={"tests": ["pytest"]},
......