pyeggp 1.0.1__tar.gz → 1.0.2__tar.gz
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.
- {pyeggp-1.0.1 → pyeggp-1.0.2}/PKG-INFO +1 -1
- {pyeggp-1.0.1 → pyeggp-1.0.2}/pyproject.toml +1 -1
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp/__init__.py +1 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp.egg-info/PKG-INFO +1 -1
- {pyeggp-1.0.1 → pyeggp-1.0.2}/test/test_pyeggp.py +1 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/LICENSE +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/README.md +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/setup.cfg +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/setup.py +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp/__main__.py +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp/_binding.pyi +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp/binding.i +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp/typing.py +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp.egg-info/SOURCES.txt +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp.egg-info/dependency_links.txt +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp.egg-info/entry_points.txt +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp.egg-info/requires.txt +0 -0
- {pyeggp-1.0.1 → pyeggp-1.0.2}/src/pyeggp.egg-info/top_level.txt +0 -0
@@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta"
|
|
12
12
|
|
13
13
|
[project]
|
14
14
|
name = "pyeggp"
|
15
|
-
version = "1.0.
|
15
|
+
version = "1.0.2"
|
16
16
|
authors = [{ name = "Fabricio Olivetti", email = "folivetti@users.noreply.github.com" }]
|
17
17
|
description = "Python Wheels for eggp algorithm."
|
18
18
|
readme = "README.md"
|
@@ -137,6 +137,7 @@ class PyEGGP(BaseEstimator, RegressorMixin):
|
|
137
137
|
best = self.results[self.results.id==ix].iloc[view]
|
138
138
|
t = np.array(list(map(float, best.theta.split(";"))))
|
139
139
|
return eval(best.Numpy)
|
140
|
+
|
140
141
|
def evaluate_model_view(self, x, ix, view):
|
141
142
|
if x.ndim == 1:
|
142
143
|
x = x.reshape(-1,1)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|