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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyeggp
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Python Wheels for eggp algorithm.
5
5
  Author-email: Fabricio Olivetti <folivetti@users.noreply.github.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -12,7 +12,7 @@ build-backend = "setuptools.build_meta"
12
12
 
13
13
  [project]
14
14
  name = "pyeggp"
15
- version = "1.0.1"
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)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyeggp
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Python Wheels for eggp algorithm.
5
5
  Author-email: Fabricio Olivetti <folivetti@users.noreply.github.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -22,3 +22,4 @@ print(reg.score(X, y))
22
22
  reg.fit_mvsr([X,X],[y,y])
23
23
  print(reg.predict_mvsr(X,0))
24
24
  print(reg.predict_mvsr(X,1))
25
+ print(reg.results)
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes