mxlpy 0.25.0__py3-none-any.whl → 0.26.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mxlpy/__init__.py +4 -4
- mxlpy/fit.py +1414 -0
- mxlpy/fuzzy.py +139 -0
- mxlpy/identify.py +5 -5
- mxlpy/integrators/int_scipy.py +4 -3
- mxlpy/meta/codegen_latex.py +1 -0
- mxlpy/meta/source_tools.py +1 -1
- mxlpy/model.py +41 -24
- mxlpy/nn/__init__.py +5 -0
- mxlpy/nn/_equinox.py +293 -0
- mxlpy/nn/_torch.py +59 -2
- mxlpy/npe/__init__.py +5 -0
- mxlpy/npe/_equinox.py +344 -0
- mxlpy/npe/_torch.py +6 -22
- mxlpy/parallel.py +73 -4
- mxlpy/surrogates/__init__.py +5 -0
- mxlpy/surrogates/_equinox.py +195 -0
- mxlpy/surrogates/_torch.py +5 -20
- mxlpy/symbolic/symbolic_model.py +30 -3
- mxlpy/types.py +1 -0
- {mxlpy-0.25.0.dist-info → mxlpy-0.26.0.dist-info}/METADATA +4 -1
- {mxlpy-0.25.0.dist-info → mxlpy-0.26.0.dist-info}/RECORD +24 -23
- mxlpy/fit/__init__.py +0 -9
- mxlpy/fit/common.py +0 -298
- mxlpy/fit/global_.py +0 -534
- mxlpy/fit/local_.py +0 -591
- {mxlpy-0.25.0.dist-info → mxlpy-0.26.0.dist-info}/WHEEL +0 -0
- {mxlpy-0.25.0.dist-info → mxlpy-0.26.0.dist-info}/licenses/LICENSE +0 -0
mxlpy/__init__.py
CHANGED
@@ -45,7 +45,9 @@ from . import (
|
|
45
45
|
compare,
|
46
46
|
distributions,
|
47
47
|
experimental,
|
48
|
+
fit,
|
48
49
|
fns,
|
50
|
+
fuzzy,
|
49
51
|
mc,
|
50
52
|
mca,
|
51
53
|
plot,
|
@@ -54,8 +56,6 @@ from . import (
|
|
54
56
|
scan,
|
55
57
|
units,
|
56
58
|
)
|
57
|
-
from .fit import global_ as fit_global
|
58
|
-
from .fit import local_ as fit_local
|
59
59
|
from .integrators import DefaultIntegrator, Diffrax, Scipy
|
60
60
|
from .label_map import LabelMapper
|
61
61
|
from .linear_label_map import LinearLabelMapper
|
@@ -107,9 +107,9 @@ __all__ = [
|
|
107
107
|
"compare",
|
108
108
|
"distributions",
|
109
109
|
"experimental",
|
110
|
-
"
|
111
|
-
"fit_local",
|
110
|
+
"fit",
|
112
111
|
"fns",
|
112
|
+
"fuzzy",
|
113
113
|
"make_protocol",
|
114
114
|
"mc",
|
115
115
|
"mca",
|